/* ═══════════════════════════════════════════════════════════
   ACCELOD — Design System
   Brand tokens locked to brand kit. Do not introduce warm hues.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand palette (STRICT) */
  --navy-dark:   #0B1929;
  --navy-mid:    #1A3A5C;
  --cyan:        #00D4FF;
  --cyan-light:  #33E1FF;
  --white:       #FFFFFF;
  --white-muted: #B0BEC5;

  /* Derived surfaces */
  --navy-deeper: #070F1B;
  --surface:     #0F2136;
  --surface-2:   #132A44;
  --hairline:    rgba(0, 212, 255, .14);
  --hairline-2:  rgba(176, 190, 197, .10);

  --gradient:      linear-gradient(135deg, #0B1929 0%, #1A3A5C 40%, #00D4FF 100%);
  --gradient-text: linear-gradient(120deg, #33E1FF 0%, #00D4FF 45%, #7FEBFF 100%);
  --gradient-line: linear-gradient(90deg, transparent, var(--cyan), transparent);

  /* Type */
  --font-head: 'Outfit', 'Montserrat', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  /* Fluid type scale */
  --fs-h1:   clamp(2.5rem, 6.5vw, 5rem);
  --fs-h2:   clamp(2rem, 4.4vw, 3.35rem);
  --fs-h3:   clamp(1.15rem, 1.9vw, 1.45rem);
  --fs-lede: clamp(1.02rem, 1.5vw, 1.2rem);
  --fs-body: 1.0625rem;

  /* Rhythm — 4px base unit */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px;

  --r-card: 16px;
  --r-btn:  8px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(0,0,0,.3), 0 12px 32px -12px rgba(0,0,0,.55);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.3), 0 24px 56px -16px rgba(0,0,0,.65),
                 0 0 0 1px rgba(0,212,255,.22);
  --glow-cyan:   0 0 0 1px rgba(0,212,255,.3), 0 8px 32px -8px rgba(0,212,255,.4);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --max:  1200px;
  --nav-h: 88px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.024em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--cyan); color: var(--navy-dark); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -100px;
  transform: translateX(-50%);
  background: var(--cyan); color: var(--navy-dark);
  padding: 12px 20px; border-radius: 0 0 var(--r-btn) var(--r-btn);
  font-weight: 700; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* ─── Gradient text ─── */
.grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Eyebrow label ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--sp-5);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, .18);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,212,255,.22); opacity: 1; }
  50%      { box-shadow: 0 0 0 8px rgba(0,212,255,0);   opacity: .75; }
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  --btn-py: 14px; --btn-px: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-btn);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .935rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--sm { --btn-py: 10px; --btn-px: 18px; font-size: .82rem; }
.btn--lg { --btn-py: 17px; --btn-px: 34px; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0ABFEA 100%);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px -4px rgba(0,212,255,.5), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px rgba(0,212,255,.65), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(0,212,255,.35);
  background: rgba(0,212,255,.05);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  background: rgba(0,212,255,.12);
  color: var(--cyan-light);
  transform: translateY(-2px);
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .35s var(--ease), border-color .35s var(--ease),
              backdrop-filter .35s var(--ease), height .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  height: 72px;
  background: rgba(11, 25, 41, .82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  max-width: var(--max);
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
/* Uses the locally trimmed asset (1652x348, aspect 4.75). The original was a
   2048x2048 square that was 83% transparent padding, which is why any sane
   height rendered a tiny wordmark. */
.nav__logo img {
  height: 56px;
  width: auto;
  transition: height .35s var(--ease);
  filter: drop-shadow(0 2px 10px rgba(0, 212, 255, .3));
}
.nav.is-stuck .nav__logo img { height: 46px; }

.nav__links {
  display: flex;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  color: var(--white-muted);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--cyan); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-btn);
  border: 1px solid var(--hairline);
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  /* Fully opaque — a translucent panel let footer content read through it. */
  background: var(--navy-deeper);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, .8);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-5) clamp(20px, 5vw, 40px) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
  animation: slideDown .3s var(--ease);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white-muted);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--hairline-2);
}
.nav__mobile a:not(.btn):hover { color: var(--cyan); }
.nav__mobile .btn { margin-top: var(--sp-4); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-9);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%,  rgba(26,58,92,.55) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 80% 90%, rgba(0,212,255,.10) 0%, transparent 65%),
    var(--navy-dark);
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; text-align: center; }
.hero__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: var(--sp-5);
}
.hero__sub {
  font-size: var(--fs-lede);
  color: var(--white-muted);
  max-width: 60ch;
  margin: 0 auto var(--sp-7);
}
.hero__cta {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-8);
}
.hero__trust {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-5) var(--sp-6);
  justify-content: center;
  font-size: .9rem;
  color: var(--white-muted);
}
.hero__trust li { display: flex; align-items: center; gap: var(--sp-2); }
.hero__trust svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }

.hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
  pointer-events: none; z-index: 1;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,212,255,.22), transparent 70%);
  top: -12%; right: -8%;
  animation: drift 22s ease-in-out infinite;
}
.orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(26,58,92,.75), transparent 70%);
  bottom: -10%; left: -6%;
  animation: drift 28s ease-in-out infinite reverse;
}
.orb--3 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,212,255,.13), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 14s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 40px) scale(1.08); }
  66%      { transform: translate(30px, -30px) scale(.95); }
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .85; }
  50%      { transform: translate(-50%, -50%) scale(1.14); opacity: 1; }
}

/* ═══════════════ LOGO MARQUEE ═══════════════ */
.marquee-section {
  padding: var(--sp-7) 0;
  border-block: 1px solid var(--hairline-2);
  background: var(--navy-deeper);
}
.marquee__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white-muted);
  opacity: .75;
  margin-bottom: var(--sp-5);
}
.marquee {
  --gap: 88px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
/* Seamless loop: the track holds two identical sets. Translating a flat -50%
   leaves the inter-set gap unaccounted for, which is what made the strip jump
   at the end — hence the -50% minus half a gap. */
.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  animation: scroll-x 42s linear infinite;
}
.marquee__set {
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
/* Native on the dark section — no chips, no plates, in colour.
   The source marks are built for light backgrounds (cinch measured a mean
   luminance of 12, Sky 77, Nestle 93 against this canvas). The *-lit.png files
   are generated by litlogos.mjs, which remaps each logo's lightness into
   [0.58, 1] and lifts saturation — hue is preserved, so the brand colour
   survives while the mark stays legible on #070F1B. */
.marquee__chip {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 62px;
  min-width: 150px;
  transition: transform .35s var(--ease);
}
.marquee__track img {
  height: 46px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .88;
  transition: opacity .35s var(--ease), transform .35s var(--ease),
              filter .35s var(--ease);
}
.marquee__chip:hover img {
  opacity: 1;
  transform: scale(1.07);
  filter: drop-shadow(0 4px 16px rgba(0, 212, 255, .3));
}
@keyframes scroll-x {
  to { transform: translateX(calc(-50% - (var(--gap) / 2))); }
}

/* ═══════════════ SECTION SHELL ═══════════════ */
.section {
  position: relative;
  padding: clamp(var(--sp-9), 11vw, var(--sp-10)) 0;
  overflow: hidden;
}
.section--alt { background: var(--navy-deeper); }
.section--alt::before,
.section--alt::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--gradient-line);
  opacity: .5;
}
.section--alt::before { top: 0; }
.section--alt::after  { bottom: 0; }

.section__head {
  max-width: 62ch;
  margin: 0 auto clamp(var(--sp-7), 6vw, var(--sp-9));
  text-align: center;
}
.section__title {
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.section__lede {
  font-size: var(--fs-lede);
  color: var(--white-muted);
}
.section__cta { text-align: center; margin-top: var(--sp-8); }

.circuit-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(0,212,255,.06) 0, transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(0,212,255,.05) 0, transparent 28%),
    linear-gradient(rgba(0,212,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.028) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}

/* ═══════════════ PROCESS STEPS ═══════════════ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.steps__line {
  position: absolute;
  top: 44px; left: 12%; right: 12%;
  height: 1px;
  background: var(--gradient-line);
  opacity: .45;
}
.step {
  position: relative;
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(15,33,54,.35) 100%);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,.4);
  box-shadow: var(--shadow-lift);
}
.step__num {
  position: relative;
  width: 60px; height: 60px;
  margin: 0 auto var(--sp-5);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 0 6px rgba(11,25,41,1), 0 0 24px -4px rgba(0,212,255,.5);
}
.step__num span {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cyan);
}
.step__art {
  height: 120px;
  margin-bottom: var(--sp-5);
  display: grid; place-items: center;
}
.step__art img {
  max-height: 120px; width: auto;
  object-fit: contain;
  transition: transform .5s var(--ease);
}
.step:hover .step__art img { transform: scale(1.07) translateY(-3px); }
.step h3 {
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.step p { color: var(--white-muted); font-size: .965rem; }

/* ═══════════════ BENTO / SERVICE CARDS ═══════════════ */
/* 6-column track so cards tile without leaving orphan cells:
   row 1 = 4+2, row 2 = 2+2+2, row 3 = 6 */
.bento {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-5);
}
.card {
  position: relative;
  padding: var(--sp-6);
  background: linear-gradient(155deg, var(--surface-2) 0%, var(--surface) 55%, rgba(11,25,41,.9) 100%);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease);
}
/* row 1 = 4+2, row 2 = 2+2+2, row 3 = 3+3 */
.bento .card          { grid-column: span 2; }
.bento .card--feature { grid-column: span 4; }
.bento .card--half    { grid-column: span 3; }
.bento .card--full    { grid-column: span 6; }
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
              rgba(0,212,255,.11), transparent 42%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,.42);
  box-shadow: var(--shadow-lift);
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 50px; height: 50px;
  margin-bottom: var(--sp-5);
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(0,212,255,.16), rgba(0,212,255,.04));
  border: 1px solid rgba(0,212,255,.28);
  color: var(--cyan);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: var(--glow-cyan);
}
.card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-3);
}
.card p { color: var(--white-muted); font-size: .965rem; }
.card__tag {
  display: inline-block;
  margin-top: var(--sp-5);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.3);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ═══════════════ COMPARISON TABLE ═══════════════ */
.compare {
  max-width: 960px;
  margin-inline: auto;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
}
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  align-items: center;
}
.compare__head {
  background: var(--navy-deeper);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-5) var(--sp-6);
}
.compare__col--us { display: grid; place-items: center; }
.compare__col--us img {
  height: 40px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 212, 255, .3));
}
.compare__col--them {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white-muted);
  opacity: .7;
}
.compare__row {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--hairline-2);
  transition: background .25s var(--ease);
}
.compare__row:last-child { border-bottom: 0; }
.compare__row:hover { background: rgba(0,212,255,.035); }
.compare__feature strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 3px;
}
.compare__feature span {
  font-size: .885rem;
  color: var(--white-muted);
  line-height: 1.5;
}
.compare__col { display: grid; place-items: center; }

.tick, .cross {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.tick {
  background: rgba(0,212,255,.14);
  border: 1px solid rgba(0,212,255,.45);
  box-shadow: 0 0 16px -4px rgba(0,212,255,.45);
}
.tick::after {
  content: '';
  width: 11px; height: 6px;
  border-left: 2.2px solid var(--cyan);
  border-bottom: 2.2px solid var(--cyan);
  transform: rotate(-45deg) translateY(-1px);
}
.cross {
  background: rgba(176,190,197,.07);
  border: 1px solid rgba(176,190,197,.2);
}
.cross::before, .cross::after {
  content: '';
  position: absolute;
  width: 11px; height: 2px;
  background: var(--white-muted);
  opacity: .55;
}
.cross::before { transform: rotate(45deg); }
.cross::after  { transform: rotate(-45deg); }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease);
}
.quote:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,.4);
  box-shadow: var(--shadow-lift);
}
.quote__mark {
  width: 30px; height: 30px;
  color: var(--cyan);
  opacity: .3;
  margin-bottom: var(--sp-3);
}
.quote blockquote {
  flex: 1;
  font-size: 1.02rem;
  line-height: 1.62;
}
/* Attribution sits at the TOP of the card — face and name first, quote after. */
.quote figcaption {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--hairline-2);
}
.quote figcaption img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,212,255,.45);
  box-shadow: 0 0 0 4px rgba(0,212,255,.08);
  flex-shrink: 0;
}
.quote figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.quote figcaption span {
  display: block;
  font-size: .82rem;
  color: var(--cyan);
  line-height: 1.4;
}

/* ═══════════════ FOUNDER ═══════════════ */
.founder {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-9));
  align-items: center;
}
.founder__media { position: relative; }
.founder__glow {
  position: absolute;
  inset: -8% -8% -4%;
  background: radial-gradient(circle at 50% 45%, rgba(0,212,255,.2), transparent 68%);
  filter: blur(50px);
  pointer-events: none;
}
.founder__media img {
  position: relative;
  width: 100%;
  border-radius: var(--r-card);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}
.founder__body .section__title { text-transform: uppercase; }
.founder__body > p {
  color: var(--white-muted);
  margin-bottom: var(--sp-4);
}
.creds {
  display: grid;
  gap: var(--sp-3);
  margin: var(--sp-6) 0 var(--sp-7);
}
.creds li {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-left: 2px solid var(--cyan);
  border-radius: 0 var(--r-btn) var(--r-btn) 0;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.creds li:hover { transform: translateX(5px); background: var(--surface-2); }
.creds__mono {
  flex-shrink: 0;
  width: 46px;
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 500;
  color: var(--cyan);
  text-align: center;
}
.creds li strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
}
.creds li span:not(.creds__mono) {
  font-size: .855rem;
  color: var(--white-muted);
}

/* ═══════════════ BOOKING ═══════════════ */
.section--book {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,58,92,.5), transparent 70%),
    var(--navy-deeper);
  border-top: 1px solid var(--hairline);
}
.booking {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
  padding: var(--sp-3);
  background: linear-gradient(150deg, rgba(0,212,255,.13), rgba(26,58,92,.28));
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.8);
}
.booking iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--r-card);
  background: var(--white);
}
.booking__fallback { text-align: center; color: var(--white-muted); }
.booking__fallback a { color: var(--cyan); text-decoration: underline; }

/* ═══════════════ EMAIL CAPTURE ═══════════════ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.capture {
  position: relative;
  padding: clamp(var(--sp-8), 8vw, var(--sp-9)) 0;
  background:
    radial-gradient(ellipse 70% 100% at 15% 50%, rgba(0, 212, 255, .10), transparent 65%),
    var(--navy-dark);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.capture::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000, transparent 70%);
  pointer-events: none;
}
.capture__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  align-items: center;
}
.capture__title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.capture__copy > p {
  color: var(--white-muted);
  max-width: 46ch;
}

.capture__form { display: grid; gap: var(--sp-3); }
.field { position: relative; }
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.capture__form input {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-btn);
  transition: border-color .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease);
}
.capture__form input::placeholder { color: var(--white-muted); opacity: .65; }
.capture__form input:hover { border-color: rgba(0, 212, 255, .3); }
.capture__form input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0, 212, 255, .06);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, .15);
}
.capture__form input[aria-invalid="true"] {
  border-color: #FF6B7A;
  box-shadow: 0 0 0 3px rgba(255, 107, 122, .14);
}
.capture__form .btn { width: 100%; margin-top: var(--sp-2); }
.capture__form .btn[disabled] { opacity: .6; cursor: progress; }

.capture__status {
  min-height: 1.2em;
  font-size: .9rem;
  font-family: var(--font-mono);
  letter-spacing: .01em;
}
.capture__status.is-error   { color: #FF8A96; }
.capture__status.is-success { color: var(--cyan); }
.capture__small {
  font-size: .8rem;
  color: var(--white-muted);
  opacity: .7;
}

/* Success state replaces the form body. */
.capture__form.is-done .field,
.capture__form.is-done .btn,
.capture__form.is-done .capture__small { display: none; }
.capture__form.is-done .capture__status {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  padding: var(--sp-5);
  text-align: center;
  border: 1px solid rgba(0, 212, 255, .35);
  border-radius: var(--r-card);
  background: rgba(0, 212, 255, .07);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--navy-deeper);
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-7);
  padding-block: var(--sp-9) var(--sp-8);
}
.footer__brand img {
  height: 68px; width: auto; margin-bottom: var(--sp-5);
  filter: drop-shadow(0 2px 12px rgba(0, 212, 255, .28));
}
.footer__brand p {
  color: var(--white-muted);
  font-size: .93rem;
  max-width: 34ch;
  margin-bottom: var(--sp-5);
}
.socials { display: flex; gap: var(--sp-3); }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  color: var(--white-muted);
  transition: all .3s var(--ease);
}
.socials a svg { width: 19px; height: 19px; }
.socials a:hover {
  color: var(--navy-dark);
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(0,212,255,.55);
}

.footer__col { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col h4 {
  font-size: .78rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--sp-2);
}
.footer__col a:not(.btn) {
  color: var(--white-muted);
  font-size: .93rem;
  width: fit-content;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__col a:not(.btn):hover { color: var(--cyan); transform: translateX(3px); }
.footer__cta { margin-top: var(--sp-3); }

.footer__bar {
  border-top: 1px solid var(--hairline-2);
  padding-block: var(--sp-5);
}
.footer__bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  align-items: center;
}
.footer__bar p { font-size: .84rem; color: var(--white-muted); opacity: .8; }
.footer__mono {
  font-family: var(--font-mono);
  font-size: .74rem !important;
  letter-spacing: .06em;
}

/* ═══════════════ FLOATING CTA ═══════════════ */
.fab {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--cyan), #0ABFEA);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  box-shadow: 0 10px 32px -8px rgba(0,212,255,.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.9);
  transition: all .4s var(--ease);
}
.fab svg { width: 17px; height: 17px; }
.fab.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(0,212,255,.85); }

/* ═══════════════ SCROLL REVEAL ═══════════════ */
/* Scoped to .js so content stays visible if JavaScript fails or is blocked. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease) var(--d, 0s),
              transform .8s var(--ease) var(--d, 0s);
}
.js .reveal.in-view { opacity: 1; transform: none; }

/* ═══════════════ VIEWPORT UTILITIES ═══════════════ */
/* Add to any element to drop it at one breakpoint.
   e.g. <section class="section hide-mobile" id="why">
   Note: hidden content is still downloaded and still crawled by Google —
   this changes what people see, not page weight or indexing. */
@media (max-width: 720px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 721px) {
  .hide-desktop { display: none !important; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .capture__inner { grid-template-columns: 1fr; }
  .steps, .quotes { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card,
  .bento .card--feature,
  .bento .card--half    { grid-column: span 1; }
  .bento .card--full    { grid-column: span 2; }
  .steps__line { display: none; }
  .founder { grid-template-columns: 1fr; }
  .founder__media { max-width: 400px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions { margin-left: auto; }
  .nav__actions .btn { display: none; }
}

@media (max-width: 720px) {
  :root { --nav-h: 76px; }
  .nav__logo img { height: 46px; }
  .nav.is-stuck { height: 64px; }
  .nav.is-stuck .nav__logo img { height: 40px; }
  .marquee { --gap: 28px; }
  .marquee__chip { height: 52px; min-width: 110px; }
  .marquee__track img { height: 34px; max-width: 120px; }
  .footer__brand img { height: 56px; }

  .steps, .quotes { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento .card,
  .bento .card--feature,
  .bento .card--half,
  .bento .card--full { grid-column: span 1; }

  .hero { min-height: auto; padding-block: calc(var(--nav-h) + var(--sp-8)) var(--sp-9); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { gap: var(--sp-3) var(--sp-5); font-size: .85rem; }

  /* Comparison table → stacked cards */
  .compare__head { display: none; }
  .compare__row {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding: var(--sp-5);
  }
  .compare__col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-2) var(--sp-3);
    background: var(--navy-deeper);
    border-radius: var(--r-btn);
  }
  .compare__col::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white-muted);
  }

  .footer__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer__brand { grid-column: span 1; }
  .footer__bar .container { flex-direction: column; text-align: center; }

  .booking { padding: var(--sp-2); }
  .booking iframe { min-height: 640px; }

  .fab span { display: none; }
  .fab { padding: 15px; bottom: 16px; right: 16px; }
}

/* ═══════════════ ACCESSIBILITY ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__canvas { display: none; }
}

@media print {
  .nav, .fab, .hero__canvas, .orb, .booking { display: none; }
  body { background: #fff; color: #000; }
}
