/* Scaleaux — base layout & sections. Built on tokens from ../brand/tokens.css */

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
main {
  width: 100%;
  max-width: 100%;
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-alt);
  margin: 0 0 14px;
}
.eyebrow-dark { color: var(--sx-gold); }

.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;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--sx-navy); color: var(--sx-ivory); }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(10,27,46,0.25); }
.btn-ghost { background: transparent; border-color: var(--sx-navy); color: var(--sx-navy); }
.btn-outline-light { background: transparent; border-color: rgba(247,244,239,0.4); color: var(--sx-ivory); }
.btn-outline-light:hover { border-color: var(--sx-gold); }

.muted { color: var(--sx-slate-blue); font-weight: 400; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,27,46,0.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}
.nav-brand:hover img {
  transform: scale(1.08);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--sx-slate-blue); }
.nav-links a:hover { color: var(--sx-navy); }
.nav-cta { padding: 9px 18px; font-size: 13px; }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(10, 27, 46, 0.15);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 102;
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sx-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(247, 244, 239, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.mobile-nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--sx-navy);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--sx-gold);
  transform: translateX(4px);
}
.mobile-nav-actions {
  margin-top: auto;
  padding-top: 24px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  font-size: 15px;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 820px) {
  .nav {
    padding: 12px 20px;
    padding-top: max(12px, env(safe-area-inset-top));
  }
  .nav-brand img { height: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ================= 01 — Hero ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bubbles {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 12px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sx-navy);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(10,27,46,0.08);
  will-change: transform;
  animation: bob 7s ease-in-out infinite;
}
.bubble .dot {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,27,46,0.08);
  font-size: 11px;
}
.bubble-mist    { background: var(--sx-mist-blue); }
.bubble-sand    { background: var(--sx-sand); }
.bubble-seafoam { background: var(--sx-seafoam); }
.bubble-stone   { background: var(--sx-stone); }
.bubble-gold    { background: var(--sx-gold); }
.bubble-sage    { background: var(--sx-sage); }
.bubble-slate, .bubble-forest { color: var(--sx-ivory); }
.bubble-slate  { background: var(--sx-slate-blue); }
.bubble-forest { background: var(--sx-forest); }
.bubble-slate .dot, .bubble-forest .dot { background: rgba(255,255,255,0.18); }

@keyframes bob {
  0%, 100% { transform: translate(var(--px, 0px), var(--py, 0px)) rotate(-1deg); }
  50%      { transform: translate(var(--px, 0px), calc(var(--py, 0px) - 14px)) rotate(1deg); }
}

.hero-copy { position: relative; z-index: 2; max-width: 760px; text-align: center; }
.hero-mobile-chips { display: none; }
.hero-headline {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hl-accent { color: var(--sx-forest); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--sx-slate-blue);
  max-width: 56ch;
  margin: 24px auto 0;
  line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.hero-microtrust { margin-top: 16px; font-size: 12.5px; color: var(--sx-slate-blue); }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sx-slate-blue);
  z-index: 2;
}
.scroll-cue span {
  width: 1px; height: 28px;
  background: linear-gradient(var(--sx-slate-blue), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: scaleY(0.3); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0.3); opacity: 0.4; transform-origin: top; }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 48px;
  }
  .hero-bubbles {
    display: none !important;
  }
  .hero-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 8px auto 16px;
    max-width: 360px;
  }
  .m-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--sx-sand);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sx-navy);
    box-shadow: 0 3px 10px rgba(11, 27, 61, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    animation: mobileBob 6s ease-in-out infinite;
    will-change: transform;
    touch-action: manipulation;
  }
  .m-chip:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 1);
  }
  .m-chip:nth-child(1) { animation-delay: 0s; }
  .m-chip:nth-child(2) { animation-delay: 1.5s; }
  .m-chip:nth-child(3) { animation-delay: 3s; }
  .m-chip:nth-child(4) { animation-delay: 4.5s; }

  @keyframes mobileBob {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-4px); }
  }
  .m-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
  }
  .m-dot.dot-gold { background: var(--sx-gold); }
  .m-dot.dot-mist { background: #8E9BAE; }
  .m-dot.dot-seafoam { background: #5E9B8D; }
  .m-dot.dot-forest { background: #2D5A47; }

  .hero-headline {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.15;
    text-wrap: balance;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 14.5px;
    line-height: 1.55;
    margin: 16px auto 0;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 24px auto 0;
    gap: 10px;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    min-height: 48px;
  }
  .scroll-cue {
    display: none;
  }
}

/* ================= 02 — Trust bar ================= */
.statbar-section { padding: 64px 24px; max-width: 1080px; margin: 0 auto; }
.statbar {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--sx-mist-blue);
  border-radius: 14px; overflow: hidden;
  background: var(--surface);
}
.statbar .s { flex: 1; min-width: 180px; padding: 22px 24px; text-align: left; }
.statbar .s + .s { border-left: 1px solid var(--sx-mist-blue); }
.statbar .s .n { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--sx-navy); }
.statbar .s .l { font-size: 12.5px; color: var(--sx-slate-blue); margin-top: 4px; }

@media (max-width: 768px) {
  .statbar-section { padding: 36px 16px; }
  .statbar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    border-radius: 16px;
  }
  .statbar .s {
    flex: none;
    min-width: 0;
    padding: 16px 14px;
    border: none !important;
  }
  .statbar .s:nth-child(1),
  .statbar .s:nth-child(2) {
    border-bottom: 1px solid var(--sx-mist-blue) !important;
  }
  .statbar .s:nth-child(odd) {
    border-right: 1px solid var(--sx-mist-blue) !important;
  }
  .statbar .s .n {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .statbar .s .l {
    font-size: 11.5px;
    line-height: 1.35;
  }
}

/* ================= 03 — How it works (3D dolly through stages in depth) =================
   The stages sit at increasing translateZ depths inside one perspective scene.
   Scroll drives the "camera" (.hiw-world) forward, so each stage approaches from
   far away, reaches natural size, then sweeps past the viewer as the next arrives. */
.hiw-stage { position: relative; height: 560vh; background: var(--sx-navy); }
.hiw-pin { position: -webkit-sticky; position: sticky; top: 0; height: 100vh; overflow: hidden; }

.hiw-scene {
  position: absolute; inset: 0;
  perspective: 1100px;
  perspective-origin: 50% 50%;
}
.hiw-world {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.hiw-depth {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transform: translateZ(calc(var(--d) * -900px));
  transform-style: preserve-3d;
  opacity: 0;
}

.hiw-frame {
  position: relative;
  width: min(860px, 62vw);
  height: min(500px, 62vh);
  border: 1px solid rgba(247,244,239,0.16);
  transform-style: preserve-3d;
  flex: none;
}

/* Corner labels: hidden to prevent stray elements from floating in viewport corners during 3D perspective scroll */
.hiw-corner {
  display: none !important;
}

.hiw-slide { position: absolute; inset: 0; transform-style: preserve-3d; }
.hiw-slide--center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; text-align: center;
}
.hiw-slide--center h2 {
  color: var(--sx-ivory); font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500; line-height: 1.2; font-family: var(--font-display);
}

/* Cards carry their own depth so they separate as the camera passes through. */
.hiw-card {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translateZ(var(--cz, 0px));
  background: #0d1a2b;
  border: 1px solid rgba(247,244,239,0.18);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 9px;
}
/* Faint extruded edge, so cards read as solid objects rather than flat rectangles. */
.hiw-card::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 8px;
  box-shadow: 8px 8px 0 -1px rgba(247,244,239,0.07);
  pointer-events: none;
}
.hc-title {
  font-size: 10.5px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--sx-slate-blue); font-weight: 600; margin-bottom: 2px;
}
.card-lg { width: 300px; }
.card-sm { width: 240px; }
.hc-row { display: flex; justify-content: space-between; gap: 18px; font-size: 12.5px; }
.hc-row span { color: var(--sx-mist-blue); }
.hc-row b { color: var(--sx-ivory); font-weight: 600; }
.hc-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.hc-pills span {
  font-size: 11px; color: var(--sx-ivory); padding: 5px 10px; border-radius: 100px;
  background: rgba(247,244,239,0.08); border: 1px solid rgba(247,244,239,0.12);
}
.hc-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--sx-ivory); }
.hc-check i { color: var(--sx-seafoam); font-style: normal; font-weight: 700; }

.card-ring { width: 190px; align-items: center; padding: 20px; }
.card-ring svg { width: 118px; height: 118px; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(247,244,239,0.12); stroke-width: 8; }
.ring-fill {
  fill: none; stroke: var(--sx-gold); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 314; stroke-dashoffset: 314;
}
.hiw-depth.is-active .ring-fill { stroke-dashoffset: 25; transition: stroke-dashoffset 1.1s ease 0.2s; }
.ring-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--sx-ivory);
}
.ring-label small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 10.5px; color: var(--sx-mist-blue); margin-top: 2px; }

/* Stage 03 — You're Notified: Toast notification card */
.card-toast {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  color: var(--sx-ivory) !important;
}
.toast-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.toast-badge,
.card-toast .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sx-gold) !important;
  background: rgba(205, 163, 74, 0.16);
  border: 1px solid rgba(205, 163, 74, 0.4);
  padding: 3px 9px;
  border-radius: 100px;
}
.toast-time,
.card-toast time {
  font-size: 11.5px;
  color: var(--sx-mist-blue) !important;
  font-weight: 500;
}
.card-toast b {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--sx-ivory) !important;
  line-height: 1.35;
  margin: 0;
}
.card-toast p {
  font-size: 13px;
  color: var(--sx-mist-blue) !important;
  line-height: 1.5;
  margin: 0;
}
.toast-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.ts-pill {
  font-size: 11px;
  color: #8BE0CD !important;
  background: rgba(94, 155, 141, 0.15);
  border: 1px solid rgba(94, 155, 141, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.hl-forest {
  color: #8BE0CD !important;
}

.card-notif { flex-direction: row; align-items: center; gap: 14px; width: 290px; }
.card-notif b { color: var(--sx-ivory); font-size: 13.5px; }
.card-notif p { color: var(--sx-mist-blue); font-size: 12px; margin: 3px 0 0; }
.notif-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sx-seafoam); flex: none; box-shadow: 0 0 0 4px rgba(169,191,174,0.18); }

.card-badge {
  align-items: center; justify-content: center; width: 210px; height: 120px;
  color: var(--sx-seafoam); font-family: var(--font-display); font-weight: 600; font-size: 22px;
  border-color: rgba(169,191,174,0.5); background: rgba(29,77,63,0.22);
}
.card-badge small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--sx-mist-blue); margin-top: 6px; }

/* The detail panel stays flat and still — the scene moves past it. */
.hiw-detail {
  position: absolute; z-index: 3;
  top: 50%; right: clamp(24px, 5vw, 90px); transform: translateY(-50%);
  width: 300px; padding: 22px 24px;
  background: rgba(13,26,43,0.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(247,244,239,0.16);
  opacity: 0; pointer-events: none; transition: opacity 0.45s ease;
}
.hiw-detail.is-active { opacity: 1; }
.hiw-detail-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.hiw-detail-num {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700;
  background: rgba(247,244,239,0.1); color: var(--sx-ivory); padding: 3px 7px; border-radius: 3px;
}
.hiw-detail h3 { color: var(--sx-ivory); font-size: 19px; font-weight: 500; font-family: var(--font-display); margin: 0; }
.hiw-detail p { color: var(--sx-mist-blue); font-size: 13px; line-height: 1.55; margin: 0 0 14px; }
.hiw-detail ul { list-style: none; margin: 0; padding: 0; }
.hiw-detail li { font-size: 12.5px; color: var(--sx-ivory); padding: 9px 0; border-top: 1px solid rgba(247,244,239,0.1); }

.hiw-mobile-flow { display: none; }

@media (max-width: 1200px) {
  .hiw-frame { width: min(620px, 88vw); height: min(400px, 50vh); }
  .hiw-corner { font-size: 11px; }
  .hiw-tl, .hiw-bl { left: 10px; transform: none; flex-direction: row; }
  .hiw-tr, .hiw-br { right: 10px; transform: none; }
  .hiw-tl, .hiw-tr { top: 10px; }
  .hiw-bl, .hiw-br { bottom: 10px; }
  .hiw-corner::after { display: none; }
  .card-lg { width: 250px; } .card-sm { width: 205px; }
  .hiw-detail {
    top: auto; bottom: 24px; right: 50%; transform: translateX(50%);
    width: min(560px, 92vw);
  }
}

@media (max-width: 768px) {
  .hiw-stage {
    position: relative !important;
    height: 520vh !important;
    background: var(--sx-navy) !important;
    padding: 0 !important;
  }
  .hiw-pin {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
    display: block !important;
    padding-top: max(56px, calc(44px + env(safe-area-inset-top))) !important;
  }
  .hiw-mobile-flow {
    display: none !important;
  }
  .hiw-scene {
    position: absolute;
    inset: 0;
    perspective: 950px;
    perspective-origin: 50% 32%;
  }
  .hiw-world {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
  }
  .hiw-frame {
    width: min(340px, 88vw) !important;
    height: 42vh !important;
    margin-top: 2vh !important;
    border-color: rgba(247, 244, 239, 0.12) !important;
  }
  .hiw-slide--center h2 {
    font-size: clamp(24px, 7vw, 32px);
    padding: 0 16px;
    text-align: center;
  }

  /* Mobile Card Stacking & Centering */
  .hiw-card {
    border-radius: 12px !important;
    padding: 12px 14px !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5) !important;
    box-sizing: border-box !important;
  }
  /* Primary Cards (upper half of 3D frame) */
  .hiw-depth[data-slide="0"] .card-lg {
    left: 50% !important;
    top: 4% !important;
    transform: translateX(-50%) translateZ(20px) !important;
    width: min(280px, 82vw) !important;
  }
  .hiw-depth[data-slide="1"] .card-ring {
    left: 50% !important;
    top: 4% !important;
    transform: translateX(-50%) translateZ(25px) !important;
    width: 160px !important;
    padding: 12px !important;
  }
  .hiw-depth[data-slide="1"] .card-ring svg {
    width: 88px !important;
    height: 88px !important;
  }
  .hiw-depth[data-slide="1"] .ring-label {
    font-size: 19px !important;
  }
  .hiw-depth[data-slide="2"] .card-toast {
    left: 50% !important;
    top: 4% !important;
    transform: translateX(-50%) translateZ(20px) !important;
    width: min(290px, 84vw) !important;
    padding: 12px 14px !important;
  }
  .hiw-depth[data-slide="2"] .card-toast b {
    font-size: 13.5px !important;
    line-height: 1.3 !important;
  }
  .hiw-depth[data-slide="2"] .card-toast p {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }
  .hiw-depth[data-slide="3"] .card-lg {
    left: 50% !important;
    top: 4% !important;
    transform: translateX(-50%) translateZ(15px) !important;
    width: min(280px, 82vw) !important;
  }

  /* Secondary Companion Cards (lower half of 3D frame) */
  .hiw-depth[data-slide="0"] .card-sm {
    left: 50% !important;
    top: 56% !important;
    transform: translateX(-50%) translateZ(-20px) !important;
    width: min(260px, 78vw) !important;
  }
  .hiw-depth[data-slide="1"] .card-sm {
    left: 50% !important;
    top: 56% !important;
    transform: translateX(-50%) translateZ(-20px) !important;
    width: min(260px, 78vw) !important;
  }
  .hiw-depth[data-slide="2"] .card-sm {
    left: 50% !important;
    top: 56% !important;
    transform: translateX(-50%) translateZ(-15px) !important;
    width: min(260px, 78vw) !important;
  }
  .hiw-depth[data-slide="3"] .card-sm {
    left: 50% !important;
    top: 56% !important;
    transform: translateX(-50%) translateZ(-15px) !important;
    width: min(260px, 78vw) !important;
  }

  /* Sleek Docked Stage Detail Glass Card at bottom of screen */
  .hiw-detail {
    position: absolute !important;
    top: auto !important;
    bottom: 20px !important;
    left: 16px !important;
    right: 16px !important;
    transform: none !important;
    width: auto !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    border-radius: 16px !important;
    background: rgba(13, 26, 43, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(247, 244, 239, 0.16) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45) !important;
    z-index: 10 !important;
  }
  .hiw-detail-head {
    margin-bottom: 6px !important;
  }
  .hiw-detail h3 {
    font-size: 16.5px !important;
  }
  .hiw-detail p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin: 0 0 8px !important;
  }
  .hiw-detail ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .hiw-detail li {
    font-size: 11px !important;
    padding: 3px 8px !important;
    border: none !important;
    border-radius: 6px !important;
    background: rgba(247, 244, 239, 0.08) !important;
    border: 1px solid rgba(247, 244, 239, 0.12) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiw-depth { transform: none; }
}

/* ================= 04 — Audit panel (dark) ================= */
.audit-panel { padding: 80px 24px; }
.audit-frame {
  position: relative;
  max-width: 1080px; margin: 0 auto;
  min-height: 62vh;
  border: 1px solid rgba(247,244,239,0.16);
  border-radius: 20px;
  background: var(--sx-navy);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 32px;
  overflow: hidden;
}
.audit-frame::before {
  content: ""; position: absolute; inset: 22px;
  border: 1px solid rgba(247,244,239,0.12); border-radius: 14px;
  pointer-events: none;
}
.corner-label {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sx-mist-blue);
}
.corner-label i { width: 8px; height: 8px; border-radius: 2px; background: var(--sx-gold); display: block; }
.cl-tl { top: 34px; left: 34px; }
.cl-tr { top: 34px; right: 34px; }
.cl-bl { bottom: 34px; left: 34px; }
.cl-br { bottom: 34px; right: 34px; }
@media (max-width: 640px) { .corner-label { position: static; margin: 0 0 10px; justify-content: center; } .cl-tl,.cl-tr,.cl-bl,.cl-br{display:none;} }

.audit-center { position: relative; z-index: 2; text-align: center; max-width: 560px; }
.audit-center h2 { color: var(--sx-ivory); font-size: clamp(26px, 4vw, 40px); font-weight: 600; line-height: 1.2; }
.audit-sub { color: var(--sx-mist-blue); font-size: 15.5px; margin: 18px 0 30px; line-height: 1.6; }

/* ================= 05 — Logo marquee ================= */
.logo-marquee-section {
  padding: 68px 0;
  text-align: center;
  overflow: hidden;
  contain: paint;
  width: 100%;
  max-width: 100%;
}
.logo-eyebrow { text-align: center; margin-bottom: 32px; }
.logo-marquee {
  overflow: hidden;
  contain: paint;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track { display: flex; align-items: center; gap: 80px; width: max-content; animation: marquee 36s linear infinite; }
.logo-track img { height: 54px; max-width: 190px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.65); transition: filter 0.25s ease, transform 0.25s ease; }
.logo-track img[src*="flightarcade"] { filter: invert(1) grayscale(1) opacity(0.65); }
.logo-track img:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }
.logo-track img[src*="flightarcade"]:hover { filter: invert(1) grayscale(0) opacity(1); transform: scale(1.05); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) {
  .logo-track { gap: 52px; }
  .logo-track img { height: 42px; max-width: 140px; }
}
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* ================= Shared: stack intro ================= */
.stack-intro { text-align: center; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.stack-intro h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 600; line-height: 1.25; text-wrap: balance; }
.stack-intro .lede { color: var(--sx-slate-blue); margin-top: 14px; font-size: 16px; }

/* ================= 06 — Proof & Portfolio Showcase ================= */
.proof-section {
  padding: 80px 24px 100px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Stat Cards Bar (side-by-side, moves naturally with page flow) */
.proof-stat-bar,
.proof-sticky-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.proof-stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--sx-mist-blue);
  border-radius: 20px;
  padding: 26px 32px;
  box-shadow: 0 16px 40px rgba(10, 27, 46, 0.07);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.proof-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 163, 74, 0.45);
  box-shadow: 0 24px 50px rgba(10, 27, 46, 0.13), 0 0 20px rgba(205, 163, 74, 0.08);
}
.proof-stat-card .pcard-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--sx-navy);
  margin-bottom: 6px;
  line-height: 1;
}
.proof-stat-card .pcard-text {
  font-size: 14.5px;
  color: var(--sx-slate-blue);
  line-height: 1.55;
  margin: 0;
}

/* Portfolio Video Grid — Styled matching reference recording */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  background: #0E1520;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 16px 16px 20px;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(10, 27, 46, 0.22);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 163, 74, 0.45);
  box-shadow: 0 28px 70px rgba(10, 27, 46, 0.35), 0 0 30px rgba(205, 163, 74, 0.12);
}
.portfolio-viewport {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.portfolio-browser-bar {
  height: 28px;
  background: rgba(18, 24, 34, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 12px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.b-red { background: #FF5F56; }
.b-yellow { background: #FFBD2E; }
.b-green { background: #27C93F; }

.browser-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 10px;
  border-radius: 100px;
}
.portfolio-video-wrap {
  width: 100%;
  height: calc(100% - 28px);
  position: relative;
  overflow: hidden;
}
.portfolio-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.portfolio-badge-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 27, 46, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
}
.portfolio-card:hover .portfolio-badge-pill {
  opacity: 1;
  transform: translateY(0);
}

/* Card Metadata */
.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 0 4px;
}
.pmeta-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.pmeta-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.pmeta-info {
  flex: 1;
  min-width: 0;
}
.pmeta-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 3px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pmeta-tag {
  font-size: 12.5px;
  color: var(--sx-slate-blue);
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pmeta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.portfolio-card:hover .pmeta-arrow {
  background: var(--sx-gold);
  color: var(--sx-navy);
  transform: scale(1.1);
}

@media (max-width: 820px) {
  .proof-stat-bar,
  .proof-sticky-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ================= 07 — Pricing (side by side) ================= */
.pricing-section { padding: 60px 24px 80px; max-width: 1080px; margin: 0 auto; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 780px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--sx-mist-blue); border-radius: 20px;
  padding: 32px clamp(20px, 3vw, 36px);
  box-shadow: 0 20px 50px rgba(10,27,46,0.08);
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--sx-gold); background: linear-gradient(180deg, #fff, var(--sx-stone) 250%); }
.price-card .tier-name { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sx-slate-blue); font-weight: 600; }
.price-card h3 { font-size: 21px; font-weight: 600; margin: 8px 0 2px; }
.price-card .price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--sx-navy); margin: 10px 0 2px; font-variant-numeric: tabular-nums; }
.price-card .price small { font-size: 13px; font-weight: 500; color: var(--sx-slate-blue); }
.price-card .delivery { color: var(--sx-forest); font-size: 12.5px; font-weight: 600; margin: 0 0 14px; }
.price-card .promise { font-size: 13.5px; color: var(--sx-slate-blue); font-style: italic; margin: 0 0 16px; line-height: 1.5; }
.price-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-card li { font-size: 13.5px; color: var(--sx-navy); padding-left: 20px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--sx-forest); font-weight: 700; }

/* ================= 08 — Retainers ================= */
.retainers-section { padding: 40px 24px 60px; max-width: 780px; margin: 0 auto; }
.retainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .retainer-grid { grid-template-columns: 1fr; } }
.retainer-card { background: var(--surface); border: 1px solid var(--sx-mist-blue); border-radius: 14px; padding: 22px 24px; }
.retainer-card .tier-name { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sx-slate-blue); font-weight: 600; }
.retainer-card .price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--sx-navy); margin: 8px 0; }
.retainer-card .price small { font-size: 12px; font-weight: 500; color: var(--sx-slate-blue); }
.retainer-card p { font-size: 13.5px; color: var(--sx-slate-blue); margin: 0; line-height: 1.5; }

/* ================= 09 — ROI ================= */
.roi-section { padding: 20px 24px 80px; max-width: 780px; margin: 0 auto; }
.roi-block { padding: 32px clamp(20px, 4vw, 40px); border-radius: 18px; background: linear-gradient(155deg, var(--sx-stone), #fff); border: 1px solid var(--sx-mist-blue); text-align: center; }
.roi-block h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; }
.roi-block p { color: var(--sx-slate-blue); margin: 14px auto 0; max-width: 56ch; }
.roi-math { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; margin-top: 26px; }
.roi-math div { font-size: 12.5px; color: var(--sx-slate-blue); font-family: var(--font-body); }
.roi-math strong { display: block; font-size: 20px; color: var(--sx-navy); font-family: var(--font-display); font-variant-numeric: tabular-nums; margin-top: 4px; }

/* ================= 10 — FAQ (Scrubbable Video + One-by-One Cards) ================= */
.faq-stage {
  position: relative;
  height: 520vh;
  background: var(--sx-ivory);
}
.faq-pin {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(320px, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px;
  background: var(--sx-ivory);
}
.faq-video-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-video-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  max-height: min(640px, calc(100vh - 100px));
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.faq-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.faq-video-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--sx-ivory));
  pointer-events: none;
}

.faq-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-width: 0;
}
.faq-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.faq-header-meta .eyebrow {
  margin: 0;
}
.faq-step-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--sx-navy);
  background: rgba(10, 27, 46, 0.06);
  border: 1px solid rgba(10, 27, 46, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
}
.faq-step-badge span:first-child {
  color: var(--sx-forest);
}

/* Card Deck — Desktop Single Question View */
.faq-toggle-icon {
  display: none;
}
.faq-card-header {
  display: block;
}
.faq-card-body {
  display: block;
}

.faq-card-deck {
  position: relative;
  display: grid;
  grid-template-areas: "card";
  min-height: 250px;
}
.faq-card {
  grid-area: card;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--sx-mist-blue);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 20px 48px rgba(10, 27, 46, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  pointer-events: none;
}
.faq-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}
.faq-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sx-gold);
  margin-bottom: 12px;
}
.faq-card h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--sx-navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.faq-card p {
  font-size: clamp(14px, 1.3vw, 15.5px);
  color: var(--sx-slate-blue);
  line-height: 1.65;
  margin: 0;
}

/* Progress indicator dots */
.faq-progress-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.faq-dot {
  width: 28px;
  height: 4px;
  border-radius: 100px;
  background: var(--sx-stone);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-dot:hover {
  background: var(--sx-slate-blue);
}
.faq-dot.is-active {
  width: 44px;
  background: var(--sx-forest);
}

/* Mobile Pinned Video Scrub + One-by-One Question Deck (< 769px) */
@media (max-width: 768px) {
  .faq-stage {
    position: relative !important;
    height: 380vh !important;
    background: var(--sx-ivory) !important;
    padding: 0 !important;
  }
  .faq-pin {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: max(68px, calc(56px + env(safe-area-inset-top))) 16px 20px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: var(--sx-ivory) !important;
    max-width: 480px !important;
    margin: 0 auto !important;
  }
  .faq-header-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 6px !important;
  }
  .faq-header-meta .eyebrow {
    font-size: 11px !important;
    margin: 0 !important;
  }
  .faq-step-badge {
    display: inline-flex !important;
    font-size: 11.5px !important;
    padding: 3px 9px !important;
    border-radius: 100px !important;
    background: rgba(10, 27, 46, 0.06) !important;
    border: 1px solid rgba(10, 27, 46, 0.08) !important;
  }

  /* Seamless Character Video (No box, blend multiply directly onto ivory background) */
  .faq-video-col {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 2px !important;
    flex-shrink: 0 !important;
  }
  .faq-video-card {
    position: relative !important;
    width: min(270px, 75vw) !important;
    aspect-ratio: 9 / 11 !important;
    height: clamp(180px, 26vh, 250px) !important;
    max-height: 250px !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
  }
  .faq-video-card video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 12% !important;
    display: block !important;
    mix-blend-mode: multiply !important;
    filter: contrast(1.04) brightness(1.04) !important;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%) !important;
    pointer-events: none !important;
  }
  .faq-video-card::after {
    display: none !important;
  }

  /* One-by-One Question Deck */
  .faq-content-col {
    width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 0 !important;
  }
  .faq-card-deck {
    position: relative !important;
    display: grid !important;
    grid-template-areas: "card" !important;
    min-height: 220px !important;
    width: 100% !important;
  }
  .faq-card {
    grid-area: card !important;
    position: relative !important;
    display: none !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1px solid var(--sx-mist-blue) !important;
    border-radius: 18px !important;
    padding: 18px 20px !important;
    box-shadow: 0 12px 32px rgba(10, 27, 46, 0.08) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .faq-card.is-active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
    animation: faqMobileCardIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }
  @keyframes faqMobileCardIn {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .faq-card-header {
    display: block !important;
  }
  .faq-card-tag {
    display: block !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--sx-gold) !important;
    margin-bottom: 8px !important;
  }
  .faq-card h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--sx-navy) !important;
    line-height: 1.32 !important;
    margin: 0 0 10px !important;
  }
  .faq-card-body {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  .faq-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: var(--sx-slate-blue) !important;
    margin: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
  }
  .faq-toggle-icon {
    display: none !important;
  }

  /* Progress Dots at Bottom */
  .faq-progress-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
  }
  .faq-dot {
    width: 20px !important;
    height: 4px !important;
  }
  .faq-dot.is-active {
    width: 34px !important;
    background: var(--sx-forest) !important;
  }
}

/* ================= 11 — Final Lead Capture & Luxury Footer ================= */
.site-footer-wrap {
  padding: 60px 24px 70px;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.footer-shell {
  background: radial-gradient(circle at 50% 0%, rgba(205, 163, 74, 0.08) 0%, transparent 65%), #0A0F18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: clamp(40px, 5vw, 68px) clamp(24px, 4.5vw, 60px) 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 27, 46, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Subtle background ambient glow */
.footer-shell::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 77, 63, 0.22), transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

/* Lead Collection Card / CTA */
.footer-lead-card {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(205, 163, 74, 0.12);
  border: 1px solid rgba(205, 163, 74, 0.35);
  border-radius: 100px;
  color: var(--sx-gold);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lead-card-header h2 {
  color: #FFFFFF;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 16px;
}

.lead-sub {
  color: var(--sx-mist-blue);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 36px;
}

/* Form Container & Inputs */
.lead-form {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr auto;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease;
}

.lead-form-grid:focus-within {
  border-color: rgba(205, 163, 74, 0.45);
}

.lead-input-wrap {
  position: relative;
}

.lead-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  color: #FFFFFF;
  font-size: 16px; /* Prevents iOS Safari auto-zoom on mobile */
  font-family: var(--font-body);
  outline: none;
  min-height: 48px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lead-input-wrap input:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(205, 163, 74, 0.5);
  box-shadow: 0 0 0 3px rgba(205, 163, 74, 0.12);
}

.lead-btn {
  white-space: nowrap;
  background: var(--sx-gold);
  color: var(--sx-navy);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-btn:hover {
  transform: translateY(-2px);
  background: #deb65d;
  box-shadow: 0 10px 24px rgba(205, 163, 74, 0.35);
}

.lead-btn:active {
  transform: translateY(0);
}

.lead-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Success Message */
.lead-success-msg {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(39, 201, 63, 0.12);
  border: 1px solid rgba(39, 201, 63, 0.32);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
  text-align: left;
  animation: leadFadeIn 0.35s ease-out;
}

@keyframes leadFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lead-success-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #27C93F;
  color: #0A1B2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.lead-success-text strong {
  display: block;
  color: #FFFFFF;
  font-size: 14.5px;
  margin-bottom: 2px;
}

.lead-success-text span {
  color: #B7C4D6;
  font-size: 13px;
}

/* Top Divider Line (matching reference image) */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 52px 0 46px;
  width: 100%;
}

/* Navigation Columns & Brand Lockup */
.footer-main-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 2.75fr;
  gap: 50px;
  align-items: start;
}

.footer-brand-pane {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand img {
  display: block;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 330px;
  margin: 0 0 24px;
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

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

.f-col h4 {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.f-col li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.f-col li a:hover {
  color: #FFFFFF;
  transform: translateX(2px);
}

/* Giant Scaleaux in Text across the bottom (exact match for reference image) */
.footer-giant-watermark {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(68px, 16vw, 205px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.045);
  user-select: none;
  pointer-events: none;
  width: 100%;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

/* Responsive Breakpoints */
@media (max-width: 980px) {
  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand-desc {
    max-width: 460px;
  }
  .lead-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
  }
  .lead-input-wrap:nth-child(3) {
    grid-column: span 2;
  }
  .lead-btn {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-footer-wrap {
    padding: 36px 12px 48px;
  }
  .footer-shell {
    padding: 32px 16px 20px;
    border-radius: 20px;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px;
  }
  .lead-input-wrap:nth-child(3) {
    grid-column: span 1;
  }
  .lead-btn {
    grid-column: span 1;
    min-height: 48px;
    font-size: 15px;
    width: 100%;
  }
  .footer-giant-watermark {
    margin-top: 32px;
    font-size: clamp(36px, 14vw, 76px);
  }
}
