/* ============================================================
   PRYME MEDIA — premium organic social agency
   Type: Clash Display (display) + General Sans (body)
   ============================================================ */

:root {
  --bg: #0A0E1A;
  --bg-soft: #0F1320;
  --bg-elev: #131A2C;
  --bg-alt: #0F1320;
  --teal: #2DD4BF;
  --teal-dim: #1FA193;
  --white: #FFFFFF;
  --muted: #94A3B8;
  --muted-dim: #5C6A82;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --teal-glow: rgba(45, 212, 191, 0.35);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Motion system — one cohesive easing language */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);      /* out-quint: entrances, hovers, UI */
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1); /* in-out-quart: wipes & reveals */
  --t-fast: 0.3s;
  --t-base: 0.45s;
  --t-slow: 0.85s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Lock the layout viewport: clip (not hidden) truncates horizontal
     overflow WITHOUT creating a pannable scroll region — off-screen
     decor (hero watermark, ghosts, canvases) can no longer widen the page */
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "General Sans", ui-sans-serif, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  letter-spacing: -0.01em;
}

@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; } /* legacy fallback */
}

@media (pointer: coarse) {
  /* Touch devices: gestures may only pan vertically (or pinch-zoom) —
     eliminates any horizontal drift while swiping. Desktop unaffected. */
  html, body { touch-action: pan-y pinch-zoom; }
}

/* Subtle ambient teal aura that lives behind the page */
body::before {
  content: "";
  position: fixed;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
.display {
  font-family: "Clash Display", "General Sans", sans-serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-family: "General Sans", sans-serif;
  font-weight: 540;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
  opacity: 0.7;
}

.lede {
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  max-width: 38ch;
  letter-spacing: -0.01em;
}

.teal { color: var(--teal); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  font-family: "General Sans", sans-serif;
  font-weight: 560;
  font-size: 15px;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 100px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-teal {
  background: var(--teal);
  color: #04221E;
  padding: 15px 28px;
  box-shadow: 0 0 0 rgba(45, 212, 191, 0);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px var(--teal-glow);
}
.btn-teal .arrow { transition: transform 0.45s var(--ease); }
.btn-teal:hover .arrow { transform: translateX(4px); }

.btn-sm { padding: 11px 22px; font-size: 14px; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  padding: 14px 26px;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-center {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 480;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; }

.menu-toggle, .mobile-menu { display: none; }

@media (max-width: 767px) {
  .nav-center { display: none; }
  .header-cta .btn { display: none; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
  }
  .menu-toggle .mt-bar {
    display: block;
    width: 100%;
    height: 1.6px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  .menu-toggle[aria-expanded="true"] .mt-bar:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .mt-bar:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .mt-bar:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Absolutely positioned so it contributes ZERO height to the fixed header —
       otherwise the header's .scrolled background/blur stretches over the
       menu's reserved space and shows as a ghost panel when closed */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 24px 22px;
    background: rgba(10, 14, 26, 0.97);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.3s;
  }
  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
  }
  .mm-link {
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 520;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .mm-link:hover { color: var(--teal); }
  .mm-cta { margin-top: 18px; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: clamp(86px, 9vh, 124px);
  background: transparent;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  margin-bottom: 38px;
  letter-spacing: 0;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  position: relative;
}
.hero-badge .pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: clamp(40px, 10.5vw, 150px);
  margin-bottom: 36px;
}
.hero-title .l1 { display: block; color: var(--teal); }
.hero-title .l2 { display: block; color: var(--white); }

/* ---- Hero background video (fixed layer behind all content) ---- */
.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
  /* soft edge-fade so the clip melts into the navy with no hard borders */
  -webkit-mask-image: radial-gradient(120% 100% at 50% 45%, #000 36%, rgba(0,0,0,0.4) 66%, transparent 87%);
  mask-image: radial-gradient(120% 100% at 50% 45%, #000 36%, rgba(0,0,0,0.4) 66%, transparent 87%);
}
@media (max-width: 760px) {
  .hero-video { opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-glow {
  position: absolute;
  top: 28%;
  left: 8%;
  width: 56vw;
  height: 56vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle at 38% 42%, rgba(45, 212, 191, 0.18), rgba(45, 212, 191, 0.06) 38%, transparent 66%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowDrift 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroGlowDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50%  { transform: translate3d(6vw, 3vh, 0) scale(1.12); opacity: 1; }
  100% { transform: translate3d(-3vw, -2vh, 0) scale(1.04); opacity: 0.8; }
}
.hero .wrap { position: relative; z-index: 2; }

/* ---- Ghost P-mark watermark ---- */
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -7vw;
  transform: translateY(-50%);
  height: min(132vh, 1180px);
  width: auto;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 760px) {
  /* P readable, slightly wider than the screen: both edges bleed a little,
     centered horizontally, behind the headline */
  .hero-watermark {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 116vw;
    max-height: none;
    opacity: 0.045;
  }
}

/* ---- Living aurora ---- */
.hero-aurora {
  position: absolute;
  inset: -10% -5% 0 -5%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  filter: blur(40px) saturate(120%);
  opacity: 0.9;
}
.hero-aurora .aur {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.aur-1 {
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  left: 2%; top: 14%;
  background: radial-gradient(circle at 50% 50%, rgba(45,212,191,0.42), transparent 62%);
  animation: aurDrift1 19s ease-in-out infinite alternate;
}
.aur-2 {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  left: 30%; top: 2%;
  background: radial-gradient(circle at 50% 50%, rgba(56,236,212,0.30), transparent 60%);
  animation: aurDrift2 23s ease-in-out infinite alternate;
}
.aur-3 {
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  left: 14%; top: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(31,161,147,0.34), transparent 64%);
  animation: aurDrift3 27s ease-in-out infinite alternate;
}
@keyframes aurDrift1 {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(8vw,4vh,0) scale(1.18); }
}
@keyframes aurDrift2 {
  0%   { transform: translate3d(0,0,0) scale(1.05); }
  100% { transform: translate3d(-7vw,5vh,0) scale(0.9); }
}
@keyframes aurDrift3 {
  0%   { transform: translate3d(0,0,0) scale(0.95); }
  100% { transform: translate3d(6vw,-4vh,0) scale(1.2); }
}

/* ---- Site-wide signal-propagation network (fixed, behind all content) ---- */
.net-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.revealed .net-canvas { opacity: 0.82; }

/* ---- Hero load sequence ---- */
.hi { opacity: 0; }
.revealed .hi {
  animation: heroRise 0.9s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.13s + 0.15s);
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Letter-split headline ---- */
.hero-title .split {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.hero-title .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.62em) rotate(6deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.hero-title .ltr.space { width: 0.28em; }
.revealed .hero-title .ltr {
  animation: letterIn 0.74s var(--ease) forwards;
  animation-delay: calc(var(--l) * 0.035s + 0.25s);
}
@keyframes letterIn {
  0%   { opacity: 0; transform: translateY(0.62em) rotate(6deg); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hi { opacity: 1; }
  .revealed .hi { animation: none; }
  .hero-title .ltr { opacity: 1; transform: none; }
  .revealed .hero-title .ltr { animation: none; }
  .hero-glow, .hero-aurora .aur { animation: none; }
}

/* ---- Scroll cue ---- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--muted);
  opacity: 0;
  z-index: 2;
  animation: none;
}
.revealed .scroll-cue { animation: cueFade 1s var(--ease) 1.6s forwards; }
@keyframes cueFade { to { opacity: 1; } }
.scroll-cue-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.scroll-cue-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  transition: border-color 0.3s var(--ease);
}
.scroll-cue:hover .scroll-cue-mouse { border-color: var(--teal); }
.scroll-cue-dot {
  width: 4px;
  height: 7px;
  border-radius: 4px;
  background: var(--teal);
  animation: cueBounce 1.8s var(--ease) infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  40%      { transform: translateY(8px); opacity: 1; }
}
@media (max-width: 720px), (max-height: 780px) { .scroll-cue { display: none; } }
/* ---- Mobile swipe cue (touch counterpart of the desktop SCROLL mouse) ---- */
.swipe-cue {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  text-decoration: none;
  opacity: 0;
  animation: none;
}
.revealed .swipe-cue { animation: cueFade 1s var(--ease) 1.6s forwards; }
@media (max-width: 720px) { .swipe-cue { display: flex; } }
.swipe-cue-track {
  position: relative;
  width: 22px;
  height: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.swipe-cue-chev {
  color: var(--muted);
  animation: swipeDrift 2.2s ease-in-out infinite;
}
@keyframes swipeDrift {
  0%       { transform: translateY(14px); opacity: 0; }
  30%      { opacity: 0.9; }
  60%      { transform: translateY(-10px); opacity: 0; }
  100%     { transform: translateY(-10px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .swipe-cue { opacity: 1; animation: none; }
  .swipe-cue-chev { animation: none; transform: none; opacity: 0.8; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { opacity: 1; animation: none; }
  .scroll-cue-dot { animation: none; }
}
/* Lighten the heaviest hero GPU layers on phones for buttery scroll */
@media (max-width: 760px) {
  .hero-aurora { filter: blur(46px) saturate(115%); opacity: 0.66; }
  .aur-3 { display: none; }
}

.hero-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-sub .lede { max-width: 46ch; }

/* ============================================================
   SHARED SECTION RHYTHM
   ============================================================ */
.sec {
  padding-block: clamp(96px, 14vh, 180px);
  position: relative;
}
.sec.alt-bg { background: rgba(255, 255, 255, 0.016); }
.sec { border-block: 1px solid transparent; }
.sec.alt-bg { border-block-color: var(--line-soft); }

/* Oversized ghost numeral that breaks the grid */
.ghost-num {
  position: absolute;
  top: clamp(40px, 7vh, 96px);
  right: clamp(-20px, -1vw, 0px);
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(180px, 34vw, 460px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  will-change: transform;
}
.ghost-num.seq-ghost { top: clamp(40px, 7vh, 96px); }
.sec-head { max-width: 760px; margin-bottom: clamp(52px, 8vh, 88px); }
.sec-head .eyebrow { margin-bottom: 26px; }
.sec-title {
  font-size: clamp(40px, 6.5vw, 86px);
  margin-bottom: 0;
}
.sec-head .lede { margin-top: 26px; }

/* Right-aligned section head for asymmetry */
.sec-head-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.sec-head-right .eyebrow { flex-direction: row-reverse; }
.sec-head-right .eyebrow::before { width: 28px; }
.sec-head-right .lede { margin-left: auto; }
@media (max-width: 720px) {
  .sec-head-right { text-align: left; }
  .sec-head-right .eyebrow { flex-direction: row; }
}

/* ============================================================
   PROBLEM — stat rows
   ============================================================ */
.problem { position: relative; border-top: 1px solid var(--line-soft); }
.stat-num .count { font-variant-numeric: tabular-nums; }
.stat-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 5vh, 56px) 0;
  border-bottom: 1px solid var(--line);
}
.stat-num {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
}
.stat-num .unit { color: var(--teal); }
.stat-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 48ch;
  padding: clamp(20px, 2.6vw, 28px) clamp(22px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.012);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.stat-copy:hover {
  border-color: rgba(45, 212, 191, 0.5);
  background: rgba(45, 212, 191, 0.04);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.2), 0 12px 40px -12px rgba(45, 212, 191, 0.35);
  transform: translateY(-2px);
}
.stat-copy strong { color: var(--white); font-weight: 540; }

/* ============================================================
   SOLUTION — three pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pillar {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 38px 34px 42px;
  background: linear-gradient(180deg, #161B26, #11151E);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 384px;
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pillar:hover {
  border-color: rgba(45,212,191,0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(45,212,191,0.2), 0 20px 54px -16px rgba(45,212,191,0.35), 0 18px 44px -22px rgba(0, 0, 0, 0.7);
}
.pillar-idx {
  font-family: "Clash Display", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  display: block;
}
.pillar-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--teal);
  margin-bottom: 26px;
}
.pillar-icon-img {
  width: 70px; height: 70px;
  margin-bottom: 26px;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  outline: none;
  display: block;
}
.pillar-icon-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.pillar-body { margin-top: auto; }
.pillar h3 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  white-space: nowrap;
}
/* Fixed-height reveal so all three cards expand by the EXACT same amount */
.pillar-desc {
  height: 0;
  overflow: hidden;
  transition: height 0.55s var(--ease);
}
.pillar-desc > p {
  color: var(--muted);
  font-size: 16px;
  margin: 16px 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.55s var(--ease);
}
.pillar:hover .pillar-desc,
.pillar:focus-within .pillar-desc {
  height: 124px;
}
.pillar:hover .pillar-desc > p,
.pillar:focus-within .pillar-desc > p {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none), (max-width: 720px) {
  /* Touch / small screens: always show the description */
  .pillar { height: auto; min-height: 0; }
  .pillar-desc { height: auto; }
  .pillar-desc > p { opacity: 1; transform: none; }
}

/* ============================================================
   HOW IT WORKS — vertical process w/ drawing line
   ============================================================ */
.steps {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.steps-track {
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--line);
}
@media (min-width: 760px) {
  .steps-track { left: 50%; transform: translateX(-50%); }
}
.steps-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--teal), var(--teal-dim));
  box-shadow: 0 0 18px var(--teal-glow);
  transition: height 0.1s linear;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: clamp(40px, 7vh, 76px);
}
.step:last-child { padding-bottom: 0; }
.step-node {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  display: grid; place-items: center;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--muted);
  z-index: 2;
  transition: all 0.5s var(--ease);
}
.step.lit .step-node {
  border-color: var(--teal);
  background: var(--teal);
  color: #04221E;
  transform: scale(1.07);
  box-shadow: 0 0 0 6px rgba(45,212,191,0.10), 0 0 38px -6px var(--teal-glow);
}
.step-body { padding-top: 8px; }
.step-kicker { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 8px; }
.step h3 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step p { color: var(--muted); max-width: 44ch; }

@media (min-width: 760px) {
  .steps { max-width: 920px; }
  .step {
    grid-template-columns: 1fr 56px 1fr;
    align-items: center;
    gap: 0;
  }
  .step .step-node { grid-column: 2; margin-inline: auto; }
  .step .step-body { width: 100%; }
  .step:nth-child(odd) .step-body { grid-column: 1; text-align: right; padding-right: 44px; padding-top: 0; }
  .step:nth-child(odd) .step-kicker,
  .step:nth-child(odd) p { margin-left: auto; }
  .step:nth-child(even) .step-body { grid-column: 3; padding-left: 44px; padding-top: 0; }
}

/* ============================================================
   WHY IT WORKS — big data points
   ============================================================ */
.why { background: rgba(255, 255, 255, 0.022); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.why-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(36px, 5vw, 60px);
  background: linear-gradient(155deg, rgba(45,212,191,0.05), rgba(255,255,255,0));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.why-card:hover {
  border-color: rgba(45,212,191,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px var(--teal-glow);
}
.why-stat {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--teal);
  margin-bottom: 20px;
}
.why-card p { color: var(--muted); font-size: clamp(16px, 1.7vw, 20px); max-width: 34ch; }
.why-card p strong { color: var(--white); font-weight: 540; }
.why-note {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(45,212,191,0.05), rgba(255,255,255,0));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
  padding: clamp(30px, 4vw, 46px) clamp(36px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 480;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.why-note .ic { color: var(--teal); flex: none; }
.why-note:hover {
  border-color: rgba(45,212,191,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px var(--teal-glow);
}
.why-note .ic-img { width: 70px; height: 70px; object-fit: contain; }
.why-note strong { color: var(--teal); font-weight: 560; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { text-align: center; overflow: hidden; }
.guarantee-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
/* Single large subtle constellation ring framing the whole guarantee content */
.guarantee-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(560px, 90vw, 960px);
  height: clamp(560px, 90vw, 960px);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.guarantee-ring svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: ringspin 52s linear infinite;
}
@keyframes ringspin {
  to { transform: rotate(360deg); }
}
.guarantee-seal,
.guarantee .eyebrow,
.guarantee h2,
.guarantee .lede { position: relative; z-index: 1; }
.guarantee .eyebrow { justify-content: center; margin-bottom: 34px; }
.guarantee .eyebrow::after {
  content: "";
  width: 28px; height: 1px; background: var(--teal); opacity: 0.7;
}
.guarantee h2 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.guarantee h2 em { font-style: normal; color: var(--teal); }
.guarantee .lede {
  margin: 34px auto 0;
  max-width: 50ch;
  font-size: clamp(17px, 2vw, 21px);
}
.guarantee-seal {
  width: clamp(116px, 16vw, 168px);
  height: clamp(116px, 16vw, 168px);
  margin: 40px auto 16px;
  display: grid; place-items: center;
  position: relative;
  color: var(--teal);
}
.guarantee-seal .seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: shieldGlow 2.6s ease-in-out infinite;
}
@keyframes shieldGlow {
  0%, 100% { filter: drop-shadow(0 0 3px var(--shield-glow-soft, rgba(45, 212, 191, 0.14))); }
  50% { filter: drop-shadow(0 0 10px var(--shield-glow-peak, rgba(45, 212, 191, 0.32))); }
}

/* ---- Shield: next-level effect layers ---- */
.shield-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  perspective: 620px;
  animation: shieldFloat 4.6s ease-in-out infinite;
}
@keyframes shieldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.shield-shadow {
  position: absolute;
  left: 50%;
  bottom: -7%;
  width: 56%;
  height: 11%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(45,212,191,0.22), rgba(45,212,191,0) 70%);
  filter: blur(5px);
  pointer-events: none;
  animation: shieldShadow 4.6s ease-in-out infinite;
}
@keyframes shieldShadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50% { transform: translateX(-50%) scale(0.82); opacity: 0.5; }
}
.shield-tilt {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease);
  will-change: transform;
}
.shield-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
/* Light sweep across the glass — masked to the shield silhouette */
.shield-sweep,
.shield-flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: url("assets/icon-shield.png");
  mask-image: url("assets/icon-shield.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mix-blend-mode: screen;
}
.shield-sweep {
  background: linear-gradient(115deg, transparent 8%, rgba(160,255,244,0.18) 50%, transparent 92%);
  background-size: 260% 260%;
  background-position: 160% 160%;
  animation: shieldSweep 7s ease-in-out infinite;
}
@keyframes shieldSweep {
  0% { background-position: 160% 160%; }
  22% { background-position: -60% -60%; }
  100% { background-position: -60% -60%; }
}
/* One-time ignite flare when the shield reveals into view */
.shield-flash {
  background: radial-gradient(circle at 50% 56%, rgba(125,245,228,0.85), rgba(45,212,191,0) 64%);
  opacity: 0;
}
.guarantee-seal.in .shield-flash {
  animation: shieldIgnite 1.2s ease-out 0.25s 1;
}
@keyframes shieldIgnite {
  0% { opacity: 0; }
  28% { opacity: 0.9; }
  100% { opacity: 0; }
}
/* Rim spark removed */
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   PROOF — placeholder testimonials / case studies
   ============================================================ */
.proof { border-top: 1px solid var(--line-soft); }
.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.proof-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.proof-card:hover, .case-card:hover { border-color: rgba(45,212,191,0.35); transform: translateY(-3px); }
.proof-quote {
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: auto;
}
.proof-quote .ph { color: var(--muted-dim); }
.proof-mark {
  font-family: "Clash Display", sans-serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 18px;
  display: block;
  height: 30px;
}
.proof-person {
  display: flex; align-items: center; gap: 14px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.proof-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  flex: none;
}
.proof-person .pn { font-weight: 540; font-size: 15px; }
.proof-person .pr { color: var(--muted); font-size: 13.5px; }

.case-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.case-stat { }
.case-stat .cn {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
}
.case-stat .cl { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.case-divider { height: 1px; background: var(--line); }
.proof-foot {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-dim);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.cta {
  position: relative;
  padding-top: clamp(96px, 14vh, 170px);
  padding-bottom: clamp(96px, 14vh, 170px);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 100%; max-width: 1100px; height: 460px;
  background: radial-gradient(ellipse at center top, rgba(45,212,191,0.10), transparent 70%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.cta-copy { position: sticky; top: 120px; }
.cta-copy h2 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 24px 0 26px;
}
.cta-copy h2 em { font-style: normal; color: var(--teal); }
.cta-copy .lede { max-width: 40ch; }
.cta-points { margin-top: 38px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
@media (max-width: 560px) {
  .cta-points { grid-template-columns: 1fr; }
}
.cta-point {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 15.5px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(45,212,191,0.05), rgba(255,255,255,0));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cta-point:hover {
  border-color: rgba(45,212,191,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px var(--teal-glow);
  -webkit-text-stroke: 0.9px currentColor;
  text-stroke: 0.9px currentColor;
}
.cta-point svg { color: var(--teal); flex: none; }

/* form */
.form-shell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: linear-gradient(180deg, #141A26, #0E131D);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: height var(--t-base) var(--ease);
}
.form-live {
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
}
.form-shell.sent .form-live {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  filter: blur(2px);
  pointer-events: none;
  position: absolute;
  inset: clamp(28px, 3.5vw, 44px) clamp(28px, 3.5vw, 44px) auto;
}
.progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: var(--line);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal));
  transform: scaleX(0.333);
  transform-origin: left center;
  transition: transform var(--t-slow) var(--ease);
  will-change: transform;
}
.progress-label { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; white-space: nowrap; font-variant-numeric: tabular-nums; }

.form-steps { position: relative; transition: height var(--t-base) var(--ease); }
.form-steps.animating { overflow: hidden; }
.fstep { display: none; }
.fstep.active { display: block; }
.form-shell.ready .fstep.active { animation: stepIn var(--t-base) var(--ease) both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.fstep-head { margin-bottom: 24px; }
.fstep-head .st {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.fstep-head .ss { color: var(--muted); font-size: 14.5px; margin-top: 5px; }

.field { margin-bottom: 16px; position: relative; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 9px;
  letter-spacing: 0.02em;
  transition: color var(--t-fast) var(--ease);
}
.field:focus-within label { color: var(--teal); }
.field label .opt { color: var(--muted-dim); font-weight: 420; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(255,255,255,0.16); }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: rgba(45,212,191,0.045);
  box-shadow: 0 0 0 4px rgba(45,212,191,0.10);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: var(--bg-elev); color: var(--white); }
.field textarea { resize: vertical; min-height: 116px; }
.field.invalid input,
.field.invalid select {
  border-color: #F87171;
  box-shadow: 0 0 0 4px rgba(248,113,113,0.10);
}
.field-error {
  color: #F87171;
  font-size: 12.5px;
  margin-top: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease), margin-top var(--t-fast) var(--ease);
}
.field.invalid .field-error { max-height: 2.5em; opacity: 1; }

.form-actions { display: flex; gap: 12px; margin-top: 28px; }
.form-actions .grow { flex: 1; }
.btn-back {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 15px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 540;
  font-size: 15px;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.btn-back:hover { color: var(--white); border-color: var(--muted); background: rgba(255,255,255,0.02); }
.btn-submit {
  position: relative;
  background: var(--teal);
  color: #04221E;
  overflow: hidden;
}
.btn-submit:hover { box-shadow: 0 0 50px -8px var(--teal-glow); }
.btn-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn-spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(4,34,30,0.25);
  border-top-color: #04221E;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.btn-submit.loading { pointer-events: none; }
.btn-submit.loading .btn-label { opacity: 0; transform: scale(0.9); }
.btn-submit.loading .btn-spinner { opacity: 1; animation: spin 0.66s linear infinite; }

/* success */
.form-success {
  display: none;
  text-align: center;
  padding: 22px 10px 16px;
}
.form-success.show { display: block; }
.success-check {
  width: 72px; height: 72px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.4);
  display: grid; place-items: center;
  color: var(--teal);
  opacity: 0;
  transform: scale(0.5);
}
.success-check svg path { stroke-dasharray: 30; stroke-dashoffset: 30; }
.form-success.show .success-check { animation: sealPop var(--t-base) var(--ease) forwards; }
.form-success.show .success-check svg path { animation: drawCheck 0.5s var(--ease) 0.28s forwards; }
@keyframes sealPop {
  0%   { opacity: 0; transform: scale(0.5); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.form-success h3 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
}
.form-success p {
  color: var(--muted);
  max-width: 34ch;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
}
.form-success.show h3 { animation: riseIn var(--t-base) var(--ease) 0.34s forwards; }
.form-success.show p { animation: riseIn var(--t-base) var(--ease) 0.46s forwards; }
@keyframes riseIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .form-shell.ready .fstep.active { animation: none; }
  .success-check, .form-success h3, .form-success p { opacity: 1; transform: none; }
  .success-check svg path { stroke-dashoffset: 0; }
  .form-success.show .success-check { animation: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.footer-wordmark { display: inline-flex; align-items: center; }
.footer-logo { height: 93px; width: auto; display: block; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.footer a.mail {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.footer a.mail:hover { border-color: var(--teal); color: var(--teal); }

@media (max-width: 767px) {
  .footer { padding-block: 18px 20px; }
  .footer-logo { height: 52px; }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer .legal-links { justify-content: center; }
  .footer .copy { margin-top: 0; }
}
.footer .copy { color: var(--muted-dim); font-size: 13.5px; }
.footer .legal-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}
.footer .legal-links a {
  color: var(--muted-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .legal-links a:hover { color: var(--teal); }
.footer .legal-dot { color: var(--muted-dim); opacity: 0.6; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse::after, .guarantee-ring svg, .guarantee-seal .seal-img,
  .shield-stage, .shield-shadow, .shield-sweep { animation: none; }
  .guarantee-seal.in .shield-flash { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-copy { position: static; }
  .stat-row { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 767px) {
  .stat-copy { width: 100%; max-width: 100%; box-sizing: border-box; }
}

@media (max-width: 720px) {
  .hero-sub { flex-direction: column; align-items: flex-start; gap: 28px; }
  /* Headline dominates the hero: sized so "GUARANTEED." (longest word)
     fills the width with a small side margin, never wrapping */
  .hero-title { font-size: 12.4vw; margin-bottom: 30px; }
  .hero-sub .lede { font-size: 16px; }
  .form-actions { flex-direction: column-reverse; }
  .btn-back { width: 100%; }
}

/* ============================================================
   BRAND TICKER / MARQUEE
   ============================================================ */
.marquee-sec {
  padding-top: clamp(34px, 6vh, 72px);
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
.marquee-band {
  position: relative;
  padding-top: clamp(24px, 3.2vh, 36px);
  padding-bottom: clamp(18px, 2.6vh, 28px);
  background: #0D1322;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025), 0 1px 0 rgba(255,255,255,0.02);
}
.marquee-label {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.8vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
  margin-bottom: clamp(20px, 2.6vh, 28px);
}
.ml-white { color: var(--white); }
.ml-teal { color: var(--teal); }
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  transform: skewX(0deg);
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.marquee-band .marquee-label { padding-inline: 0; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 46s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.mq-group {
  display: flex;
  align-items: center;
  flex: none;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: clamp(40px, 5vw, 64px);
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.mq-ico {
  display: inline-flex;
  color: var(--teal);
  flex: none;
}
.mq-ico svg {
  width: clamp(20px, 2vw, 26px);
  height: clamp(20px, 2vw, 26px);
  display: block;
}
.mq-ico-img {
  width: clamp(44px, 4.1vw, 58px);
  height: clamp(44px, 4.1vw, 58px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.mq-ico-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Gentle floating bob + subtle rock for all marquee icons */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-3px) rotate(1.2deg); }
  50%      { transform: translateY(1px) rotate(-0.8deg); }
  75%      { transform: translateY(-2px) rotate(0.6deg); }
}
/* Stagger siblings so they don't bob in unison */
.mq-item:nth-child(2n) .mq-ico  { animation-delay: -1.4s; }
.mq-item:nth-child(3n) .mq-ico  { animation-delay: -2.6s; }
.mq-item:nth-child(5n) .mq-ico  { animation-delay: -0.7s; }
.mq-item:nth-child(7n) .mq-ico  { animation-delay: -3.2s; }
@media (prefers-reduced-motion: reduce) {
  .mq-ico { animation: none; }
}
@media (hover: hover) and (pointer: fine) {
  .mq-item:hover { color: var(--teal); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
   LENIS SMOOTH SCROLL
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   SLIM SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal));
  box-shadow: 0 0 12px var(--teal-glow);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }

/* ============================================================
   SCROLL-LINKED WORD REVEAL (Why It Works + Guarantee)
   ============================================================ */
.reveal-text { color: var(--white); }
.reveal-text .w {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.18s linear;
  will-change: opacity;
}
.reveal-text .w.accent { color: var(--teal); }
@media (prefers-reduced-motion: reduce) {
  .reveal-text .w { opacity: 1; }
}

/* ============================================================
   HOW IT WORKS — pinned narrative
   ============================================================ */
.how-pin { position: relative; }
.how-sticky { padding-block: clamp(72px, 11vh, 130px); }
.how-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.how-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vh, 72px); }
.how-head .eyebrow { display: inline-flex; }
.how-title {
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 22px;
}
.how-counter {
  margin-top: 22px;
  display: flex;
  gap: 9px;
  align-items: baseline;
  justify-content: center;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--muted-dim);
  font-variant-numeric: tabular-nums;
}
.how-counter #howCur { color: var(--teal); font-size: 19px; }
.how-counter .sep { opacity: 0.45; }

.how-stage {
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

/* Rail (vertical node list) — only shown when pinning */
.how-rail { position: relative; list-style: none; margin: 0; padding: 8px 0; display: none; }
.how-rail-track {
  position: absolute;
  left: 23px; top: 32px; bottom: 32px;
  width: 2px;
  background: var(--line);
  overflow: hidden;
}
.how-rail-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  transform: scaleY(0);
  transform-origin: top center;
  background: linear-gradient(180deg, var(--teal), var(--teal-dim));
  box-shadow: 0 0 16px var(--teal-glow);
  will-change: transform;
}
.how-rail li { position: relative; z-index: 1; }
.how-dot {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 9px 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--muted);
  transition: color 0.4s var(--ease);
}
.hd-num {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  display: grid; place-items: center;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hd-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.55;
}
.how-dot.done .hd-num { border-color: rgba(45,212,191,0.5); color: var(--teal); }
.how-dot.done .hd-label { opacity: 0.7; }
.how-dot.active .hd-num {
  background: var(--teal);
  border-color: var(--teal);
  color: #04221E;
  transform: scale(1.1);
  box-shadow: 0 0 0 5px rgba(45,212,191,0.10), 0 0 34px -6px var(--teal-glow);
}
.how-dot.active .hd-label { color: var(--white); opacity: 1; }

/* Panels */
.how-panels { position: relative; min-height: 220px; }
.how-panel { padding: 4px 0; }
.how-panel .hs-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.how-panel h3 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 18px;
}
.how-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
  max-width: 40ch;
}

/* Non-pinned fallback: stacked list, all visible */
.how-panels { display: grid; gap: 0; }
.how-panel {
  padding: clamp(26px, 4vh, 40px) 0;
  border-top: 1px solid var(--line);
}
.how-panel:first-child { border-top: none; }

/* ---- Pinning active ---- */
#how.pinning { padding: 0; }
#how.pinning .how-pin { height: 600vh; }
#how.pinning .how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#how.pinning .how-rail { display: block; }
#how.pinning .how-panels { display: block; min-height: 240px; }
#how.pinning .how-panel {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(26px);
  pointer-events: none;
  transition: none;
}
#how.pinning.anim .how-panel {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
#how.pinning .how-panel.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (max-width: 860px) {
  .how-stage { grid-template-columns: 1fr; gap: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hd-num, .how-dot, .how-panel { transition: none; }
}

/* ============================================================
   BRANDED LOADER + CURTAIN
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease);
}
.loader.done { opacity: 0; pointer-events: none; }
.loader.gone { display: none; }
.loader-inner { display: flex; flex-direction: column; align-items: stretch; gap: 18px; }
.loader-mark {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--white);
  overflow: hidden;
  padding: 0 2px 0.06em;
}
.lm-word { display: inline-flex; align-items: flex-end; }
.lm-l {
  display: inline-block;
  opacity: 0;
  transform: translateY(108%);
  animation: lmRise 0.7s var(--ease) forwards;
  animation-delay: calc(var(--n) * 0.045s + 0.1s);
}
.lm-space { width: 0.3em; }
.lm-dot {
  color: var(--teal);
  text-shadow: 0 0 22px var(--teal-glow);
}
@keyframes lmRise { to { opacity: 1; transform: translateY(0); } }
@keyframes lmDot { to { opacity: 1; transform: scale(1); } }
.loader-bar {
  width: 100%; height: 2px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.loader-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal));
  box-shadow: 0 0 12px var(--teal-glow);
  transition: width 0.3s linear;
}

/* Curtain panels wipe upward to reveal the page */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
}
.curtain-panel {
  background: var(--bg);
  transform: scaleY(1);
  transform-origin: top center;
  will-change: transform;
}
.curtain.up .curtain-panel {
  transform: scaleY(0);
  transition: transform var(--t-slow) var(--ease-inout);
}
.curtain.up .curtain-panel:nth-child(2) { transition-delay: 0.08s; }
.curtain.up .curtain-panel:nth-child(3) { transition-delay: 0.16s; }
.curtain.gone { display: none; }

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  body.cursor-on { cursor: none; }
  body.cursor-on a, body.cursor-on button, body.cursor-on input,
  body.cursor-on select, body.cursor-on textarea, body.cursor-on label { cursor: none; }
  .cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 2000;
    pointer-events: none;
    display: block;
  }
  .cursor-ring, .cursor-dot { mix-blend-mode: difference; }
  .cursor-aura {
    position: absolute;
    top: 0; left: 0;
    width: 130px; height: 130px;
    margin: -65px 0 0 -65px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,212,191,0.16), rgba(45,212,191,0) 68%);
    transform: translate3d(var(--rx, 0), var(--ry, 0), 0) scale(var(--auraS, 1));
    opacity: 0.55;
    mix-blend-mode: screen;
    transition: opacity 0.35s var(--ease), scale 0.35s var(--ease);
    will-change: transform;
  }
  .cursor-ring {
    position: absolute;
    top: 0; left: 0;
    width: 38px; height: 38px;
    margin: -19px 0 0 -19px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: translate3d(var(--rx, 0), var(--ry, 0), 0) scale(var(--rs, 1));
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
    will-change: transform;
  }
  .cursor-dot {
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: #fff;
    transform: translate3d(var(--dx, 0), var(--dy, 0), 0) scale(var(--ds, 1)) rotate(var(--stretchA, 0deg)) scaleX(var(--stretchX, 1)) scaleY(var(--stretchY, 1));
    will-change: transform;
  }
  .cursor-label {
    position: absolute;
    top: 0; left: 0;
    transform: translate3d(var(--rx, 0), var(--ry, 0), 0) translate(18px, 12px);
    font-family: "General Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #04221E;
    background: var(--teal);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    scale: 0.8;
    transform-origin: left center;
    transition: opacity 0.25s var(--ease), scale 0.25s var(--ease);
    mix-blend-mode: normal;
  }
  /* hovering an interactive element: ring grows + inverts to teal */
  .cursor.hover .cursor-ring {
    width: 64px; height: 64px;
    margin: -32px 0 0 -32px;
    background: rgba(45, 212, 191, 0.18);
    border-color: var(--teal);
  }
  .cursor.hover .cursor-dot { --ds: 0; }
  .cursor.hover .cursor-aura { opacity: 1; scale: 1.5; }
  .cursor.labeled .cursor-label { opacity: 1; scale: 1; }
  .cursor.down .cursor-ring { --rs: 0.82; }
  .cursor.down .cursor-aura { scale: 1.2; opacity: 0.85; }
}

/* ============================================================
   PRODUCT SEQUENCE — pinned phone
   ============================================================ */
.sequence { padding: 0; }
.seq-pin { position: relative; }
.seq-sticky { padding-block: clamp(72px, 11vh, 130px); position: relative; }
.seq-inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.seq-copy { max-width: 540px; }
.seq-title {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 22px;
  margin-bottom: clamp(34px, 5vh, 52px);
  white-space: nowrap;
}
.seq-steps { display: grid; gap: 4px; }
.seq-stepline {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.seq-stepline .sl-num {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted-dim);
  padding-top: 2px;
  transition: color 0.5s var(--ease);
  font-variant-numeric: tabular-nums;
}
.seq-stepline div { display: flex; flex-direction: column; gap: 3px; }
.seq-stepline strong { font-weight: 540; font-size: 17px; letter-spacing: -0.01em; }
.seq-stepline span { color: var(--muted); font-size: 14.5px; }
.seq-stepline.active {
  opacity: 1;
  background: rgba(45, 212, 191, 0.05);
  border-color: rgba(45, 212, 191, 0.22);
}
.seq-stepline.active .sl-num { color: var(--teal); }

/* Phone */
.seq-phone { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: clamp(270px, 30vw, 340px);
  aspect-ratio: 9 / 19.2;
  background: #05070D;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), inset 0 0 0 6px #0A0E1A, 0 0 0 1px rgba(255,255,255,0.04);
  padding: 12px;
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #05070D;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: linear-gradient(180deg, #0C1322, #0A0E1A);
  display: flex;
  flex-direction: column;
}
.phone-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 16px 12px;
  flex: none;
}
.pt-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #0B1120 url("assets/avatar.png") center / cover no-repeat;
  flex: none;
}
.pt-handle { font-size: 13px; font-weight: 540; color: var(--white); }
.pt-more { margin-left: auto; color: var(--muted); font-size: 18px; letter-spacing: 1px; }

.carousel { position: relative; flex: 1; overflow: hidden; touch-action: pan-y; }
.carousel-track {
  display: flex;
  height: 100%;
  width: 400%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.cslide {
  width: 25%;
  height: 100%;
  flex: none;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.cslide-0 { background: radial-gradient(120% 80% at 20% 10%, rgba(45,212,191,0.16), transparent 55%), #0A0E1A; }
.cslide-0 .cs-kick { position: absolute; top: 26px; left: 22px; }
.cslide-1 { background: radial-gradient(120% 80% at 80% 20%, rgba(45,212,191,0.12), transparent 55%), #0C1322; }
.cslide-2 { background: radial-gradient(120% 80% at 30% 80%, rgba(45,212,191,0.14), transparent 55%), #0A0E1A; }
.cslide-3 { background: radial-gradient(130% 90% at 50% 50%, rgba(45,212,191,0.22), transparent 60%), #0C1322; }
.cs-kick { font-size: 12px; letter-spacing: 0.18em; color: var(--teal); font-weight: 560; }
.cs-big {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
}
.cs-big2 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--teal);
}
.cs-num {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--teal);
}
.cs-mid { font-size: 17px; line-height: 1.3; color: var(--white); font-weight: 480; }
.cs-foot { font-size: 12.5px; color: var(--muted); margin-top: auto; }
.cs-cta { font-size: 13px; color: var(--teal); font-weight: 540; margin-top: 6px; }

.phone-actions {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 18px;
  color: var(--white);
}
.pa-icons { display: flex; gap: 16px; }
.pa-icons svg { opacity: 0.9; }
.pa-dots { display: flex; gap: 6px; }
.pa-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.pa-dots i.on { background: var(--teal); transform: scale(1.25); }

.phone-glow {
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(ellipse at center, rgba(45,212,191,0.22), transparent 65%);
  filter: blur(48px);
  z-index: 0;
}

/* Pinning active */
#sequence.pinning .seq-pin { height: 420vh; }
#sequence.pinning .seq-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 860px) {
  .seq-inner { grid-template-columns: 1fr; gap: 44px; justify-items: center; }
  .seq-copy { max-width: 100%; }
  .seq-stepline { opacity: 1; }
}

/* ============================================================
   CLIP-PATH SECTION REVEALS
   ============================================================ */
.clip-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--t-slow) var(--ease-inout);
  will-change: clip-path;
}
.clip-reveal.in { clip-path: inset(0 0 0% 0); }
@media (prefers-reduced-motion: reduce) {
  .clip-reveal { clip-path: none; transition: none; }
}



/* ============================================================
   EXPERIMENT — LIGHT-ZONE GUARANTEE
   Scroll-driven crossfade to a light surface over THE GUARANTEE
   only. Everything here is scoped under body.light-guarantee;
   remove that class from <body> to fully revert to all-dark.
   --gp is a 0→1→0 progress scalar written by app.js each frame.
   ============================================================ */
@property --gp {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

.light-veil { display: none; }

@supports (color: color-mix(in srgb, red 50%, blue)) {
  /* --- The morphing surface: fixed, opacity-only (GPU-cheap) --- */
  body.light-guarantee .light-veil {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;               /* above fixed canvases (DOM order), below content */
    background: #F4F8FA;      /* cool off-white, matches the navy's temperature */
    opacity: var(--gp, 0);
    pointer-events: none;
    will-change: opacity;
  }

  /* --- Constellation fades out over the light zone (filter avoids
         fighting the reveal transition on the opacity property) --- */
  body.light-guarantee .net-canvas {
    filter: opacity(calc((1 - var(--gp, 0)) * 100%));
  }

  /* --- Section content morphs on the SAME scalar as the veil --- */
  /* Light-mode targets: ink #0B1626 · muted #45566C · deep teal #0C7D71 */
  body.light-guarantee .guarantee .reveal-text {
    color: color-mix(in oklab, var(--white), #0B1626 calc(var(--gp, 0) * 100%));
  }
  body.light-guarantee .guarantee .reveal-text .w.accent {
    color: color-mix(in oklab, var(--teal), #0C7D71 calc(var(--gp, 0) * 100%));
  }
  body.light-guarantee .guarantee .lede {
    color: color-mix(in oklab, var(--muted), #45566C calc(var(--gp, 0) * 100%));
  }
  body.light-guarantee .guarantee .eyebrow {
    color: color-mix(in oklab, var(--teal), #0B7268 calc(var(--gp, 0) * 100%));
  }
  body.light-guarantee .guarantee .eyebrow::before,
  body.light-guarantee .guarantee .eyebrow::after {
    background: color-mix(in oklab, var(--teal), #0B7268 calc(var(--gp, 0) * 100%));
  }

  /* --- Constellation ring: teal → deep teal (CSS wins over SVG attrs) --- */
  body.light-guarantee .guarantee-ring circle[stroke] {
    stroke: color-mix(in oklab, #2DD4BF, #0C7D71 calc(var(--gp, 0) * 100%));
  }
  body.light-guarantee .guarantee-ring circle[fill] {
    fill: color-mix(in oklab, #2DD4BF, #0C7D71 calc(var(--gp, 0) * 100%));
  }

  /* --- Shield glow: deeper, denser teal so it reads on light --- */
  body.light-guarantee .guarantee .seal-img {
    --shield-glow-soft: color-mix(in srgb, rgba(45, 212, 191, 0.14), rgba(11, 114, 104, 0.30) calc(var(--gp, 0) * 100%));
    --shield-glow-peak: color-mix(in srgb, rgba(45, 212, 191, 0.32), rgba(11, 114, 104, 0.52) calc(var(--gp, 0) * 100%));
  }
  /* Sweep uses screen blend (invisible on white) — fade it with the zone */
  body.light-guarantee .guarantee .shield-sweep {
    opacity: calc(1 - var(--gp, 0) * 0.85);
  }
}
