﻿:root {
  color-scheme: light;
  --ink: #102A43;
  --muted: #45647C;
  --bg: #F7FBFD;
  --bg-soft: #EAF6FC;
  --green: #1E88C8;
  --green-bright: #1E88C8;
  --wine: #1E88C8;
  --wine-bright: #0B6FAE;
  --line: rgba(16, 42, 67, 0.14);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 32px 90px rgba(16, 42, 67, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(30, 136, 200, 0.32), transparent 30rem),
    radial-gradient(circle at 10% 0%, rgba(30, 136, 200, 0.16), transparent 28rem),
    linear-gradient(180deg, #06110d 0%, #081712 48%, #0f1010 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.08) 1px, transparent 1px),
    #06110d;
  background-size: 54px 54px;
  transition: opacity 520ms ease, visibility 520ms ease, transform 520ms ease;
}

.boot-loader.is-hidden {
  transform: none;
}

.boot-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
}

.boot-shell {
  position: relative;
  display: grid;
  place-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: min(34rem, calc(100vw - 2rem));
  padding: clamp(1.2rem, 4vw, 2.2rem);
  border: 1px solid rgba(30, 136, 200, 0.16);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 30px 100px rgba(16, 42, 67, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.15);
  overflow: hidden;
}

.boot-percent {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #102A43;
  font-weight: 1000;
  line-height: 0.85;
  letter-spacing: 0;
}

.boot-percent span {
  min-width: 3ch;
  text-align: right;
  font-size: clamp(4.2rem, 16vw, 9rem);
}

.boot-percent em {
  font-style: normal;
  color: var(--wine);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  transform: translateY(-0.35em);
}

.boot-bar {
  position: relative;
  width: min(23rem, 74vw);
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(30, 136, 200, 0.10);
  overflow: hidden;
}

.boot-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #102A43, var(--wine-bright));
  transform-origin: left;
  animation: bootBar 0.95s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.boot-sketch {
  width: min(25rem, 78vw);
  height: auto;
  overflow: visible;
}

.boot-sketch path {
  fill: none;
  stroke: var(--wine);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 0;
  opacity: 1;
}

.boot-sketch path:nth-child(4) {
  stroke: var(--wine-bright);
}

.cursor-spotlight {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 24rem;
  height: 24rem;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(var(--mx, 50vw) - 12rem), calc(var(--my, 50vh) - 12rem), 0);
  background: radial-gradient(circle, rgba(30, 136, 200, 0.13), rgba(11, 111, 174, 0.06) 35%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity 200ms ease;
}

body.has-pointer .cursor-spotlight {
  opacity: 1;
}

.ambient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.cursor-pixel-canvas {
  position: fixed;
  inset: 0;
  z-index: 90 !important;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.has-pointer .cursor-pixel-canvas {
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1rem, 3vw, 2.5rem);
  mix-blend-mode: normal;
  pointer-events: none;
}

.brand,
.nav-pills {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(6, 17, 13, 0.66);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  animation: headerDrop 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  pointer-events: auto;
}

.brand {
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.42rem 1rem 0.42rem 0.45rem;
  border-radius: 999px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--wine-bright));
  color: #06110d;
  font-size: 0.78rem;
  letter-spacing: 0;
  box-shadow: 0 0 0 0 rgba(30, 136, 200, 0.42);
  animation: logoPulse 2.6s ease-in-out infinite;
}

.logo-mark {
  overflow: hidden;
  background: #06110d;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.brand-name {
  letter-spacing: 0;
}

.nav-pills {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.25rem;
  min-height: 3rem;
  padding: 0.35rem;
  border-radius: 999px;
}

.nav-pills a {
  display: grid;
  place-items: center;
  min-height: 2.25rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-pills a:hover {
  background: rgba(238, 247, 239, 0.09);
  color: var(--ink);
}

.section-band,
.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  padding: 7.4rem 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8rem -12vw auto -12vw;
  height: 24rem;
  background:
    linear-gradient(90deg, transparent, rgba(30, 136, 200, 0.11), transparent),
    repeating-linear-gradient(90deg, transparent 0 5.2rem, rgba(30, 136, 200, 0.12) 5.2rem 5.25rem);
  transform: skewY(-7deg);
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  animation: heroSweep 7s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(3.8rem, 8vw, 6.9rem);
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.glitch::before {
  color: var(--green-bright);
  transform: translate(0.04em, 0);
  clip-path: inset(0 0 58% 0);
}

.glitch::after {
  color: var(--wine-bright);
  transform: translate(-0.035em, 0);
  clip-path: inset(45% 0 0 0);
}

.glitch:hover::before,
.glitch:hover::after,
.glitch.is-glitching::before,
.glitch.is-glitching::after {
  opacity: 0.58;
  animation: glitchShift 560ms steps(2, end);
}

.hero-text {
  max-width: 42rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--wine), var(--green));
  border-color: rgba(238, 247, 239, 0.24);
}

.btn.ghost {
  background: rgba(238, 247, 239, 0.06);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 247, 239, 0.42);
}

.hero-stage {
  position: relative;
  min-height: 32rem;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.stage-grid {
  position: absolute;
  inset: 12% 2% 0 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotateX(68deg) rotateZ(-18deg) translateZ(-80px);
  opacity: 0.24;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 70%);
  animation: gridDrift 8s linear infinite;
}

.orbit-ring {
  position: absolute;
  inset: 8% 0 auto 5%;
  width: min(32rem, 86vw);
  aspect-ratio: 1;
  border: 1px solid rgba(30, 136, 200, 0.2);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-18deg);
  animation: orbit 16s linear infinite;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.38rem;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 28px rgba(30, 136, 200, 0.78);
}

.ring-two {
  inset: 15% auto auto 22%;
  width: min(24rem, 68vw);
  border-color: rgba(11, 111, 174, 0.26);
  animation-duration: 23s;
  animation-direction: reverse;
}

.ring-two::before {
  background: var(--wine-bright);
  box-shadow: 0 0 28px rgba(11, 111, 174, 0.72);
}

.ring-three {
  inset: 5% auto auto 13%;
  width: min(18rem, 58vw);
  border-color: rgba(238, 247, 239, 0.14);
  animation-duration: 11s;
}

.signal-beam {
  position: absolute;
  height: 2px;
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  filter: drop-shadow(0 0 12px rgba(30, 136, 200, 0.8));
  opacity: 0;
  animation: beam 3.6s ease-in-out infinite;
}

.beam-a {
  left: 17%;
  top: 38%;
  width: 62%;
  transform: rotate(18deg);
}

.beam-b {
  left: 28%;
  top: 71%;
  width: 48%;
  transform: rotate(-27deg);
  animation-delay: 1.1s;
}

.device {
  position: absolute;
  border: 1px solid rgba(238, 247, 239, 0.2);
  background: linear-gradient(145deg, rgba(238, 247, 239, 0.18), rgba(238, 247, 239, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.device::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(30, 136, 200, 0.28), rgba(11, 111, 174, 0.22), transparent);
  opacity: 0.55;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.laptop {
  left: 9%;
  top: 30%;
  width: min(27rem, 76vw);
  height: 17rem;
  border-radius: 1.2rem;
  transform: rotate(-5deg);
  animation: floatMain 6s ease-in-out infinite;
}

.screen {
  position: absolute;
  inset: 1.1rem 1.1rem 3.3rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 72% 30%, rgba(11, 111, 174, 0.34), transparent 9rem),
    #07110d;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.13), transparent 58%);
  transform: translateX(-80%);
  animation: scan 4.2s ease-in-out infinite;
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 8px, rgba(238, 247, 239, 0.035) 8px 9px);
  animation: screenNoise 900ms steps(2, end) infinite;
}

.terminal-line {
  position: absolute;
  left: 1.1rem;
  top: 1.3rem;
  width: 48%;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--green-bright);
  box-shadow: 0 0 28px rgba(30, 136, 200, 0.55);
}

.terminal-line.short {
  top: 2.5rem;
  width: 28%;
  background: var(--wine-bright);
}

.pulse-dot {
  position: absolute;
  right: 1.3rem;
  bottom: 1.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(30, 136, 200, 0.6);
  animation: pulse 1.8s infinite;
}

.diagnostic-feed {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.38rem;
  color: rgba(238, 247, 239, 0.78);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.diagnostic-feed span {
  width: max-content;
  max-width: 100%;
  padding: 0.18rem 0.35rem;
  border: 1px solid rgba(30, 136, 200, 0.16);
  border-radius: 0.25rem;
  background: rgba(6, 17, 13, 0.56);
  animation: feedRise 3.5s ease-in-out infinite;
}

.diagnostic-feed span:nth-child(2) {
  animation-delay: 0.55s;
}

.diagnostic-feed span:nth-child(3) {
  animation-delay: 1.1s;
}

.keyboard {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 1.15rem;
  height: 1rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(238, 247, 239, 0.42) 0 10px, transparent 10px 17px);
  opacity: 0.45;
}

.phone {
  right: 4%;
  top: 19%;
  width: 7.4rem;
  height: 14rem;
  border-radius: 1.45rem;
  transform: rotate(12deg);
  animation: floatSide 5.2s ease-in-out infinite;
}

.phone span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(238, 247, 239, 0.46);
}

.phone span:nth-child(1) { top: 3rem; }
.phone span:nth-child(2) { top: 4.2rem; right: 2.7rem; }
.phone span:nth-child(3) { bottom: 2rem; background: var(--wine-bright); }

.router {
  right: 12%;
  bottom: 12%;
  width: 13rem;
  height: 6rem;
  border-radius: 1rem;
  transform: rotate(-7deg);
  animation: floatRouter 5.8s ease-in-out infinite;
}

.router::before,
.router::after {
  content: "";
  position: absolute;
  top: -3.1rem;
  width: 0.35rem;
  height: 3.8rem;
  border-radius: 999px;
  background: rgba(238, 247, 239, 0.54);
  transform-origin: bottom;
}

.router::before {
  left: 2rem;
  transform: rotate(-18deg);
}

.router::after {
  right: 2rem;
  transform: rotate(18deg);
}

.router i {
  position: absolute;
  bottom: 1.6rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green-bright);
}

.router i:nth-child(1) { left: 1.7rem; }
.router i:nth-child(2) { left: 3.2rem; animation: blink 1.1s infinite; }
.router i:nth-child(3) { left: 4.7rem; animation: blink 1.6s infinite; }

.status-card {
  position: absolute;
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(6, 17, 13, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-card strong {
  font-size: 1.35rem;
}

.status-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.card-a {
  left: 0;
  bottom: 19%;
}

.card-b {
  right: 2%;
  top: 52%;
}

.card-c {
  right: 30%;
  top: 8%;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.24), rgba(30, 136, 200, 0.13), rgba(30, 136, 200, 0.24)),
    rgba(238, 247, 239, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), inset 0 -1px rgba(255, 255, 255, 0.05);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 1.15rem 1.5rem;
  color: rgba(238, 247, 239, 0.72);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(30, 136, 200, 0.28);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem 0 0;
}

.impact-item {
  position: relative;
  overflow: hidden;
  min-height: 8.2rem;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(30, 136, 200, 0.09), rgba(11, 111, 174, 0.055)),
    rgba(238, 247, 239, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.impact-item::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(238, 247, 239, 0.14), transparent);
  transform: skewX(-18deg);
  animation: impactSweep 5.4s ease-in-out infinite;
}

.impact-item:nth-child(2)::before {
  animation-delay: 0.8s;
}

.impact-item:nth-child(3)::before {
  animation-delay: 1.6s;
}

.impact-item strong {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.impact-item span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 48rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(238, 247, 239, 0.055);
  isolation: isolate;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 136, 200, 0.44);
  background: rgba(30, 136, 200, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 34px rgba(30, 136, 200, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(30, 136, 200, 0.16), transparent 68%);
  transform: translateY(40%);
  transition: transform 320ms ease;
  z-index: -1;
}

.service-card:hover::before {
  transform: translateY(0);
}

.card-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.13), transparent 58%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.service-card:hover .card-sheen {
  transform: translateX(120%);
}

.icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: rgba(30, 136, 200, 0.8);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(11, 111, 174, 0.24);
}

.service-card h3 {
  margin: auto 0 0;
  font-size: 1.35rem;
}

.service-card p,
.contact-copy p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.15;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: 0.85rem;
}

.process-panel,
.quote-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(238, 247, 239, 0.055);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.process-panel::before,
.quote-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(30, 136, 200, 0.09), transparent);
  transform: translateX(-120%);
  animation: panelSweep 6.5s ease-in-out infinite;
  pointer-events: none;
}

.process-panel {
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.timeline div {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.timeline div:hover {
  transform: translateX(0.35rem);
  border-color: rgba(11, 111, 174, 0.34);
  background: rgba(11, 111, 174, 0.055);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green);
  font-weight: 950;
}

.quote-panel {
  display: grid;
  place-items: center;
  min-height: 26rem;
  padding: 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(11, 111, 174, 0.22), transparent 15rem),
    rgba(238, 247, 239, 0.055);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 950;
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 7rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(6, 17, 13, 0.76);
  color: var(--ink);
  outline: none;
  padding: 0.95rem 1rem;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 136, 200, 0.65);
  box-shadow: 0 0 0 4px rgba(30, 136, 200, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  filter: blur(4px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes bootBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes bootSketch {
  0% {
    opacity: 0;
    stroke-dashoffset: 760;
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoPulse {
  55% { box-shadow: 0 0 0 10px rgba(30, 136, 200, 0); }
}

@keyframes heroSweep {
  0%, 100% { transform: translateX(-7%) skewY(-7deg); opacity: 0.32; }
  50% { transform: translateX(7%) skewY(-7deg); opacity: 0.68; }
}

@keyframes glitchShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(0.045em, -0.015em); }
  40% { transform: translate(-0.03em, 0.015em); }
  65% { transform: translate(0.02em, 0.02em); }
  100% { transform: translate(0, 0); }
}

@keyframes gridDrift {
  to { background-position: 34px 34px; }
}

@keyframes beam {
  0%, 100% { opacity: 0; transform: scaleX(0) rotate(var(--beam-rotate, 18deg)); }
  18%, 56% { opacity: 0.8; }
  72% { opacity: 0; transform: scaleX(1) rotate(var(--beam-rotate, 18deg)); }
}

.beam-a { --beam-rotate: 18deg; }
.beam-b { --beam-rotate: -27deg; }

@keyframes screenNoise {
  50% { opacity: 0.55; transform: translateY(1px); }
}

@keyframes feedRise {
  0%, 100% { opacity: 0.42; transform: translateY(0); }
  45% { opacity: 1; transform: translateY(-3px); }
}

@keyframes panelSweep {
  0%, 45% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@keyframes impactSweep {
  0%, 45% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  58% { opacity: 1; }
  82%, 100% { transform: translateX(360%) skewX(-18deg); opacity: 0; }
}

@keyframes orbit {
  to { transform: rotateX(66deg) rotateZ(342deg); }
}

@keyframes floatMain {
  0%, 100% { transform: rotate(-5deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-2deg) translate3d(0, -16px, 30px); }
}

@keyframes floatSide {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-18px); }
}

@keyframes floatRouter {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-11deg) translateY(13px); }
}

@keyframes scan {
  0%, 38% { transform: translateX(-85%); }
  70%, 100% { transform: translateX(95%); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 18px rgba(30, 136, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 136, 200, 0); }
}

@keyframes blink {
  50% { opacity: 0.25; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .cursor-spotlight {
    display: none;
  }

  .site-header {
    position: absolute;
  }

  .brand-name {
    display: none;
  }

  .nav-pills a {
    padding: 0 0.72rem;
    font-size: 0.78rem;
  }

  .hero,
  .process,
  .contact,
  .prices {
    grid-template-columns: 1fr;
  }

  .hero {
    display: block;
    min-height: 92svh;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(3.55rem, 18vw, 5.7rem);
  }

  .hero-stage {
    position: absolute;
    z-index: 0;
    right: -4rem;
    bottom: -1rem;
    width: min(36rem, 118vw);
    min-height: 21rem;
    opacity: 0.52;
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .prices .section-heading {
    position: static;
  }

  .prices {
    width: min(100% - 2rem, 1440px);
    padding-left: 0;
    padding-right: 0;
  }
}

/* Premium glass and readability pass. */
.brand,
.nav-pills,
.status-card,
.contact-form,
.process-panel,
.quote-panel,
.service-card,
.impact-item,
.motion-panel,
.floating-label,
.wide-lane span,
.wide-device,
.support-pack {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(234, 246, 252, 0.54));
  border-color: rgba(30, 136, 200, 0.14);
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(30, 136, 200, 0.06);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand,
.nav-pills,
.status-card,
.floating-label {
  box-shadow:
    0 16px 48px rgba(16, 42, 67, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-card::before,
.impact-item::after,
.motion-panel::before,
.service-card::after,
.contact-form::after,
.process-panel::after,
.quote-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.8), transparent 18rem);
  opacity: 0.42;
}

.impact-item,
.motion-panel,
.service-card,
.contact-form,
.process-panel,
.quote-panel {
  position: relative;
}

.service-card {
  border-radius: 1rem;
  min-height: 18rem;
}

.impact-item,
.motion-panel {
  border-radius: 1.05rem;
}

.contact-form,
.process-panel,
.quote-panel {
  border-radius: 1.1rem;
}

.wide-lane {
  left: clamp(1rem, 4vw, 4rem);
  right: auto;
  transform: rotate(-4deg) translateX(calc(var(--scroll) * -24px));
}

.lane-two {
  transform: rotate(3deg) translateX(calc(var(--scroll) * 32px - 2vw));
}

.wide-lane span {
  min-height: clamp(4rem, 6vw, 5.8rem);
  padding: 0 clamp(1.3rem, 3vw, 3.2rem);
  font-size: clamp(1.45rem, 3vw, 3.45rem);
}

.wide-laptop {
  z-index: 3;
  right: 6vw;
  top: 37%;
  opacity: 0.88;
}

.wide-router {
  z-index: 4;
  left: 7vw;
  bottom: 13%;
}

.wide-word {
  z-index: 0;
}

.wide-lane,
.wide-device {
  z-index: 2;
}

.showcase-sticky {
  overflow: visible;
}

.showcase-copy {
  z-index: 4;
}

.showcase-visual {
  z-index: 1;
}

.support-pack {
  right: 4vw;
  top: calc(20% + var(--showcase-progress, 0) * 6%);
  opacity: 0.82;
}

.showcase-panels {
  position: relative;
  z-index: 5;
  margin-left: 0;
  width: 100%;
  padding-left: clamp(1rem, 3.4vw, 4rem);
  padding-right: clamp(1rem, 3.4vw, 4rem);
  transform: translateX(calc(var(--showcase-progress, 0) * -1.4vw));
}

.motion-panel {
  flex: 0 0 clamp(18rem, 29vw, 28rem);
  min-height: 15rem;
  overflow: hidden;
}

.motion-panel h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.motion-panel p {
  font-size: 1rem;
}

.motion-panel:first-child {
  margin-left: 0;
}

.floating-label {
  border-radius: 0.7rem;
}

.label-a {
  left: auto;
  right: 26%;
  top: 9%;
}

.label-a::before,
.label-a::after {
  content: "";
  position: absolute;
  top: -2.6rem;
  width: 1px;
  height: 2.6rem;
  background: rgba(30, 136, 200, 0.24);
}

.label-a::before {
  left: 24%;
}

.label-a::after {
  right: 24%;
}

.label-b {
  right: 3%;
  bottom: 1%;
}

.label-c {
  left: 43%;
  bottom: 5%;
}

.card-a {
  left: 4%;
  bottom: 12%;
}

.card-b {
  right: 4%;
  top: 48%;
}

.card-c {
  right: 25%;
  top: 22%;
}

.hero-stage {
  z-index: 2;
}

.laptop {
  z-index: 2;
}

.phone,
.router,
.status-card,
.floating-label {
  z-index: 3;
}

@media (max-width: 900px) {
  .wide-lane {
    left: 1rem;
    transform: rotate(-4deg) translateX(calc(var(--scroll) * -12px));
  }

  .lane-two {
    transform: rotate(3deg) translateX(calc(var(--scroll) * 14px - 8vw));
  }

  .wide-lane span {
    font-size: 1.35rem;
  }

  .showcase-sticky {
    overflow: hidden;
  }

  .showcase-panels {
    padding-right: 0;
    padding-left: 0;
  }

  .motion-panel:first-child {
    margin-left: 0;
  }

  .motion-panel {
    border-radius: 1rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-pills {
    max-width: calc(100vw - 5.4rem);
    overflow-x: auto;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .hero-stage {
    right: -5.5rem;
    bottom: -0.5rem;
    width: 34rem;
    min-height: 18rem;
  }

  .laptop {
    left: 0;
    width: 19rem;
    height: 13rem;
  }

  .phone {
    width: 5.4rem;
    height: 10.6rem;
  }

  .router {
    width: 9.6rem;
    height: 5rem;
  }

  .status-card {
    display: none;
  }

  .diagnostic-feed {
    font-size: 0.56rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Light editorial redesign inspired by bold product-scroll websites. */
:root {
  color-scheme: light;
  --ink: #102A43;
  --muted: #45647C;
  --bg: #F7FBFD;
  --bg-soft: #EAF6FC;
  --green: #1E88C8;
  --green-bright: #1E88C8;
  --wine: #1E88C8;
  --wine-bright: #0B6FAE;
  --line: rgba(16, 42, 67, 0.14);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 32px 90px rgba(16, 42, 67, 0.13);
  --scroll: 0;
}

body {
  background:
    linear-gradient(120deg, rgba(30, 136, 200, 0.08), transparent 25rem),
    radial-gradient(circle at 85% 8%, rgba(11, 111, 174, 0.13), transparent 26rem),
    linear-gradient(180deg, #F7FBFD 0%, #fff 45%, #F7FBFD 100%);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  left: 0;
  top: 0;
  width: calc(var(--scroll) * 100%);
  height: 4px;
  background: linear-gradient(90deg, #102A43, var(--wine-bright));
  box-shadow: 0 0 22px rgba(30, 136, 200, 0.32);
}

.boot-loader {
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.08) 1px, transparent 1px),
    #F7FBFD;
}

.boot-shell {
  border-color: rgba(30, 136, 200, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 80px rgba(30, 136, 200, 0.12), inset 0 0 34px rgba(30, 136, 200, 0.05);
}

.boot-shell span {
  color: var(--wine);
}

.boot-shell i {
  background: rgba(16, 42, 67, 0.08);
}

.boot-shell i::before {
  background: linear-gradient(90deg, #102A43, var(--wine-bright));
}

.cursor-spotlight {
  background: radial-gradient(circle, rgba(30, 136, 200, 0.12), rgba(11, 111, 174, 0.05) 38%, transparent 68%);
  mix-blend-mode: multiply;
}

.ambient-canvas {
  opacity: 0.38;
}

.brand,
.nav-pills,
.status-card,
.contact-form,
.process-panel,
.quote-panel,
.service-card,
.impact-item,
.motion-panel {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(16, 42, 67, 0.11);
}

.brand,
.nav-pills {
  color: var(--ink);
}

.brand-mark {
  background: linear-gradient(135deg, #fff, #D7EEF9);
  color: var(--wine);
  box-shadow: 0 0 0 0 rgba(30, 136, 200, 0.26);
}

.nav-pills a:hover {
  background: rgba(30, 136, 200, 0.08);
}

.hero {
  min-height: 98svh;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent, rgba(30, 136, 200, 0.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 5.2rem, rgba(30, 136, 200, 0.07) 5.2rem 5.25rem);
  transform: translateX(calc(var(--scroll) * -120px)) skewY(-7deg);
  opacity: 0.5;
}

.eyebrow,
.glitch::before,
.floating-label {
  color: var(--wine);
}

.glitch::after {
  color: var(--wine-bright);
}

.liquid-wave {
  position: absolute;
  z-index: -1;
  left: -10%;
  right: -10%;
  height: 34%;
  background: #fff;
  opacity: 0.96;
  filter: drop-shadow(0 22px 34px rgba(30, 136, 200, 0.1));
  animation: waveFloat 7s ease-in-out infinite;
}

.wave-top {
  top: 3%;
  clip-path: polygon(0 31%, 8% 38%, 14% 18%, 23% 35%, 33% 23%, 43% 37%, 52% 18%, 61% 33%, 72% 21%, 83% 38%, 92% 19%, 100% 30%, 100% 100%, 0 100%);
}

.wave-bottom {
  bottom: 0;
  opacity: 0.72;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 92% 55%, 83% 75%, 72% 58%, 61% 78%, 52% 60%, 43% 78%, 33% 61%, 23% 79%, 14% 62%, 8% 74%, 0 66%);
  animation-delay: -2.4s;
}

.stage-grid {
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.10) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.10) 1px, transparent 1px);
}

.orbit-ring {
  border-color: rgba(30, 136, 200, 0.18);
}

.orbit-ring::before,
.pulse-dot,
.terminal-line,
.router i {
  background: var(--wine);
  box-shadow: 0 0 28px rgba(30, 136, 200, 0.24);
}

.terminal-line.short,
.phone span:nth-child(3) {
  background: var(--wine-bright);
}

.signal-beam {
  background: linear-gradient(90deg, transparent, var(--wine-bright), transparent);
  filter: drop-shadow(0 0 12px rgba(30, 136, 200, 0.38));
}

.device {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 236, 230, 0.82));
}

.device::after {
  background: linear-gradient(120deg, transparent, rgba(30, 136, 200, 0.22), rgba(11, 111, 174, 0.16), transparent);
}

.screen {
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 72% 30%, rgba(11, 111, 174, 0.24), transparent 9rem),
    #FFFFFF;
}

.screen::before {
  background: linear-gradient(115deg, transparent 35%, rgba(30, 136, 200, 0.11), transparent 58%);
}

.screen::after {
  background: repeating-linear-gradient(180deg, transparent 0 8px, rgba(30, 136, 200, 0.025) 8px 9px);
}

.diagnostic-feed {
  color: rgba(16, 42, 67, 0.72);
}

.diagnostic-feed span {
  border-color: rgba(30, 136, 200, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.keyboard {
  background: repeating-linear-gradient(90deg, rgba(30, 136, 200, 0.32) 0 10px, transparent 10px 17px);
}

.floating-label {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(30, 136, 200, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(30, 136, 200, 0.12);
  animation: labelDrift 6s ease-in-out infinite;
}

.label-a { left: 7%; top: 17%; }
.label-b { right: 8%; bottom: 4%; animation-delay: -1.8s; }
.label-c { left: 28%; bottom: 9%; animation-delay: -3.1s; }

.marquee {
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.13), rgba(255, 255, 255, 0.72), rgba(30, 136, 200, 0.13)),
    rgba(255, 255, 255, 0.66);
}

.marquee span {
  color: rgba(16, 42, 67, 0.74);
  text-shadow: none;
}

.impact-item {
  background:
    linear-gradient(135deg, rgba(30, 136, 200, 0.09), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.72);
}

.impact-item::before {
  background: linear-gradient(90deg, transparent, rgba(30, 136, 200, 0.10), transparent);
}

.scroll-showcase {
  min-height: 210vh;
  padding: 4rem 0;
}

.showcase-sticky {
  position: sticky;
  top: 0;
  width: min(1180px, calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.8fr);
  grid-template-rows: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 7rem 0 3rem;
  overflow: hidden;
}

.showcase-copy {
  align-self: start;
}

.showcase-copy h2 {
  max-width: 9ch;
}

.showcase-visual {
  position: relative;
  min-height: 35rem;
  grid-row: span 2;
}

.support-pack {
  position: absolute;
  right: 3%;
  top: calc(18% + var(--showcase-progress, 0) * 10%);
  width: min(27rem, 72vw);
  height: 34rem;
  border: 1px solid rgba(30, 136, 200, 0.18);
  border-radius: 1.4rem;
  background:
    linear-gradient(160deg, #fff 0 46%, #EAF6FC 46% 100%);
  box-shadow: 0 44px 100px rgba(16, 42, 67, 0.18);
  transform: rotate(calc(-8deg + var(--showcase-progress, 0) * 15deg)) translateY(calc(var(--showcase-progress, 0) * -42px));
  transition: transform 90ms linear;
}

.support-pack::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 25% 18%, rgba(30, 136, 200, 0.12), transparent 8rem),
    linear-gradient(90deg, rgba(30, 136, 200, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.08) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.pack-cap {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 5rem;
  height: 1.3rem;
  border-radius: 999px;
  background: var(--wine);
  transform: translateX(-50%) rotate(3deg);
}

.pack-screen {
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 7rem;
  height: 10rem;
  border-radius: 0.8rem;
  background: #102A43;
}

.pack-line,
.pack-dot {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: var(--wine-bright);
}

.pack-line.one { left: 3rem; top: 9rem; width: 48%; height: 0.55rem; }
.pack-line.two { left: 3rem; top: 10.4rem; width: 30%; height: 0.55rem; background: #fff; }
.pack-dot { right: 3rem; bottom: 3rem; width: 2.5rem; height: 2.5rem; animation: pulse 1.8s infinite; }

.showcase-panels {
  display: flex;
  gap: 1rem;
  grid-column: 1 / -1;
  transform: translateX(calc(var(--showcase-progress, 0) * -10vw));
  transition: transform 90ms linear;
}

.motion-panel {
  flex: 0 0 min(32rem, 72vw);
  min-height: 16rem;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #fff;
}

.motion-panel span {
  color: var(--wine);
  font-weight: 950;
}

.motion-panel h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.motion-panel p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-card {
  background: #fff;
}

.service-card:hover {
  border-color: rgba(30, 136, 200, 0.34);
  background: #F7FBFD;
}

.service-card::before {
  background: radial-gradient(ellipse, rgba(30, 136, 200, 0.12), transparent 68%);
}

.icon,
.timeline span {
  background: var(--wine);
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 136, 200, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 136, 200, 0.10);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #1E88C8, #0B6FAE);
}

@keyframes waveFloat {
  0%, 100% { transform: translateX(-1.5%) translateY(0); }
  50% { transform: translateX(1.5%) translateY(-12px); }
}

@keyframes labelDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(12px, -16px, 0) rotate(3deg); }
}

@media (max-width: 900px) {
  .showcase-sticky {
    position: relative;
    min-height: auto;
    display: block;
    padding: 5rem 0 2rem;
  }

  .scroll-showcase {
    min-height: auto;
  }

  .showcase-copy h2 {
    max-width: 10ch;
  }

  .showcase-visual {
    min-height: 24rem;
  }

  .support-pack {
    right: -14%;
    width: 20rem;
    height: 25rem;
  }

  .showcase-panels {
    display: grid;
    transform: none;
  }

  .motion-panel {
    min-height: 13rem;
    width: 100%;
    flex-basis: auto;
  }

  .floating-label {
    display: none;
  }
}

/* Full-bleed expansion: use the whole canvas, not just the middle. */
.section-band,
.section {
  width: min(100% - 2rem, 1440px);
}

.hero.section-band {
  width: 100%;
  max-width: none;
  padding-left: clamp(1rem, 3.4vw, 4rem);
  padding-right: clamp(1rem, 3.4vw, 4rem);
  grid-template-columns: minmax(23rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-logo {
  display: block;
  width: clamp(4rem, 8vw, 6.2rem);
  aspect-ratio: 1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-radius: 1.45rem;
  object-fit: contain;
  box-shadow:
    0 26px 70px rgba(16, 42, 67, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.82);
}

.hero-stage {
  min-height: min(44rem, 76vh);
  transform: translateX(calc(var(--scroll) * 80px));
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(4.2rem, 8.4vw, 8.9rem);
}

.hero-text {
  max-width: 48rem;
}

.edge-word {
  position: absolute;
  z-index: 1;
  color: rgba(30, 136, 200, 0.08);
  font-weight: 1000;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.edge-left {
  left: -0.28em;
  bottom: 6%;
  font-size: clamp(7rem, 18vw, 22rem);
  transform: rotate(-90deg) translateY(16%);
  transform-origin: left bottom;
}

.edge-right {
  right: -0.12em;
  top: 16%;
  font-size: clamp(4rem, 10vw, 14rem);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(calc(var(--scroll) * -130px));
}

.hero-splash {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: rgba(30, 136, 200, 0.10);
  filter: blur(0.2px);
  animation: splashSwim 9s ease-in-out infinite;
}

.splash-a {
  right: -7vw;
  top: 8vh;
  width: 46vw;
  height: 32vh;
  clip-path: polygon(0 18%, 13% 4%, 26% 22%, 42% 8%, 57% 24%, 72% 5%, 88% 21%, 100% 9%, 100% 100%, 0 100%);
}

.splash-b {
  left: 42vw;
  bottom: 4vh;
  width: 62vw;
  height: 24vh;
  opacity: 0.65;
  clip-path: polygon(0 52%, 8% 34%, 16% 62%, 27% 38%, 39% 64%, 52% 29%, 66% 58%, 79% 35%, 91% 62%, 100% 43%, 100% 100%, 0 100%);
  animation-delay: -3s;
}

.laptop {
  width: min(34rem, 48vw);
  height: 20rem;
  left: 6%;
  top: 28%;
}

.phone {
  right: 8%;
  top: 12%;
}

.router {
  right: 6%;
  bottom: 8%;
}

.status-card {
  transform: translate3d(calc(var(--scroll) * -38px), 0, 0);
}

.marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.impact-strip.section-band {
  width: 100%;
  max-width: none;
  padding: clamp(1rem, 2.4vw, 2rem) clamp(1rem, 3.4vw, 4rem) 0;
}

.wide-motion {
  position: relative;
  width: 100vw;
  min-height: 96svh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(30, 136, 200, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(30, 136, 200, 0.06), rgba(255, 255, 255, 0));
}

.wide-word {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  color: rgba(16, 42, 67, 0.038);
  font-size: clamp(7rem, 18vw, 21rem);
  font-weight: 1000;
  line-height: 0.75;
  transform: translate(-50%, -50%) translateX(calc(var(--scroll) * -180px));
  white-space: nowrap;
}

.wide-lane {
  position: absolute;
  left: -8vw;
  right: -8vw;
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  width: max-content;
  transform: rotate(-5deg) translateX(calc(var(--scroll) * -240px));
}

.wide-lane span {
  display: grid;
  place-items: center;
  min-height: clamp(4.5rem, 8vw, 7rem);
  padding: 0 clamp(1.4rem, 4vw, 4rem);
  border: 1px solid rgba(30, 136, 200, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(16, 42, 67, 0.10);
  color: var(--wine);
  font-size: clamp(1.6rem, 4vw, 4.6rem);
  font-weight: 1000;
  white-space: nowrap;
}

.lane-one {
  top: 18%;
}

.lane-two {
  bottom: 20%;
  transform: rotate(4deg) translateX(calc(var(--scroll) * 260px - 42vw));
}

.wide-device {
  position: absolute;
  border: 1px solid rgba(30, 136, 200, 0.16);
  background: linear-gradient(145deg, #fff, #EAF6FC);
  box-shadow: 0 38px 90px rgba(16, 42, 67, 0.16);
}

.wide-laptop {
  width: min(30rem, 44vw);
  height: 18rem;
  right: 10vw;
  top: 34%;
  border-radius: 1.5rem;
  transform: rotate(10deg) translateY(calc(var(--scroll) * -95px));
}

.wide-laptop i {
  position: absolute;
  left: 2rem;
  right: 2rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--wine);
}

.wide-laptop i:nth-child(1) { top: 3rem; right: 8rem; }
.wide-laptop i:nth-child(2) { top: 4.6rem; right: 15rem; background: var(--wine-bright); }
.wide-laptop i:nth-child(3) { bottom: 2.2rem; left: 32%; right: 32%; background: rgba(16, 42, 67, 0.18); }

.wide-router {
  width: 17rem;
  height: 8rem;
  left: 8vw;
  bottom: 18%;
  border-radius: 1.2rem;
  transform: rotate(-12deg) translateY(calc(var(--scroll) * 70px));
}

.wide-router::before,
.wide-router::after {
  content: "";
  position: absolute;
  top: -4rem;
  width: 0.42rem;
  height: 5rem;
  border-radius: 999px;
  background: var(--wine);
}

.wide-router::before {
  left: 2rem;
  transform: rotate(-20deg);
}

.wide-router::after {
  right: 2rem;
  transform: rotate(20deg);
}

.wide-router i {
  position: absolute;
  bottom: 1.7rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--wine-bright);
  animation: blink 1.4s infinite;
}

.wide-router i:nth-child(1) { left: 2rem; }
.wide-router i:nth-child(2) { left: 3.8rem; animation-delay: 0.4s; }

.scroll-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.showcase-sticky {
  width: 100%;
  max-width: none;
  padding-left: clamp(1rem, 3.4vw, 4rem);
  padding-right: clamp(1rem, 3.4vw, 4rem);
  grid-template-columns: minmax(24rem, 0.78fr) minmax(28rem, 1.22fr);
}

.showcase-copy h2 {
  max-width: 8ch;
  font-size: clamp(4rem, 9vw, 10.5rem);
}

.showcase-visual {
  min-height: 42rem;
}

.support-pack {
  right: 7vw;
  width: min(36rem, 44vw);
  height: 42rem;
}

.showcase-panels {
  margin-left: -4rem;
  width: calc(100vw + 8rem);
}

.motion-panel {
  flex-basis: min(39rem, 42vw);
}

#leistungen.section,
#ablauf.section,
#kontakt.section {
  width: 100%;
  max-width: none;
  padding-left: clamp(1rem, 3.4vw, 4rem);
  padding-right: clamp(1rem, 3.4vw, 4rem);
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: clamp(0.65rem, 1vw, 0.95rem);
}

@keyframes splashSwim {
  0%, 100% { transform: translate3d(0, 0, 0) scaleX(1); }
  50% { transform: translate3d(-2vw, 1.5vh, 0) scaleX(1.04); }
}

@media (max-width: 900px) {
  .hero.section-band {
    width: 100%;
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .edge-word,
  .hero-splash {
    display: none;
  }

  .wide-motion {
    min-height: 58rem;
  }

  .wide-word {
    top: 22%;
    font-size: clamp(5rem, 24vw, 9rem);
  }

  .wide-lane {
    left: -35vw;
  }

  .wide-lane span {
    min-height: 4rem;
    font-size: 1.45rem;
  }

  .wide-laptop {
    width: 22rem;
    height: 15rem;
    right: -5rem;
    top: 39%;
  }

  .wide-router {
    left: -2rem;
    bottom: 14%;
  }

  .showcase-sticky {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .showcase-copy h2 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .support-pack {
    width: 21rem;
    height: 26rem;
    right: -3rem;
  }

  .showcase-panels {
    width: 100%;
    margin-left: 0;
  }

  .motion-panel {
    min-width: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Final readability overrides: keep motion, stop clipped words. */
.wide-lane {
  left: clamp(1rem, 4vw, 4rem);
  right: auto;
  transform: rotate(-4deg) translateX(calc(var(--scroll) * -24px));
}

.wide-lane::before {
  content: "";
  flex: 0 0 clamp(1rem, 3vw, 3rem);
}

.lane-two {
  transform: rotate(3deg) translateX(calc(var(--scroll) * 32px - 2vw));
}

.wide-lane span {
  min-height: clamp(4rem, 6vw, 5.8rem);
  padding: 0 clamp(1.3rem, 3vw, 3.2rem);
  font-size: clamp(1.45rem, 3vw, 3.45rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 246, 252, 0.58));
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
}

.showcase-panels {
  margin-left: 0;
  width: 100%;
  padding-left: clamp(1rem, 3.4vw, 4rem);
  padding-right: clamp(1rem, 3.4vw, 4rem);
  transform: translateX(calc(var(--showcase-progress, 0) * -1vw));
}

.motion-panel {
  flex: 0 0 clamp(18rem, 29vw, 28rem);
  border-radius: 1.05rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 246, 252, 0.58));
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.18);
}

.motion-panel:first-child {
  margin-left: 0;
}

.motion-panel h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-card,
.impact-item,
.contact-form,
.process-panel,
.quote-panel,
.status-card,
.brand,
.nav-pills,
.floating-label,
.wide-device,
.support-pack {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(234, 246, 252, 0.56));
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(1.18);
}

.service-card,
.impact-item,
.contact-form,
.process-panel,
.quote-panel {
  border-radius: 1.05rem;
}

.label-a {
  left: auto;
  right: 26%;
  top: 9%;
}

.label-a::before,
.label-a::after {
  content: "";
  position: absolute;
  top: -2.6rem;
  width: 1px;
  height: 2.6rem;
  background: rgba(30, 136, 200, 0.24);
}

.label-a::before { left: 24%; }
.label-a::after { right: 24%; }

@media (max-width: 900px) {
  .wide-lane {
    left: 1rem;
    transform: rotate(-4deg) translateX(calc(var(--scroll) * -12px));
  }

  .lane-two {
    transform: rotate(3deg) translateX(calc(var(--scroll) * 14px - 8vw));
  }

  .showcase-panels {
    padding-left: 0;
    padding-right: 0;
    transform: none;
  }
}

/* Contact, endless marquee, and sign placement polish. */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 28s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
}

.marquee:hover .marquee-track {
  animation-play-state: running;
}

@keyframes marqueeLoop {
  to { transform: translateX(-50%); }
}

.contact {
  grid-template-columns: minmax(0, 0.75fr) minmax(22rem, 1.25fr);
}

.prices {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: none;
  padding-left: clamp(1rem, 3.4vw, 4rem);
  padding-right: clamp(1rem, 3.4vw, 4rem);
  grid-template-columns: minmax(16rem, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: start;
}

.prices .section-heading {
  position: sticky;
  top: 7rem;
  text-align: left;
  margin: 0;
  max-width: 28rem;
}

.prices .section-heading h2 {
  max-width: none;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.price-card {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.8rem;
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(30, 136, 200, 0.14);
  border-radius: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(234, 246, 252, 0.56));
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.18);
}

.price-card::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(30, 136, 200, 0.10);
}

.price-card span,
.price-card strong,
.price-card p {
  position: relative;
  z-index: 8;
}

.price-card span {
  width: max-content;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 1000;
  line-height: 0.86;
  text-transform: uppercase;
}

.price-card strong {
  color: #102A43;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.price-card p {
  color: var(--muted);
}

.price-card.featured {
  background:
    radial-gradient(circle at 78% 12%, rgba(11, 111, 174, 0.25), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 246, 252, 0.68));
  box-shadow:
    0 32px 90px rgba(16, 42, 67, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.legal-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
  align-items: start;
}

.legal-card {
  position: relative;
  width: 100%;
  margin-inline: 0;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid rgba(30, 136, 200, 0.14);
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 252, 0.72));
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.16);
}

.legal-card summary,
.legal-card h3,
.legal-card p,
.legal-card a {
  position: relative;
  z-index: 8;
}

.legal-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 2.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--wine);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.legal-card summary::before {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: center;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-0.12rem) rotate(45deg);
  transform-origin: center;
  transition: transform 260ms ease;
  z-index: 9;
  pointer-events: none;
}

.legal-card[open] summary::after {
  background: #102A43;
}

.legal-card[open] summary::before {
  transform: translateY(0.12rem) rotate(225deg);
}

.legal-card summary span {
  grid-column: 1;
  grid-row: 1;
  display: block;
  margin-bottom: 0.7rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card summary strong {
  grid-column: 1;
  grid-row: 2;
  display: block;
  color: #102A43;
  font-size: clamp(1.65rem, 3.2vw, 2.85rem);
  line-height: 0.92;
}

.legal-card summary:focus-visible::after {
  box-shadow: 0 0 0 4px rgba(30, 136, 200, 0.14);
}

.legal-content {
  display: grid;
  gap: 0.2rem;
  margin-top: clamp(1.1rem, 2vw, 1.7rem);
  padding-top: clamp(1rem, 2vw, 1.45rem);
  border-top: 1px solid rgba(30, 136, 200, 0.12);
}

.legal-card h3 {
  margin: 1.4rem 0 0.55rem;
  color: #102A43;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.legal-card p {
  max-width: 80ch;
  color: rgba(16, 42, 67, 0.72);
}

.legal-card a,
.site-footer a {
  color: var(--wine);
  font-weight: 850;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.contact-stack {
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.7rem;
  align-items: center;
  margin-top: clamp(1.2rem, 2vw, 1.7rem);
}

.contact-facts span,
.contact-facts strong {
  display: inline-grid;
  min-height: 3.1rem;
  place-items: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(30, 136, 200, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(16, 42, 67, 0.08);
  color: #102A43;
  font-weight: 900;
}

.contact-facts strong {
  background: var(--wine);
  color: #fff;
}

.contact-method {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(30, 136, 200, 0.14);
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 246, 252, 0.58));
  box-shadow:
    0 24px 70px rgba(16, 42, 67, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.18);
}

.contact-method::before {
  content: "";
  position: absolute;
  right: -3.5rem;
  top: -3.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(30, 136, 200, 0.10);
  box-shadow: 0 0 90px rgba(30, 136, 200, 0.16);
}

.contact-method::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.76), transparent 38%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.9), transparent 15rem);
  opacity: 0.48;
  pointer-events: none;
}

.contact-method .contact-icon {
  position: absolute;
  z-index: 9;
  right: 1.05rem;
  top: 1.05rem;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(16, 42, 67, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.contact-method .contact-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method .contact-icon svg path:first-child {
  fill: rgba(255, 255, 255, 0.10);
}

.contact-method span,
.contact-method strong,
.contact-method small {
  position: relative;
  z-index: 1;
}

.contact-method span {
  width: max-content;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.contact-method small {
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.profile-card {
  position: relative;
  min-height: 9.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(30, 136, 200, 0.14);
  border-radius: 1.1rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 246, 252, 0.58));
  box-shadow:
    0 22px 64px rgba(16, 42, 67, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.18);
}

.profile-card::before {
  content: "";
  position: absolute;
  right: -2rem;
  top: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(30, 136, 200, 0.09);
}

.profile-avatar {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.18);
}

.profile-avatar svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-avatar svg path:first-child {
  fill: rgba(255, 255, 255, 0.12);
}

.profile-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.profile-card strong {
  color: #102A43;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1;
}

.profile-card small {
  color: var(--muted);
  font-size: 0.95rem;
}

.label-a {
  left: auto !important;
  right: 31%;
  top: -0.9rem;
  width: auto;
  min-width: 8.5rem;
  max-width: 10rem;
  text-align: center;
  white-space: nowrap;
  transform: rotate(-2deg);
}

.label-a::before,
.label-a::after {
  top: -2rem;
  height: 2rem;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-facts,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 11rem;
  }
}

.contact .reveal,
.contact .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* More devices, less empty scroll, clearer layering. */
.scroll-showcase {
  min-height: 148vh;
  padding-bottom: 0;
}

.showcase-sticky {
  min-height: 92svh;
  padding-bottom: 1.5rem;
}

#leistungen.section {
  padding-top: clamp(3.4rem, 6vw, 5.2rem);
}

.wide-motion {
  min-height: 88svh;
}

.wide-lane {
  z-index: 5;
}

.wide-lane span {
  position: relative;
  z-index: 6;
}

.wide-device {
  pointer-events: none;
}

.wide-router {
  z-index: 1;
  left: -3.5rem;
  bottom: 5%;
  opacity: 0.72;
  transform: rotate(-14deg) translateY(calc(var(--scroll) * 30px));
}

.wide-laptop {
  z-index: 2;
  right: 7vw;
  top: 34%;
  opacity: 0.72;
}

.wide-monitor {
  z-index: 3;
  left: 53%;
  top: 20%;
  width: min(28rem, 34vw);
  height: 17rem;
  border-radius: 1.2rem;
  transform: rotate(-4deg) translateY(calc(var(--scroll) * -36px));
}

.wide-monitor::after {
  content: "";
  position: absolute;
  left: 34%;
  right: 34%;
  bottom: -2.1rem;
  height: 2.1rem;
  border-radius: 0 0 0.45rem 0.45rem;
  background: rgba(30, 136, 200, 0.18);
}

.wide-monitor i {
  position: absolute;
  left: 2rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--wine);
}

.wide-monitor i:nth-child(1) {
  top: 2.2rem;
  width: 62%;
}

.wide-monitor i:nth-child(2) {
  top: 3.6rem;
  width: 36%;
  background: var(--wine-bright);
}

.wide-phone {
  z-index: 4;
  right: 4vw;
  bottom: 8%;
  width: 7.2rem;
  height: 14rem;
  border-radius: 1.45rem;
  transform: rotate(12deg) translateY(calc(var(--scroll) * 22px));
}

.wide-phone i {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(30, 136, 200, 0.36);
}

.wide-phone i:nth-child(1) { top: 2.3rem; }
.wide-phone i:nth-child(2) { top: 3.4rem; right: 2.5rem; }
.wide-phone i:nth-child(3) { bottom: 2rem; background: var(--wine-bright); }

.wide-word {
  top: 54%;
  opacity: 0.9;
}

.lane-one {
  top: 16%;
}

.lane-two {
  bottom: 19%;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: 4rem;
  width: min(24rem, 34vw);
  height: 14rem;
  border: 1px solid rgba(30, 136, 200, 0.11);
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(234, 246, 252, 0.26)),
    linear-gradient(90deg, rgba(30, 136, 200, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.06) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.08);
  transform: rotate(5deg);
  pointer-events: none;
}

@media (max-width: 900px) {
  .scroll-showcase {
    min-height: auto;
  }

  .wide-motion {
    min-height: 48rem;
  }

  .wide-router {
    left: -7rem;
    bottom: 2%;
    opacity: 0.55;
  }

  .wide-monitor {
    left: 14%;
    top: 33%;
    width: 18rem;
    height: 12rem;
  }

  .wide-phone {
    right: -1.5rem;
    bottom: 11%;
    width: 5.7rem;
    height: 11rem;
  }

  .services::before {
    display: none;
  }
}

/* Final polish: glass devices, tighter services entry, no text obstruction. */
.scroll-showcase {
  min-height: 132vh;
}

.showcase-sticky {
  min-height: 88svh;
}

#leistungen.section {
  padding-top: clamp(2rem, 4.5vw, 3.7rem);
}

.wide-motion {
  min-height: 82svh;
  background:
    radial-gradient(circle at 10% 82%, rgba(30, 136, 200, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(11, 111, 174, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 252, 253, 0.92), rgba(255, 255, 255, 0.72));
}

.wide-device {
  border-color: rgba(30, 136, 200, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 245, 248, 0.30)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.06) 46%, rgba(30, 136, 200, 0.07));
  box-shadow:
    0 34px 90px rgba(16, 42, 67, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -24px 60px rgba(30, 136, 200, 0.045);
  backdrop-filter: blur(18px) saturate(1.25);
}

.wide-router {
  left: -8.5rem;
  bottom: 3%;
  width: 15.5rem;
  height: 7.4rem;
  opacity: 0.48;
  transform: rotate(-17deg) translateY(calc(var(--scroll) * 24px));
}

.wide-router::before,
.wide-router::after {
  height: 4.2rem;
  top: -3.25rem;
}

.wide-laptop {
  right: 5vw;
  top: 39%;
  width: min(28rem, 35vw);
  height: 16rem;
  opacity: 0.56;
}

.wide-monitor {
  z-index: 2;
  left: 57%;
  top: 25%;
  width: min(23rem, 28vw);
  height: 14rem;
  opacity: 0.46;
  transform: rotate(-5deg) translateY(calc(var(--scroll) * -24px));
}

.wide-monitor::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(30, 136, 200, 0.09);
  border-radius: 0.85rem;
  background:
    linear-gradient(90deg, rgba(30, 136, 200, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.wide-phone {
  z-index: 2;
  right: 1.5vw;
  bottom: 9%;
  opacity: 0.66;
}

.wide-lane {
  filter: drop-shadow(0 18px 34px rgba(16, 42, 67, 0.12));
}

.wide-lane span {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 18px 55px rgba(16, 42, 67, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services {
  background:
    radial-gradient(circle at 82% 8%, rgba(30, 136, 200, 0.10), transparent 20rem),
    radial-gradient(circle at 8% 72%, rgba(11, 111, 174, 0.08), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #F7FBFD 100%);
}

.services::before {
  display: none;
}

.services::after {
  content: "";
  position: absolute;
  right: clamp(-1.8rem, 5vw, 4rem);
  top: 11.5rem;
  width: 8.8rem;
  height: 4.9rem;
  border: 1px solid rgba(30, 136, 200, 0.13);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 1.3rem 3.3rem, var(--wine-bright) 0 0.38rem, transparent 0.42rem),
    radial-gradient(circle at 2.45rem 3.3rem, rgba(30, 136, 200, 0.48) 0 0.34rem, transparent 0.38rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 248, 0.36));
  box-shadow: 0 22px 60px rgba(16, 42, 67, 0.10);
  transform: rotate(-9deg);
  pointer-events: none;
  z-index: 0;
}

.service-card,
.contact-method,
.support-pack,
.motion-panel {
  box-shadow:
    0 24px 80px rgba(16, 42, 67, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.services .section-head,
.services .section-heading,
.services .service-grid {
  position: relative;
  z-index: 1;
}

.services .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: clamp(0.65rem, 1vw, 0.95rem);
}

.services .service-card {
  height: 14rem;
  min-height: 14rem;
  gap: 0.7rem;
  padding: clamp(0.85rem, 1.25vw, 1rem);
  border-radius: 0.9rem;
}

.services .service-card .icon {
  width: 2rem;
  height: 2rem;
  font-size: 0.72rem;
}

.services .service-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.08;
}

.services .service-card p {
  font-size: 0.88rem;
  line-height: 1.34;
}

@media (min-width: 1700px) {
  .services .service-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.sketch-pad {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: clamp(2rem, 4vw, 3.4rem);
  z-index: 3;
  pointer-events: auto;
  width: min(24rem, 34vw);
  aspect-ratio: 1.75;
  border: 1px solid rgba(30, 136, 200, 0.13);
  border-radius: 1.15rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(234, 246, 252, 0.30)),
    linear-gradient(90deg, rgba(30, 136, 200, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 200, 0.06) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  box-shadow:
    0 28px 80px rgba(16, 42, 67, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: rotate(4deg);
  backdrop-filter: blur(14px) saturate(1.12);
  transition:
    transform 420ms ease,
    box-shadow 420ms ease,
    border-color 420ms ease;
}

.sketch-pad::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 75%) var(--my, 20%), rgba(11, 111, 174, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 42%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.sketch-pad:hover,
.sketch-pad.is-sketching {
  border-color: rgba(30, 136, 200, 0.24);
  box-shadow:
    0 34px 110px rgba(16, 42, 67, 0.16),
    0 0 48px rgba(11, 111, 174, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(1deg) translateY(-0.35rem) scale(1.015);
}

.sketch-pad:hover::before,
.sketch-pad.is-sketching::before {
  opacity: 1;
}

.laptop-sketch {
  position: absolute;
  inset: 8% 7%;
  width: 86%;
  height: 84%;
  overflow: visible;
}

.sketch-line {
  fill: none;
  stroke: var(--wine);
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  opacity: 0;
  filter: drop-shadow(0 5px 10px rgba(30, 136, 200, 0.08));
}

.line-glow {
  stroke: var(--wine-bright);
  stroke-width: 4;
  opacity: 0;
}

.line-keyboard {
  stroke-width: 4.2;
}

.sketch-pad:hover .sketch-line,
.sketch-pad.is-sketching .sketch-line {
  animation: sketchDraw 3.2s ease forwards;
}

.sketch-pad:hover .line-screen,
.sketch-pad.is-sketching .line-screen { animation-delay: 0.08s; }
.sketch-pad:hover .line-base,
.sketch-pad.is-sketching .line-base { animation-delay: 0.72s; }
.sketch-pad:hover .line-hinge,
.sketch-pad.is-sketching .line-hinge { animation-delay: 1.18s; }
.sketch-pad:hover .line-glow,
.sketch-pad.is-sketching .line-glow { animation-delay: 1.55s; }
.sketch-pad:hover .line-keyboard,
.sketch-pad.is-sketching .line-keyboard { animation-delay: 2.05s; }

.sketch-pencil {
  position: absolute;
  left: 20%;
  top: 24%;
  width: 5.4rem;
  height: 0.72rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #f4d6a1 0 68%, #1E88C8 68% 80%, #EAF6FC 80% 100%);
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.16);
  opacity: 0;
  transform: translate(-1rem, -0.9rem) rotate(-26deg);
}

.sketch-pencil::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 50%;
  width: 0;
  height: 0;
  border-block: 0.36rem solid transparent;
  border-right: 0.68rem solid #261b1e;
  transform: translateY(-50%);
}

.sketch-pencil i {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: rgba(30, 136, 200, 0.65);
  transform: translateY(-50%);
}

.sketch-pad:hover .sketch-pencil,
.sketch-pad.is-sketching .sketch-pencil {
  animation: pencilTrace 3.35s ease-in-out forwards;
}

@keyframes sketchDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 720;
  }

  8% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes pencilTrace {
  0% {
    opacity: 0;
    transform: translate(-1rem, -0.9rem) rotate(-26deg);
  }

  8% {
    opacity: 1;
  }

  24% {
    transform: translate(8.5rem, -0.8rem) rotate(-12deg);
  }

  44% {
    transform: translate(10.6rem, 4.1rem) rotate(28deg);
  }

  62% {
    transform: translate(2.3rem, 5.7rem) rotate(156deg);
  }

  82% {
    transform: translate(12.2rem, 7rem) rotate(8deg);
  }

  100% {
    opacity: 1;
    transform: translate(14.2rem, 7.35rem) rotate(10deg);
  }
}

/* Surprise sketch on the large support block. */
.support-pack {
  overflow: hidden;
  cursor: crosshair;
}

.support-pack .pack-screen,
.support-pack .pack-line,
.support-pack .pack-dot,
.support-pack .pack-cap {
  transition:
    opacity 360ms ease,
    transform 420ms ease,
    filter 420ms ease;
}

.support-pack:hover .pack-screen,
.support-pack.is-pack-sketching .pack-screen {
  opacity: 0.08;
  filter: blur(2px);
}

.support-pack:hover .pack-line,
.support-pack:hover .pack-dot,
.support-pack:hover .pack-cap,
.support-pack.is-pack-sketching .pack-line,
.support-pack.is-pack-sketching .pack-dot,
.support-pack.is-pack-sketching .pack-cap {
  opacity: 0.14;
  transform: translateY(-0.4rem);
}

.network-sketch {
  position: absolute;
  inset: 7% 8%;
  z-index: 4;
  width: 84%;
  height: 84%;
  overflow: visible;
}

.net-line {
  fill: none;
  stroke: var(--wine);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  opacity: 0;
  filter: drop-shadow(0 6px 12px rgba(30, 136, 200, 0.10));
}

.net-wifi-one,
.net-wifi-two,
.net-wifi-dot,
.net-connection {
  stroke: var(--wine-bright);
}

.net-router-details,
.net-wifi-dot {
  stroke-width: 5;
}

.support-pack:hover .net-line,
.support-pack.is-pack-sketching .net-line {
  animation: networkDraw 4.15s ease forwards;
}

.support-pack:hover .net-router,
.support-pack.is-pack-sketching .net-router { animation-delay: 0.08s; }
.support-pack:hover .net-router-details,
.support-pack.is-pack-sketching .net-router-details { animation-delay: 0.7s; }
.support-pack:hover .net-wifi-one,
.support-pack.is-pack-sketching .net-wifi-one { animation-delay: 1.18s; }
.support-pack:hover .net-wifi-two,
.support-pack.is-pack-sketching .net-wifi-two { animation-delay: 1.55s; }
.support-pack:hover .net-wifi-dot,
.support-pack.is-pack-sketching .net-wifi-dot { animation-delay: 1.86s; }
.support-pack:hover .net-monitor,
.support-pack.is-pack-sketching .net-monitor { animation-delay: 2.14s; }
.support-pack:hover .net-phone,
.support-pack.is-pack-sketching .net-phone { animation-delay: 2.78s; }
.support-pack:hover .net-connection,
.support-pack.is-pack-sketching .net-connection { animation-delay: 3.25s; }

.network-pencil {
  position: absolute;
  z-index: 5;
  left: 22%;
  top: 66%;
  width: 6.2rem;
  height: 0.78rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #f5d89d 0 65%, #1E88C8 65% 78%, #EAF6FC 78% 100%);
  box-shadow:
    0 12px 26px rgba(16, 42, 67, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translate(-0.6rem, 0.3rem) rotate(-12deg);
}

.network-pencil::before {
  content: "";
  position: absolute;
  left: -0.62rem;
  top: 50%;
  width: 0;
  height: 0;
  border-block: 0.39rem solid transparent;
  border-right: 0.76rem solid #261b1e;
  transform: translateY(-50%);
}

.network-pencil i {
  position: absolute;
  right: 0.38rem;
  top: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: rgba(30, 136, 200, 0.68);
  transform: translateY(-50%);
}

.support-pack:hover .network-pencil,
.support-pack.is-pack-sketching .network-pencil {
  animation: networkPencil 4.3s ease-in-out forwards;
}

@keyframes networkDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 900;
  }

  8% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes networkPencil {
  0% {
    opacity: 0;
    transform: translate(-0.6rem, 0.3rem) rotate(-12deg);
  }

  8% {
    opacity: 1;
  }

  18% {
    transform: translate(11.4rem, 0.5rem) rotate(4deg);
  }

  34% {
    transform: translate(6.8rem, -7.4rem) rotate(-52deg);
  }

  49% {
    transform: translate(1.2rem, -13.2rem) rotate(-22deg);
  }

  66% {
    transform: translate(15.6rem, -12.8rem) rotate(18deg);
  }

  83% {
    transform: translate(7.6rem, -3.2rem) rotate(42deg);
  }

  100% {
    opacity: 1;
    transform: translate(13.8rem, -1.2rem) rotate(16deg);
  }
}

.services .reveal,
.services .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Pointer proximity polish. */
.marquee {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 244, 247, 0.96) 38%, rgba(255, 255, 255, 0.98) 100%);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: clamp(4rem, 12vw, 12rem);
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.marquee-track {
  will-change: transform;
  animation: marqueeLoop 48s linear infinite;
}

.marquee span {
  color: rgba(16, 42, 67, 0.72);
  text-shadow: none;
}

.marquee span::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 1.5rem;
  border-radius: 50%;
  background: var(--wine-bright);
  box-shadow: 0 0 18px rgba(11, 111, 174, 0.35);
  vertical-align: 0.14em;
}

@keyframes marqueeLoop {
  to {
    transform: translateX(-50%);
  }
}

.service-card,
.motion-panel,
.impact-item,
.contact-method,
.support-pack {
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.service-card::after,
.motion-panel::after,
.impact-item::after,
.contact-method::after,
.support-pack::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--px, 50%) var(--py, 50%),
    rgba(11, 111, 174, calc(0.22 * var(--proximity, 0))),
    transparent 42%
  );
  opacity: var(--proximity, 0);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card.is-near,
.motion-panel.is-near,
.impact-item.is-near,
.contact-method.is-near,
.support-pack.is-near {
  border-color: rgba(30, 136, 200, 0.28);
  box-shadow:
    0 calc(24px + 22px * var(--proximity, 0)) calc(75px + 40px * var(--proximity, 0)) rgba(16, 42, 67, 0.15),
    0 0 calc(36px * var(--proximity, 0)) rgba(11, 111, 174, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-card > *,
.motion-panel > *,
.impact-item > *,
.contact-method > *,
.support-pack > * {
  position: relative;
  z-index: 1;
}

.cursor-spotlight {
  background:
    radial-gradient(circle at var(--mx, 50vw) var(--my, 50vh), rgba(11, 111, 174, 0.16), transparent 16rem),
    radial-gradient(circle at var(--mx, 50vw) var(--my, 50vh), rgba(255, 255, 255, 0.25), transparent 8rem);
  mix-blend-mode: normal;
}

.has-pointer .ambient-canvas {
  opacity: 0.86;
}

h1,
h2,
h3,
p,
a,
button,
label,
input,
textarea,
strong,
small,
.eyebrow,
.brand,
.nav-pills,
.contact-facts,
.profile-card > div,
.contact-method > *,
.service-card > *,
.motion-panel > *,
.impact-item > *,
.quote-panel > *,
.site-footer > * {
  position: relative;
  z-index: 8;
}

.ambient-canvas {
  z-index: 5;
  opacity: 0.74 !important;
}

.has-pointer .ambient-canvas {
  opacity: 0.9 !important;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 80s;
  }

  .service-card,
  .motion-panel,
  .impact-item,
  .contact-method,
  .support-pack {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  #leistungen.section {
    padding-top: 2.4rem;
  }

  .services .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  }

  .wide-motion {
    min-height: 42rem;
  }

  .wide-monitor {
    left: 18%;
    top: 35%;
    width: 14.5rem;
    height: 9.4rem;
    opacity: 0.38;
  }

  .wide-router {
    left: -9.5rem;
    opacity: 0.38;
  }

  .wide-phone {
    right: -2.5rem;
    opacity: 0.48;
  }

  .sketch-pad {
    position: relative;
    top: auto;
    right: auto;
    width: min(22rem, 90vw);
    margin: 1.1rem auto 1.4rem;
    transform: none;
  }

  .sketch-pad:hover,
  .sketch-pad.is-sketching {
    transform: translateY(-0.25rem) scale(1.01);
  }

  .services::after {
    display: none;
  }
}

.service-card.is-near,
.motion-panel.is-near,
.impact-item.is-near,
.contact-method.is-near,
.support-pack.is-near {
  transform: var(--near-transform, translateY(-4px));
}

/* Revised support sketch: one visible pencil draws devices, no router connections. */
.net-connection {
  display: none;
}

.net-wifi-one,
.net-wifi-two,
.net-wifi-dot {
  stroke: var(--wine-bright);
}

.support-pack:hover .net-line,
.support-pack.is-pack-sketching .net-line {
  animation-duration: 4.8s;
}

.support-pack:hover .net-monitor,
.support-pack.is-pack-sketching .net-monitor { animation-delay: 0.08s; }
.support-pack:hover .net-phone,
.support-pack.is-pack-sketching .net-phone { animation-delay: 0.8s; }
.support-pack:hover .net-wifi-one,
.support-pack.is-pack-sketching .net-wifi-one { animation-delay: 1.52s; }
.support-pack:hover .net-wifi-two,
.support-pack.is-pack-sketching .net-wifi-two { animation-delay: 1.92s; }
.support-pack:hover .net-wifi-dot,
.support-pack.is-pack-sketching .net-wifi-dot { animation-delay: 2.2s; }
.support-pack:hover .net-router,
.support-pack.is-pack-sketching .net-router { animation-delay: 2.55s; }
.support-pack:hover .net-router-details,
.support-pack.is-pack-sketching .net-router-details { animation-delay: 3.1s; }

.network-pencil {
  z-index: 9;
  left: 45%;
  top: 18%;
  width: 7.8rem;
  height: 0.95rem;
  opacity: 0;
  transform: translate(-1.2rem, -0.8rem) rotate(-24deg);
  box-shadow:
    0 18px 34px rgba(16, 42, 67, 0.22),
    0 0 22px rgba(11, 111, 174, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.72);
}

.network-pencil::before {
  left: -0.78rem;
  border-block-width: 0.48rem;
  border-right-width: 0.94rem;
}

.network-pencil i {
  width: 0.46rem;
  height: 0.46rem;
}

.support-pack:hover .network-pencil,
.support-pack.is-pack-sketching .network-pencil {
  animation: networkPencilRevised 4.95s ease-in-out forwards;
}

@keyframes networkPencilRevised {
  0% {
    opacity: 0;
    transform: translate(-1.2rem, -0.8rem) rotate(-24deg);
  }

  5% {
    opacity: 1;
  }

  18% {
    transform: translate(3.8rem, 4.1rem) rotate(24deg);
  }

  31% {
    transform: translate(-8.4rem, 4.9rem) rotate(166deg);
  }

  45% {
    transform: translate(11.8rem, 4.8rem) rotate(12deg);
  }

  58% {
    transform: translate(4.8rem, 12.8rem) rotate(106deg);
  }

  72% {
    transform: translate(0.7rem, 19.8rem) rotate(-18deg);
  }

  88% {
    transform: translate(12.3rem, 20.8rem) rotate(6deg);
  }

  100% {
    opacity: 1;
    transform: translate(13.4rem, 20.3rem) rotate(8deg);
  }
}

/* Keep the drawing pencil unmistakably visible above every glass layer. */
.support-pack .network-pencil {
  position: absolute;
  z-index: 20;
  left: 40%;
  top: 20%;
  width: 9rem;
  height: 1.05rem;
  opacity: 0;
  filter: drop-shadow(0 16px 24px rgba(16, 42, 67, 0.28));
  transform: translate(-2rem, -1.2rem) rotate(-20deg);
}

.support-pack:hover .network-pencil,
.support-pack.is-pack-sketching .network-pencil {
  animation: networkPencilVisible 4.95s ease-in-out forwards;
}

@keyframes networkPencilVisible {
  0% {
    opacity: 0;
    transform: translate(-2rem, -1.2rem) rotate(-20deg);
  }

  5% {
    opacity: 1;
  }

  18% {
    transform: translate(2.6rem, 3.8rem) rotate(24deg);
  }

  32% {
    transform: translate(-8.6rem, 4.7rem) rotate(168deg);
  }

  47% {
    transform: translate(10.8rem, 4.6rem) rotate(12deg);
  }

  61% {
    transform: translate(3.4rem, 10.8rem) rotate(102deg);
  }

  76% {
    transform: translate(-1.4rem, 16.4rem) rotate(-15deg);
  }

  91% {
    transform: translate(9.6rem, 17.4rem) rotate(5deg);
  }

  100% {
    opacity: 1;
    transform: translate(10.4rem, 16.8rem) rotate(8deg);
  }
}

/* Erase sketches when the pointer leaves. */
.sketch-pad::after,
.support-pack .network-sketch::after {
  content: "";
}

.sketch-pad.is-erasing .sketch-line {
  opacity: 1;
  stroke-dashoffset: 0;
  animation: sketchErase 1.35s ease-in forwards;
}

.sketch-pad.is-erasing .line-screen { animation-delay: 0s; }
.sketch-pad.is-erasing .line-base { animation-delay: 0.1s; }
.sketch-pad.is-erasing .line-hinge { animation-delay: 0.18s; }
.sketch-pad.is-erasing .line-glow { animation-delay: 0.28s; }
.sketch-pad.is-erasing .line-keyboard { animation-delay: 0.38s; }

.sketch-pad.is-erasing .sketch-pencil {
  animation: none;
  opacity: 0;
}

.sketch-pad .sketch-eraser,
.support-pack .network-eraser {
  display: none;
}

.sketch-pad.is-erasing::after,
.support-pack.is-erasing::after {
  content: "";
  position: absolute;
  z-index: 30;
  width: 4.9rem;
  height: 2rem;
  border: 1px solid rgba(30, 136, 200, 0.18);
  border-radius: 0.48rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 225, 235, 0.86)),
    linear-gradient(90deg, rgba(30, 136, 200, 0.22), transparent 34%);
  box-shadow: 0 16px 32px rgba(16, 42, 67, 0.18);
  pointer-events: none;
}

.sketch-pad.is-erasing::after {
  left: 14%;
  top: 22%;
  animation: eraserLaptop 1.35s ease-in-out forwards;
}

.support-pack.is-erasing .net-line {
  opacity: 1;
  stroke-dashoffset: 0;
  animation: networkErase 1.45s ease-in forwards;
}

.support-pack.is-erasing .net-monitor { animation-delay: 0s; }
.support-pack.is-erasing .net-phone { animation-delay: 0.12s; }
.support-pack.is-erasing .net-wifi-one { animation-delay: 0.26s; }
.support-pack.is-erasing .net-wifi-two { animation-delay: 0.34s; }
.support-pack.is-erasing .net-wifi-dot { animation-delay: 0.44s; }
.support-pack.is-erasing .net-router { animation-delay: 0.56s; }
.support-pack.is-erasing .net-router-details { animation-delay: 0.66s; }

.support-pack.is-erasing .network-pencil {
  animation: none;
  opacity: 0;
}

.support-pack.is-erasing::after {
  left: 27%;
  top: 19%;
  width: 6.1rem;
  height: 2.25rem;
  animation: eraserNetwork 1.55s ease-in-out forwards;
}

@keyframes sketchErase {
  0% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 720;
  }
}

@keyframes networkErase {
  0% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 900;
  }
}

@keyframes eraserLaptop {
  0% {
    opacity: 0;
    transform: translate(-0.8rem, -0.5rem) rotate(-12deg);
  }

  10% {
    opacity: 1;
  }

  42% {
    transform: translate(9.8rem, 1.8rem) rotate(10deg);
  }

  72% {
    transform: translate(3.2rem, 6.6rem) rotate(-18deg);
  }

  100% {
    opacity: 0;
    transform: translate(13.8rem, 7.5rem) rotate(8deg);
  }
}

@keyframes eraserNetwork {
  0% {
    opacity: 0;
    transform: translate(-1rem, -0.4rem) rotate(-10deg);
  }

  10% {
    opacity: 1;
  }

  35% {
    transform: translate(15rem, 3.5rem) rotate(13deg);
  }

  62% {
    transform: translate(3.4rem, 13.2rem) rotate(-16deg);
  }

  86% {
    transform: translate(16.8rem, 20.8rem) rotate(9deg);
  }

  100% {
    opacity: 0;
    transform: translate(19rem, 21.5rem) rotate(9deg);
  }
}

@media (max-width: 1050px) {
  .site-header {
    position: fixed;
    padding: 0.8rem 0.85rem;
  }

  .brand {
    padding-right: 0.5rem;
  }

  .brand-name {
    display: none;
  }

  .nav-pills {
    left: 50%;
    max-width: calc(100vw - 7.2rem);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-pills::-webkit-scrollbar {
    display: none;
  }

  .nav-pills a {
    white-space: nowrap;
    padding: 0 0.72rem;
    font-size: 0.76rem;
  }

  .prices {
    grid-template-columns: 1fr;
  }

  .prices .section-heading {
    position: static;
    max-width: 48rem;
  }

  .price-grid,
  .legal-grid,
  .contact-methods,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .contact-method {
    min-height: 13rem;
  }

  .legal-card h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .brand {
    min-height: 2.75rem;
    padding: 0.32rem;
  }

  .brand-mark {
    width: 2.05rem;
    height: 2.05rem;
  }

  .nav-pills {
    min-height: 2.75rem;
    max-width: calc(100vw - 5.9rem);
  }

  .nav-pills a {
    min-height: 2.05rem;
    padding: 0 0.58rem;
  }

  .hero-logo {
    width: 4.25rem;
    border-radius: 1.05rem;
  }
}

.site-header {
  position: fixed !important;
}

.site-header .nav-pills {
  position: fixed !important;
  top: 1.15rem;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  z-index: 30;
  border: 1px solid rgba(30, 136, 200, 0.34);
  box-shadow:
    0 18px 48px rgba(16, 42, 67, 0.16),
    0 0 0 4px rgba(30, 136, 200, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

@media (max-width: 1050px) {
  .site-header .nav-pills {
    top: 0.8rem;
    max-width: calc(100vw - 7.2rem);
  }
}

@media (max-width: 640px) {
  .site-header .nav-pills {
    max-width: calc(100vw - 5.9rem);
  }
}

.has-progress-sketches .sketch-pad:hover .sketch-line,
.has-progress-sketches .sketch-pad.is-sketching .sketch-line,
.has-progress-sketches .sketch-pad.is-erasing .sketch-line,
.has-progress-sketches .support-pack:hover .net-line,
.has-progress-sketches .support-pack.is-pack-sketching .net-line,
.has-progress-sketches .support-pack.is-erasing .net-line {
  animation: none !important;
}

.has-progress-sketches .sketch-pad:hover .sketch-pencil,
.has-progress-sketches .sketch-pad.is-sketching .sketch-pencil,
.has-progress-sketches .sketch-pad.is-erasing .sketch-pencil,
.has-progress-sketches .support-pack:hover .network-pencil,
.has-progress-sketches .support-pack.is-pack-sketching .network-pencil,
.has-progress-sketches .support-pack.is-erasing .network-pencil {
  animation: none !important;
}

.has-progress-sketches .sketch-pad.is-erasing::after,
.has-progress-sketches .support-pack.is-erasing::after {
  display: block;
  inset: auto;
  left: var(--eraser-x, 50%);
  top: var(--eraser-y, 50%);
  opacity: 1;
  transition: none;
  animation: none !important;
  transform: translate(-50%, -50%) rotate(var(--eraser-rotate, -8deg));
}

/* Mobile/touch calm mode: keep the layout stable while swiping. */
@media (hover: none), (pointer: coarse) {
  .has-pointer .ambient-canvas {
    opacity: 0.74 !important;
  }

  .service-card,
  .motion-panel,
  .impact-item,
  .price-card,
  .contact-method,
  .profile-card,
  .legal-card,
  .support-pack,
  .hero-stage,
  .btn {
    transform: none !important;
  }

  .service-card.is-near,
  .motion-panel.is-near,
  .impact-item.is-near,
  .contact-method.is-near,
  .support-pack.is-near {
    transform: none !important;
    box-shadow:
      0 24px 80px rgba(16, 42, 67, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .service-card::after,
  .motion-panel::after,
  .impact-item::after,
  .contact-method::after,
  .support-pack::after {
    opacity: 0 !important;
  }

  .sketch-pad:hover,
  .support-pack:hover {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .services .service-card {
    height: 12rem;
    min-height: 0;
    padding: 0.85rem;
  }

  .services .service-card h3 {
    font-size: clamp(0.98rem, 3.4vw, 1.16rem);
  }

  .services .service-card p {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .service-card:hover,
  .motion-panel:hover,
  .impact-item:hover,
  .price-card:hover,
  .contact-method:hover,
  .support-pack:hover,
  .service-card.is-near,
  .motion-panel.is-near,
  .impact-item.is-near,
  .contact-method.is-near,
  .support-pack.is-near {
    transform: none !important;
  }

  .service-card:active,
  .contact-method:active,
  .btn:active {
    transform: scale(0.985) !important;
  }
}

@media (max-width: 430px) {
  .services .service-grid {
    grid-template-columns: 1fr;
  }

  .services .service-card {
    height: auto;
    min-height: 9.8rem;
  }
}

/* Final mobile tuning: calmer hero, readable text, no touch-scroll jumping. */
@media (max-width: 900px) {
  .cursor-spotlight,
  .hero-splash,
  .edge-word {
    display: none !important;
  }

  .ambient-canvas,
  .has-pointer .ambient-canvas {
    opacity: 0.16 !important;
    mix-blend-mode: normal;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero.section-band {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6.6rem 1rem 3rem;
    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 38rem;
  }

  .hero-title {
    max-width: 8.7ch;
    font-size: clamp(3rem, 16vw, 4.95rem);
    line-height: 0.92;
  }

  .hero-text {
    max-width: 34rem;
    padding: 0.72rem 0.84rem;
    border: 1px solid rgba(30, 136, 200, 0.10);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.10);
    backdrop-filter: blur(12px);
  }

  .hero-actions {
    position: relative;
    z-index: 7;
  }

  .hero-stage,
  .hero-stage.reveal,
  .hero-stage.reveal.is-visible {
    position: relative;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: min(25rem, 92vw);
    min-height: 16rem;
    margin: 1.15rem auto 0;
    opacity: 0.34 !important;
    pointer-events: none;
    transform: translateX(-50%) !important;
  }

  .hero-stage .device-card,
  .hero-stage .code-window,
  .hero-stage .phone-card {
    box-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
  }

  .marquee-track {
    animation-duration: 96s !important;
  }

  .glitch::before,
  .glitch::after {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .hero.section-band {
    padding-inline: 0.9rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(2.85rem, 15.5vw, 4.25rem);
  }

  .hero-stage {
    width: min(22rem, 90vw);
    min-height: 14rem;
    opacity: 0.30 !important;
  }
}

/* Phone layout: separate from desktop so the hero stays readable and smooth. */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .ambient-canvas,
  .cursor-pixel-canvas,
  .cursor-spotlight,
  .hero-stage,
  .hero-stage.reveal,
  .hero-stage.reveal.is-visible,
  .hero-splash,
  .edge-word {
    display: none !important;
  }

  .site-header {
    position: fixed !important;
    z-index: 50;
    height: 7.35rem;
    padding: 0;
    pointer-events: none;
  }

  .site-header .brand {
    position: fixed;
    top: 0.65rem;
    left: 0.85rem;
    z-index: 52;
    width: 3.1rem;
    min-width: 3.1rem;
    min-height: 3.1rem;
    padding: 0.34rem;
    border: 1px solid rgba(30, 136, 200, 0.28);
    border-radius: 999px;
    pointer-events: auto;
    box-shadow:
      0 16px 42px rgba(16, 42, 67, 0.14),
      0 0 0 4px rgba(30, 136, 200, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .site-header .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .site-header .nav-pills {
    top: 4.35rem;
    left: 50% !important;
    width: calc(100vw - 1.5rem);
    max-width: 27rem;
    min-height: 2.85rem;
    padding: 0.28rem;
    gap: 0.12rem;
    transform: translateX(-50%) !important;
    pointer-events: auto;
    border-color: rgba(30, 136, 200, 0.36);
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(18px);
  }

  .site-header .nav-pills a {
    min-height: 2.2rem;
    padding: 0 0.55rem;
    font-size: clamp(0.74rem, 3.25vw, 0.9rem);
  }

  .hero.section-band {
    min-height: auto;
    padding: 9.3rem 1rem 2.5rem;
    background:
      linear-gradient(180deg, rgba(234, 246, 252, 0.76), rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 1));
  }

  .hero.section-band::before,
  .hero.section-band::after {
    opacity: 0.22;
    animation: none !important;
    transform: none !important;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-logo {
    width: 4rem;
    margin-bottom: 1.4rem;
  }

  .hero-kicker {
    max-width: 19rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-title {
    max-width: 8.2ch;
    margin-top: 1rem;
    font-size: clamp(3.25rem, 16.2vw, 4.2rem);
    line-height: 0.93;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 1.2rem;
    padding: 0.85rem 0.9rem;
    color: rgba(16, 42, 67, 0.72);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 16px 38px rgba(16, 42, 67, 0.08);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.35rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3.5rem;
  }

  .floating-label,
  .wide-lane,
  .wide-device,
  .kinetic-shape {
    animation: none !important;
    transform: none !important;
  }

  .marquee {
    margin-top: 0;
  }
}

/* Mobile follow-up: logo and nav in one row, keep only the useful sketch moments. */
@media (max-width: 640px) {
  .site-header {
    height: 4.6rem;
  }

  .site-header .brand {
    top: 0.65rem;
    left: 0.75rem;
  }

  .site-header .nav-pills {
    top: 0.65rem;
    left: calc(50% + 2.35rem) !important;
    width: calc(100vw - 5rem);
    max-width: none;
    min-height: 3.1rem;
    padding: 0.3rem;
  }

  .site-header .nav-pills a {
    min-height: 2.35rem;
    padding: 0 0.42rem;
    font-size: clamp(0.68rem, 3vw, 0.82rem);
  }

  .hero.section-band {
    padding-top: 6rem;
  }

  .hero-text {
    font-size: clamp(1.02rem, 4.2vw, 1.18rem);
  }

  .wide-motion {
    display: none !important;
  }

  .scroll-showcase {
    width: 100%;
    min-height: auto !important;
    margin-left: 0;
    padding: 3rem 1rem 2rem;
  }

  .showcase-sticky {
    position: relative;
    display: grid;
    width: 100%;
    min-height: auto !important;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .showcase-copy h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .showcase-visual {
    display: grid;
    min-height: 22rem;
    place-items: center;
  }

  .support-pack {
    position: relative;
    top: auto;
    right: auto;
    width: min(20rem, 92vw);
    height: 22rem;
    opacity: 1;
    transform: none !important;
  }

  .support-pack .pack-screen,
  .support-pack .pack-line,
  .support-pack .pack-dot,
  .support-pack .pack-cap {
    opacity: 0.08;
    filter: blur(2px);
    transform: none;
  }

  .showcase-panels {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0.85rem;
    transform: none !important;
  }

  .motion-panel {
    min-height: 11rem;
  }

  .sketch-pad.is-erasing::after,
  .support-pack.is-erasing::after {
    display: none !important;
  }
}

/* Final loader and mobile alignment polish. */
.boot-shell {
  justify-items: center;
  text-align: center;
}

.boot-percent {
  width: 100%;
}

.boot-percent span {
  min-width: 0;
  text-align: center;
}

.boot-bar {
  display: block;
  margin-inline: auto;
}

.boot-sketch {
  display: none !important;
}

.people-sketch .line-spark {
  stroke: var(--wine-bright);
  stroke-width: 5;
}

@media (max-width: 640px) {
  .site-header .nav-pills {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    justify-items: stretch;
    gap: 0.08rem;
  }

  .site-header .nav-pills a {
    width: 100%;
    padding-inline: 0;
    text-align: center;
    justify-content: center;
    justify-items: center;
    white-space: nowrap;
  }

  .sketch-pad.is-erasing .sketch-line,
  .support-pack.is-erasing .net-line {
    animation: none !important;
  }
}


