:root {
  --black: #05060a;
  --panel: #090d15;
  --panel-soft: #101622;
  --cyan: #1fe3f2;
  --blue: #0a84ff;
  --violet: #7c4dff;
  --white: #ffffff;
  --muted: #b6bac8;
  --line: rgba(31, 227, 242, 0.23);
  --soft-line: rgba(255, 255, 255, 0.12);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(124, 77, 255, 0.18) 0%, transparent 34%),
    linear-gradient(102deg, transparent 42%, rgba(10, 132, 255, 0.22) 71%, rgba(31, 227, 242, 0.08) 100%),
    var(--black);
  font-family: Alata, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(31, 227, 242, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 227, 242, 0.075) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35));
  animation: grid-drift 28s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96) 0%, rgba(5, 6, 10, 0.64) 48%, rgba(5, 6, 10, 0.85) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 16px);
}

img,
video,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.section-shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(5, 6, 10, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 4px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 0 16px rgba(31, 227, 242, 0.52));
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-right: 46px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.mobile-index {
  display: none;
}

.button,
.ghost-button {
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  padding: 0 30px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  white-space: nowrap;
}

.button {
  position: relative;
  overflow: hidden;
  color: #02040a;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(31, 227, 242, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.38) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: button-sheen 4.8s ease-in-out infinite;
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(31, 227, 242, 0.48);
}

.button svg,
.ghost-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 40px;
  padding-inline: 22px;
  font-size: 13px;
}

.button-small svg {
  display: none;
}

.ghost-button {
  color: var(--white);
  border-color: var(--line);
  background: rgba(10, 132, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-block: 74px 72px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(56px, 7.1vw, 106px);
  line-height: 0.93;
}

h1 span,
h2 span,
.hero-text strong {
  color: transparent;
  background: linear-gradient(92deg, var(--cyan), var(--blue) 70%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 36px;
  color: #d8d8e1;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.showreel {
  position: relative;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(31, 227, 242, 0.16), rgba(124, 77, 255, 0.08)),
    rgba(8, 14, 24, 0.82);
  box-shadow: 0 24px 90px rgba(10, 132, 255, 0.23);
  animation: dashboard-float 7s ease-in-out infinite;
  transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0);
  transition: transform 220ms ease;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding-inline: 12px;
  color: var(--muted);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.dot,
.live-dot {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.red {
  background: #ff625c;
}

.amber {
  background: #ffbd44;
}

.green,
.live-dot {
  background: #32d74b;
}

.window-title {
  justify-self: center;
}

.live-dot {
  width: 10px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(31, 227, 242, 0.72);
  animation: live-pulse 1.5s ease-in-out infinite;
}

.live-label {
  color: var(--cyan);
  letter-spacing: 1px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 34vw, 395px);
  border-radius: 13px;
  background: #030710;
  border: 1px solid rgba(31, 227, 242, 0.24);
}

.media-frame::before,
.media-frame::after {
  position: absolute;
  z-index: 2;
  width: 36px;
  height: 36px;
  content: "";
  border-color: var(--cyan);
  border-style: solid;
}

.media-frame::before {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.media-frame::after {
  right: 10px;
  bottom: 10px;
  border-width: 0 2px 2px 0;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
  filter: saturate(1.12) contrast(1.06);
}

.media-frame::selection {
  background: transparent;
}

.video-lab {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(160px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  height: clamp(520px, 48vw, 650px);
  padding: 18px;
}

.phone-video {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(31, 227, 242, 0.34);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 0 46px rgba(31, 227, 242, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-video video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: #030710;
}

.phone-glow {
  position: absolute;
  inset: 18% -28% auto;
  height: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 227, 242, 0.26), transparent 66%);
  filter: blur(18px);
  animation: phone-glow 3.8s ease-in-out infinite;
}

.dashboard-stack {
  display: grid;
  grid-template-rows: 1.1fr 0.92fr 1fr;
  gap: 12px;
  min-width: 0;
  align-self: center;
}

.mini-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(31, 227, 242, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(140deg, rgba(31, 227, 242, 0.08), rgba(10, 132, 255, 0.08) 58%, rgba(124, 77, 255, 0.1)),
    rgba(3, 8, 17, 0.84);
}

.mini-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(31, 227, 242, 0.08), transparent);
  transform: translateX(-100%);
  animation: panel-scan 4.2s ease-in-out infinite;
}

.mini-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 12px;
  line-height: 1.22;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mini-panel strong {
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.chart-panel svg {
  width: 100%;
  height: 76px;
  margin-top: 10px;
  overflow: visible;
}

.chart-base,
.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-base {
  stroke: rgba(31, 227, 242, 0.13);
  stroke-width: 12;
}

.chart-line {
  stroke: url("#unused");
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  filter: drop-shadow(0 0 10px rgba(31, 227, 242, 0.7));
  animation: draw-chart 3.8s ease-in-out infinite;
}

.roas-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  column-gap: 14px;
}

.roas-panel span,
.roas-panel strong {
  grid-column: 1;
}

.roas-ring {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 82px;
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 38%, var(--blue) 38% 72%, rgba(255, 255, 255, 0.08) 72% 100%);
  animation: ring-spin 7s linear infinite;
}

.roas-ring i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #050914;
}

.bars-panel {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  align-items: end;
}

.bars-panel span,
.bars-panel strong {
  grid-column: 1;
}

.bars {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 96px;
}

.bars i {
  flex: 1;
  min-width: 10px;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 16px rgba(31, 227, 242, 0.25);
  transform-origin: bottom;
  animation: bar-grow 2.6s ease-in-out infinite;
}

.bars i:nth-child(2) {
  animation-delay: 130ms;
}

.bars i:nth-child(3) {
  animation-delay: 260ms;
}

.bars i:nth-child(4) {
  animation-delay: 390ms;
}

.bars i:nth-child(5) {
  animation-delay: 520ms;
}

.recording-pill {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(2, 5, 12, 0.82);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.recording-pill span {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  animation: live-pulse 1.2s ease-in-out infinite;
}

.recording-pill b {
  font: inherit;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 12px;
  border-radius: 12px;
  background: rgba(4, 7, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-strip div {
  min-width: 0;
  padding: 17px 18px;
  border-right: 1px solid var(--soft-line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip span,
.stage-card span,
.booking-form span,
.booking-form legend {
  display: block;
  color: var(--muted);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.metric-strip strong,
.stat strong,
.stage-card strong {
  display: block;
  color: var(--cyan);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.metric-strip strong {
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 29px);
}

.metric-strip div:nth-child(1) strong,
.metric-strip div:nth-child(2) strong {
  color: var(--cyan);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-block: 12px 112px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 10, 18, 0.76);
}

.stat {
  min-width: 0;
  padding: 36px 34px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.booking-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.96;
}

.section-heading p:not(.eyebrow),
.booking-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.truth-section,
.services,
.journey,
.visual-system,
.process,
.booking {
  padding-block: 86px;
}

.truth-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding-top: 34px;
}

.process {
  padding-block: 58px;
}

.truth-section h2,
.visual-copy h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 0.96;
  text-transform: uppercase;
}

.truth-section h2 span {
  color: transparent;
  background: linear-gradient(92deg, var(--cyan), var(--blue) 70%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.truth-grid article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 227, 242, 0.08), rgba(124, 77, 255, 0.08)),
    rgba(9, 13, 21, 0.82);
}

.truth-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.02), rgba(5, 6, 10, 0.2) 100%);
}

.truth-grid img,
.truth-grid video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.04);
  transition: transform 700ms ease, opacity 700ms ease;
}

.truth-grid article:hover img,
.truth-grid article:hover video {
  opacity: 0.96;
  transform: scale(1.1);
}

.test-matrix span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--violet);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.journey-feature {
  width: min(100% - 36px, 1280px);
}

.journey-feature .section-heading {
  max-width: 980px;
  margin-bottom: 46px;
}

.journey-feature .section-heading h2 {
  font-size: clamp(48px, 6.4vw, 88px);
}

.journey-feature .journey-panel {
  padding: 116px 46px 46px;
  box-shadow: 0 24px 86px rgba(10, 132, 255, 0.14);
}

.journey-feature .stage-card {
  min-height: 284px;
  background:
    linear-gradient(155deg, rgba(31, 227, 242, 0.08), rgba(124, 77, 255, 0.08)),
    rgba(8, 12, 22, 0.92);
}

.visual-system {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.testing-system {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.website-system {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(28px, 4vw, 50px);
}

.website-system::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 48%, rgba(31, 227, 242, 0.1), transparent 32%),
    radial-gradient(circle at 64% 56%, rgba(124, 77, 255, 0.12), transparent 34%);
}

.visual-card.website-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.visual-card.website-card video {
  min-height: 0;
  object-position: center;
}

.website-system .visual-copy {
  max-width: 500px;
}

.visual-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.leak-list,
.test-matrix {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.leak-list {
  grid-template-columns: repeat(2, 1fr);
}

.leak-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(31, 227, 242, 0.18);
  border-radius: 999px;
  color: #d7dbe8;
  background: rgba(31, 227, 242, 0.035);
  font-size: 15px;
  font-weight: 400;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(3, 7, 14, 0.84);
  box-shadow: 0 26px 90px rgba(10, 132, 255, 0.16);
}

.visual-card img,
.visual-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.visual-card:hover img,
.visual-card:hover video {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.08);
}

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 36%, rgba(3, 6, 12, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 6, 10, 0.54), transparent 48%);
}

.visual-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.visual-card strong {
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.visual-card span {
  max-width: 260px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.test-matrix {
  grid-template-columns: repeat(2, 1fr);
}

.test-matrix article {
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.test-matrix span {
  margin-bottom: 12px;
  color: var(--cyan);
}

.test-matrix strong {
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  grid-column: span 2;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 227, 242, 0.08), transparent 45%),
    rgba(12, 15, 23, 0.82);
}

.featured-card {
  background:
    linear-gradient(145deg, rgba(124, 77, 255, 0.22), transparent 52%),
    rgba(12, 15, 23, 0.84);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  margin-bottom: 26px;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(31, 227, 242, 0.1);
}

.icon-box svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.process-grid h3,
.stage-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.05;
}

.stage-card h3 {
  font-size: 22px;
}

.process-grid h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.service-card p,
.process-grid p,
.stage-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
  font-weight: 400;
}

.process-grid p {
  font-size: 15px;
  font-weight: 400;
}

.journey-panel {
  position: relative;
  padding: 104px 52px 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(10, 132, 255, 0.14), rgba(124, 77, 255, 0.1) 52%, rgba(5, 6, 10, 0.55)),
    rgba(7, 10, 18, 0.82);
}

.journey-panel::before {
  position: absolute;
  top: 44px;
  left: 36%;
  width: 44%;
  height: 80px;
  pointer-events: none;
  content: "";
  border-top: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
  border-top-left-radius: 100%;
  transform: skewX(-18deg);
}

.loop-label {
  position: absolute;
  top: 25px;
  left: 40%;
  z-index: 2;
  padding: 8px 15px;
  color: var(--violet);
  border: 1px solid var(--violet);
  border-radius: 999px;
  background: rgba(5, 6, 10, 0.94);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.stage-card {
  min-width: 0;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 12, 22, 0.88);
}

.stage-card:nth-child(n + 4) {
  border-color: rgba(124, 77, 255, 0.52);
}

.progress {
  width: 100%;
  height: 5px;
  margin: 18px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  transform-origin: left;
  animation: progress-sweep 2.8s ease-out both;
}

.stage-card strong {
  display: inline;
  font-size: 28px;
}

.stage-card small {
  color: var(--muted);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-grid article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: rgba(12, 15, 23, 0.58);
}

.process-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--violet);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 13px;
}

.process .section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.process .section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.process .section-heading {
  perspective: 900px;
}

.process .section-heading .eyebrow {
  display: inline-block;
  transform: translate3d(0, calc((1 - var(--process-pop, 0)) * 12px), 0) scale(calc(1 + var(--process-pop, 0) * 0.22)) rotateX(calc((1 - var(--process-pop, 0)) * 12deg));
  transform-origin: center center;
  text-shadow:
    0 calc(var(--process-pop, 0) * 10px) calc(var(--process-pop, 0) * 28px) rgba(31, 227, 242, 0.38),
    0 calc(var(--process-pop, 0) * 18px) calc(var(--process-pop, 0) * 54px) rgba(124, 77, 255, 0.28);
  transition: transform 120ms linear, text-shadow 120ms linear;
  will-change: transform;
}

.booking {
  display: grid;
  justify-items: center;
  gap: 34px;
  margin-bottom: 54px;
  padding-block: 92px;
}

.booking-copy {
  max-width: 840px;
  text-align: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 820px);
}

.contact-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(31, 227, 242, 0.22);
  border-radius: 999px;
  background: rgba(31, 227, 242, 0.045);
  font-size: 15px;
  font-weight: 500;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-actions a:hover {
  border-color: rgba(31, 227, 242, 0.58);
  background: rgba(31, 227, 242, 0.09);
  transform: translateY(-2px);
}

.contact-actions svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-form {
  display: grid;
  width: min(100%, 680px);
  gap: 22px;
}

.booking-form label {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 58px;
  padding: 0 2px;
  color: var(--white);
  border: 0;
  border-bottom: 2px solid rgba(31, 227, 242, 0.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: Alata, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.15;
  font-weight: 500;
  text-transform: none;
  appearance: none;
  -webkit-appearance: none;
  caret-color: var(--cyan);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--cyan);
  box-shadow: none;
}

.booking-form input:-webkit-autofill,
.booking-form input:-webkit-autofill:hover,
.booking-form input:-webkit-autofill:focus {
  border-bottom-color: var(--cyan);
  -webkit-text-fill-color: var(--white);
  box-shadow: 0 0 0 1000px #05060a inset;
  transition: background-color 9999s ease-out;
}

.booking-form input::selection {
  color: #02040a;
  background: var(--cyan);
}

.step-count {
  justify-self: center;
  color: var(--cyan);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.step-count span {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.wizard-step {
  display: none;
  gap: 28px;
}

.wizard-step.is-active {
  display: grid;
}

.booking-form fieldset {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-form legend {
  flex-basis: 100%;
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.booking-form fieldset label {
  cursor: pointer;
}

.booking-form fieldset input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.booking-form fieldset span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  background: rgba(31, 227, 242, 0.05);
}

.booking-form fieldset input:checked + span {
  color: #02040a;
  border-color: transparent;
  background: var(--cyan);
}

.booking-form button {
  justify-self: center;
  border: 0;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
  text-align: center;
}

.booking-form.is-complete .step-count,
.booking-form.is-complete .wizard-step {
  display: none;
}

.booking-form.is-complete .form-status {
  min-height: 92px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 34px 48px;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
}

.site-footer .brand {
  color: var(--white);
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  font-weight: 400;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease, border-color 240ms ease, box-shadow 240ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.service-card:hover,
.process-grid article:hover,
.stage-card:hover,
.truth-grid article:hover,
.test-matrix article:hover {
  border-color: rgba(31, 227, 242, 0.52);
  box-shadow: 0 18px 48px rgba(10, 132, 255, 0.12);
  transform: translateY(-4px);
}

@keyframes grid-drift {
  to {
    background-position: 64px 64px;
  }
}

@keyframes mark-pulse {
  0%,
  100% {
    box-shadow: 0 0 22px rgba(31, 227, 242, 0.58);
  }
  50% {
    box-shadow: 0 0 34px rgba(31, 227, 242, 0.9), 0 0 52px rgba(124, 77, 255, 0.26);
  }
}

@keyframes button-sheen {
  0%,
  55% {
    transform: translateX(-120%);
  }
  82%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes dashboard-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes phone-glow {
  0%,
  100% {
    opacity: 0.48;
    transform: translateY(0) scale(0.92);
  }
  50% {
    opacity: 0.9;
    transform: translateY(16px) scale(1.05);
  }
}

@keyframes panel-scan {
  0%,
  42% {
    transform: translateX(-100%);
  }
  72%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes draw-chart {
  0% {
    stroke-dashoffset: 320;
  }
  45%,
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -320;
  }
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bar-grow {
  0% {
    transform: scaleY(0.22);
    opacity: 0.68;
  }
  45%,
  75% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.44);
    opacity: 0.82;
  }
}

@keyframes progress-sweep {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
    padding-inline: 22px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin: -8px 0 14px;
    gap: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .showreel {
    width: min(100%, 620px);
  }

  .video-lab {
    height: clamp(560px, 78vw, 690px);
  }

  .stats,
  .truth-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .truth-section,
  .visual-system,
  .testing-system {
    grid-template-columns: 1fr;
  }

  .truth-section {
    gap: 28px;
  }

  .testing-card,
  .website-card {
    order: 2;
  }

  .testing-system .visual-copy,
  .website-system .visual-copy {
    order: 1;
  }

  .website-system {
    grid-template-columns: 1fr;
  }

  .visual-card.website-card {
    min-height: 0;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    grid-column: span 3;
  }

  .journey-panel {
    padding: 72px 22px 24px;
  }

  .journey-panel::before,
  .loop-label {
    display: none;
  }

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

  .visual-card {
    min-height: 360px;
  }

  .booking {
    padding-block: 72px;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding-block: 18px;
  }

  .brand {
    font-size: 23px;
    letter-spacing: 3px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .button-small {
    min-height: 36px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .nav-links {
    display: none;
  }

  .mobile-index {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-index summary {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(31, 227, 242, 0.06);
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    list-style: none;
    cursor: pointer;
  }

  .mobile-index summary::-webkit-details-marker {
    display: none;
  }

  .mobile-index summary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
  }

  .mobile-index[open] summary svg {
    transform: rotate(180deg);
  }

  .mobile-index-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    min-width: 190px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 10, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
  }

  .mobile-index-panel a {
    padding: 12px 14px;
    color: var(--muted);
    border-radius: 6px;
    font-size: 15px;
  }

  .mobile-index-panel a:hover {
    color: var(--white);
    background: rgba(31, 227, 242, 0.08);
  }

  .site-header .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 56px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero .eyebrow {
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-actions,
  .button,
  .ghost-button,
  .contact-actions a {
    width: 100%;
  }

  .media-frame {
    height: 310px;
  }

  .video-lab {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .phone-video {
    width: min(100%, 300px);
  }

  .dashboard-stack {
    grid-template-rows: auto;
  }

  .mini-panel {
    min-height: 132px;
  }

  .bars {
    height: 82px;
  }

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

  .metric-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .metric-strip div:last-child {
    border-bottom: 0;
  }

  .stats,
  .service-grid,
  .process-grid,
  .leak-list,
  .test-matrix,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-bottom: 64px;
  }

  .truth-section {
    display: none;
  }

  .truth-grid {
    display: none;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .service-card {
    grid-column: span 1;
  }

  .visual-system,
  .testing-system,
  .website-system {
    display: grid;
    gap: 18px;
  }

  .visual-system .visual-copy {
    display: contents;
  }

  .visual-system .visual-copy .eyebrow {
    order: 1;
    margin-bottom: -10px;
  }

  .visual-system .visual-copy h2 {
    order: 2;
  }

  .visual-system .visual-card,
  .testing-card,
  .website-card {
    order: 3;
  }

  .visual-system .visual-copy p:not(.eyebrow) {
    order: 4;
    margin-bottom: 0;
  }

  .visual-system .leak-list,
  .visual-system .test-matrix {
    order: 5;
    margin-top: 0;
  }

  .process .section-heading h2 {
    font-size: clamp(30px, 8.4vw, 42px);
  }

  .process .section-heading .eyebrow {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.95;
    letter-spacing: 0;
    text-align: center;
    transform-origin: center center;
  }

  .process-grid,
  .leak-list,
  .test-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card {
    min-height: 118px;
    padding: 14px;
    display: grid;
    align-content: start;
    gap: 10px;
    border-color: rgba(31, 227, 242, 0.16);
    background: rgba(12, 15, 23, 0.62);
  }

  .service-card .icon-box {
    width: 38px;
    margin-bottom: 0;
  }

  .service-card .icon-box svg {
    width: 20px;
    height: 20px;
  }

  .service-card h3 {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.05;
  }

  .service-card p {
    display: none;
  }

  .services,
  .truth-section,
  .visual-system,
  .process,
  .booking {
    padding-block: 58px;
  }

  .visual-card.website-card {
    min-height: 0;
  }

  .truth-section h2,
  .visual-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .visual-card {
    min-height: 300px;
  }

  .visual-card figcaption {
    display: grid;
  }

  .visual-card span {
    text-align: left;
  }

  .booking {
    padding-block: 64px;
  }

  .site-footer {
    display: grid;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
