/* =============================================================
   ECOM WITH MO — Editorial Light
   -------------------------------------------------------------
   TOC
   1.  Design tokens (CSS variables)
   2.  Base & resets
   3.  Background system + cursor
   4.  Utilities (glass, bezel, gradient text, reveal)
   5.  Keyframes (all animations live here)
   6.  Navbar
   7.  Hero
   8.  Sections (proof, markets, voices, difference, apply)
   9.  Components (stars, morph, metrics, BTS marquee, benefits,
                   discord, voices, form)
   10. Reduced-motion overrides
   ============================================================= */


/* =============================================================
   1. DESIGN TOKENS
   ============================================================= */
:root {
  /* Surfaces */
  --bg:        #ffffff;
  --surface:   #ffffff;
  --surface-2: #fafafa;
  --ink:       #0a0a0a;

  /* Accents (kept consistent with original blue-forward brand) */
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --emerald-500: #10b981;
  --violet-500: #8b5cf6;

  /* Inverted opacity ramp — black on white (replaces dark-mode white/X) */
  --k-02: rgba(10,10,10,.025);
  --k-03: rgba(10,10,10,.04);
  --k-04: rgba(10,10,10,.05);
  --k-05: rgba(10,10,10,.06);
  --k-06: rgba(10,10,10,.07);
  --k-08: rgba(10,10,10,.09);
  --k-10: rgba(10,10,10,.11);
  --k-12: rgba(10,10,10,.14);
  --k-15: rgba(10,10,10,.18);
  --k-20: rgba(10,10,10,.22);
  --k-25: rgba(10,10,10,.26);
  --k-30: rgba(10,10,10,.32);
  --k-35: rgba(10,10,10,.4);
  --k-40: rgba(10,10,10,.45);
  --k-50: rgba(10,10,10,.55);
  --k-60: rgba(10,10,10,.65);
  --k-70: rgba(10,10,10,.72);
  --k-80: rgba(10,10,10,.83);
  --k-90: rgba(10,10,10,.9);

  /* Typography — sans/display only. No serif/italic anywhere by design. */
  --font-sans:    'Inter Tight', system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter Tight', sans-serif;
  --font-serif:   'Bricolage Grotesque', 'Inter Tight', sans-serif;
  /* Was JetBrains Mono — removed sitewide; now an Inter Tight tracking style */
  --font-mono:    'Inter Tight', system-ui, sans-serif;

  /* Motion curves */
  --ease-quint:  cubic-bezier(.22,1,.36,1);
  --ease-smooth: cubic-bezier(.32,.72,0,1);
  --ease-snap:   cubic-bezier(.16,1,.3,1);
}


/* =============================================================
   2. BASE & RESETS
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  letter-spacing: -0.008em;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font: inherit; }
::selection { background: rgba(59,130,246,.25); color: #000; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(30,41,59,.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30,41,59,.3); }


/* =============================================================
   3. BACKGROUND SYSTEM + CURSOR
   ============================================================= */
.bg-system { position: fixed; inset: 0; z-index: -10; overflow: hidden; background: var(--bg); }
.bg-base   { position: absolute; inset: 0; background: radial-gradient(ellipse 120% 80% at 50% -20%, #eef4ff 0%, #f7f9fc 60%, #ffffff 100%); }
.bg-corner--tr { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 100% 0%, #e4ecff 0%, transparent 60%); }
.bg-corner--bl { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 40% at 0% 100%, #ecefff 0%, transparent 55%); }

.bg-aurora { position: absolute; border-radius: 50%; will-change: transform; }
.bg-aurora--1 { top: -15%; left: 10%; width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 65%); animation: aurora-1 35s ease-in-out infinite; }
.bg-aurora--2 { top: 35%; right: -10%; width: 900px;  height: 900px;  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%); animation: aurora-2 42s ease-in-out infinite; }
.bg-aurora--3 { bottom: -5%; left: 30%; width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(16,185,129,.05) 0%, transparent 65%); animation: aurora-3 38s ease-in-out infinite; }

.bg-beam  { position: absolute; inset: 0; background: conic-gradient(from 220deg at 50% 40%, transparent 0deg, rgba(59,130,246,.035) 20deg, transparent 40deg); animation: beam 24s ease-in-out infinite; will-change: transform; }
.bg-pulse { position: absolute; top: 50%; left: 50%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,.04) 0%, transparent 65%); animation: pulse 10s ease-in-out infinite; will-change: transform; }
.bg-grid  { position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(circle, rgba(30,41,59,.7) 1px, transparent 1px); background-size: 56px 56px; }

.cursor-light {
  position: fixed; top: 0; left: 0;
  width: 500px; height: 500px; border-radius: 50%;
  pointer-events: none; z-index: 5;
  mix-blend-mode: multiply;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(59,130,246,.05) 0%, transparent 60%);
  will-change: transform;
}
@media (pointer: coarse) { .cursor-light { display: none; } }


/* =============================================================
   4. UTILITIES
   ============================================================= */

/* Glass — translucent panel with subtle blue accent on hover */
.glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--k-06);
  box-shadow:
    0 4px 24px -1px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .7s var(--ease-smooth), background .7s var(--ease-smooth);
}
.glass:hover {
  background: rgba(255,255,255,.75);
  border-color: rgba(59,130,246,.2);
}

/* Double-bezel cards */
.bezel       { position: relative; padding: 1px; border-radius: 2rem; background: linear-gradient(to bottom, var(--k-08), transparent); }
.bezel-inner { background: var(--surface); border-radius: calc(2rem - 1px); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 1px 2px rgba(0,0,0,.02), 0 10px 30px -12px rgba(15,23,42,.08); }
.bezel-sm       { position: relative; padding: 1px; border-radius: 1rem; background: linear-gradient(to bottom, var(--k-08), transparent); }
.bezel-sm-inner { background: var(--surface); border-radius: calc(1rem - 1px); box-shadow: inset 0 1px 0 rgba(255,255,255,1); }

/* Gradient text */
.text-gradient-silver {
  background: linear-gradient(120deg,#0f172a 0%,#334155 20%,#64748b 40%,#334155 60%,#0f172a 80%,#1e293b 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 10s ease-in-out infinite;
}
.text-gradient-blue {
  background: linear-gradient(120deg,#2563eb 0%,#3b82f6 30%,#1d4ed8 50%,#3b82f6 70%,#2563eb 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 12s ease-in-out infinite;
}

/* Reveal (IntersectionObserver-driven) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity .7s var(--ease-smooth),
    transform .7s var(--ease-smooth),
    filter .7s var(--ease-smooth);
}
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }
.is-delay-1 { transition-delay: .1s; }
.is-delay-2 { transition-delay: .2s; }
.is-delay-3 { transition-delay: .3s; }
.is-delay-4 { transition-delay: .4s; }
.is-delay-5 { transition-delay: .5s; }


/* =============================================================
   5. KEYFRAMES — all loop cleanly (verified start == end)
   ============================================================= */
@keyframes aurora-1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(5%, -3%, 0) rotate(2deg); }
}
@keyframes aurora-2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(-4%, 4%, 0) rotate(-2deg); }
}
@keyframes aurora-3 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(3%, -4%, 0) rotate(1deg); }
}
@keyframes beam {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(8deg); }
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: .5; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: .9; }
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes glow-pulse {
  0%, 100% { opacity: .8; }
  50%      { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}
@keyframes pulse-step {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.18); }
}
@keyframes ping {
  0%          { transform: scale(1);   opacity: 1; }
  75%, 100%   { transform: scale(2.5); opacity: 0; }
}
/* Marquee: translate by -50% + half-gap to eliminate seam.
   Each track has 2 duplicate sets; 12 items → 11 gaps → seam at -(50% + gap/2). */
@keyframes marquee-ltr { to { transform: translate3d(calc(-50% - 16px), 0, 0); } }
@keyframes marquee-rtl { from { transform: translate3d(calc(-50% - 16px), 0, 0); } }
@keyframes marquee-bts { to { transform: translate3d(calc(-50% - 10px), 0, 0); } }
@keyframes marquee-diff { to { transform: translate3d(calc(-50% - 12px), 0, 0); } }


/* =============================================================
   6. NAVBAR
   ============================================================= */
.nav-wrap {
  --y: 0px;   /* hide/show offset */
  --s: 1;     /* scroll-shrink scale */
  position: fixed; top: 32px; left: 50%;
  transform: translateX(-50%) translateY(var(--y)) scale(var(--s));
  z-index: 100;
  transition: transform .5s var(--ease-snap), opacity .35s ease;
  will-change: transform;
}
.nav-wrap.is-scrolled { --s: .95; }
.nav-wrap.is-hidden { --y: -140%; opacity: 0; pointer-events: none; }

.nav {
  position: relative; display: flex; align-items: center;
  padding: 6px;
  transition: all 1s var(--ease-snap);
}

.nav-links { display: flex; gap: 4px; padding: 2px 8px; position: relative; }
.nav-link {
  position: relative;
  padding: 10px 24px; border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--k-35);
  transition: color .5s var(--ease-smooth);
  z-index: 1;
}
.nav-link:hover { color: var(--k-70); }
.nav-link.is-active { color: var(--ink); }
.nav-pill {
  position: absolute; top: 2px; bottom: 2px;
  border-radius: 999px;
  background: var(--k-08);
  border: 1px solid var(--k-08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  transition:
    left .6s cubic-bezier(.22,1.2,.36,1),
    width .6s cubic-bezier(.22,1.2,.36,1);
  pointer-events: none;
}

.nav-mobile { display: none; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 12px; min-width: 260px; }
.nav-mobile-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--k-40); }
.hamburger { width: 16px; height: 12px; display: flex; flex-direction: column; justify-content: space-between; color: var(--k-40); padding: 8px; box-sizing: content-box; border-radius: 50%; }
.hamburger span { display: block; height: 1.5px; background: currentColor; border-radius: 1px; transition: all .3s; }

@media (max-width: 639px) {
  .nav-mobile { display: none; }
  .nav-links { padding: 2px 4px; }
  .nav-link { padding: 9px 18px; font-size: 10.5px; letter-spacing: .12em; }
  .nav-wrap { top: 16px; }
}

.nav-spacer { height: 80px; }


/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  padding: 16px 16px 20px;
  min-height: calc(100svh - 80px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: visible;
}
@media (min-width: 768px) { .hero { padding: 18px 24px 26px; } }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px;
  position: relative; z-index: 10; width: 100%;
}
@media (min-width: 768px) { .hero-inner { gap: 6px; } }
.hero-inner > .reveal:nth-child(2) { margin-top: -4px; }

/* Trust badge + stars */
.badge { display: inline-flex; align-items: center; gap: 16px; padding: 10px 22px; border-radius: 999px; }
.glow-pulse { animation: glow-pulse 8s ease-in-out infinite; }
.stars { display: flex; gap: 4px; }
.star { width: 16px; height: 16px; color: var(--k-12); transition: fill .35s ease, color .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1), filter .35s ease; }
.star.is-lit { color: #eab308; fill: #eab308; transform: scale(1.3); filter: drop-shadow(0 0 6px #eab308) drop-shadow(0 0 12px rgba(234,179,8,.6)); }
.badge-text { font-family: var(--font-sans); font-weight: 500; font-size: 14px; color: var(--k-80); letter-spacing: -.01em; }

/* H1 morph wrapper (absolute-stacked texts to prevent layout shift) */
.h1-wrap { min-height: clamp(42px, 5.4vw, 74px); display: flex; align-items: center; justify-content: center; position: relative; width: 100%; }
.h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(32px, 5.6vw, 76px);
  line-height: 1.02; letter-spacing: -.035em;
  font-variation-settings: "opsz" 144;
  padding: 0 16px;
}
.h1-text {
  position: absolute; left: 50%; top: 50%;
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap; line-height: 1;
  padding: 0 8px;
  font-weight: 600;
  background: linear-gradient(120deg,#0f172a 0%,#334155 35%,#64748b 50%,#334155 65%,#0f172a 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 10s ease-in-out infinite;
  transition:
    opacity .6s cubic-bezier(.2,.8,.2,1),
    filter .6s cubic-bezier(.2,.8,.2,1),
    transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, filter, transform;
}
.h1-text.is-hidden  { opacity: 0; filter: blur(12px); transform: translate3d(-50%, -50%, 0) scale(.92); }
.h1-text.is-showing { opacity: 1; filter: blur(0);    transform: translate3d(-50%, -50%, 0) scale(1); }

.sub-wrap { display: flex; flex-direction: column; gap: 8px; max-width: 900px; }
.sub-h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(16px, 1.95vw, 26px); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.sub-p { font-family: var(--font-sans); max-width: 720px; margin: 0 auto; letter-spacing: -.005em; }
.sub-p--light  { font-size: clamp(13px, 1.05vw, 16px); color: var(--k-40); font-weight: 300; }
.sub-p--strong { font-size: clamp(13px, .95vw, 15px);  color: var(--k-60); font-weight: 500; }

/* CTA */
.cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 44px; border-radius: 1.5rem;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 16px; letter-spacing: -.005em; color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 55%, #06b6d4 100%);
  border: 1px solid rgba(96,165,250,.5);
  box-shadow: 0 0 40px rgba(59,130,246,.3);
  overflow: hidden;
  transition: transform .3s var(--ease-snap), box-shadow .7s;
  will-change: transform;
}
.cta:hover  { transform: scale(1.05); box-shadow: 0 0 80px rgba(59,130,246,.5); }
.cta:active { transform: scale(.97); }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(255,255,255,.25), transparent); transform: translateX(-100%); transition: transform 1s; }
.cta:hover::before { transform: translateX(100%); }
.cta > span, .cta > svg { position: relative; z-index: 1; }
.cta svg { width: 22px; height: 22px; transition: transform .5s; }
.cta:hover svg { transform: translateX(8px); }


/* ---- Hero — Side proof images (one each side, flanking the carousel) ----------------- */
@keyframes receipt-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,.05); }
}
.hero-proof-stack {
  position: absolute;
  inset: 0;
  z-index: 14;
  pointer-events: none;
}
.hero-receipt {
  position: absolute;
  top: clamp(0px, 0.5vh, 12px);
  width: clamp(170px, 16vw, 280px);
  aspect-ratio: 1290 / 1614;  /* matches seller-proof-1.jpg natural ratio so the left card never crops */
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  pointer-events: auto;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 28px 56px -22px rgba(15,23,42,.32),
    0 10px 22px -12px rgba(59,130,246,.22);
  transition: transform .55s var(--ease-quint), box-shadow .55s var(--ease-quint);
  will-change: transform;
}
.hero-receipt > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.hero-receipt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.55), rgba(139,92,246,.3) 40%, rgba(255,255,255,0) 70%);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
          mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-receipt--left  { left:  clamp(10px, 2vw, 60px); transform: rotate(-4deg); }
.hero-receipt--right { right: clamp(10px, 2vw, 60px); transform: rotate(4deg); }
.hero-receipt--left:hover,
.hero-receipt--left:focus-visible {
  transform: translateY(-4px) rotate(-1deg) scale(1.04);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 36px 70px -20px rgba(15,23,42,.4),
    0 16px 28px -10px rgba(59,130,246,.32);
  outline: none;
  z-index: 16;
}
.hero-receipt--right:hover,
.hero-receipt--right:focus-visible {
  transform: translateY(-4px) rotate(1deg) scale(1.04);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 36px 70px -20px rgba(15,23,42,.4),
    0 16px 28px -10px rgba(59,130,246,.32);
  outline: none;
  z-index: 16;
}

.hero-receipt-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease-quint), transform .45s var(--ease-quint);
  z-index: 3;
  box-shadow: 0 8px 24px -6px rgba(15,23,42,.35), 0 0 0 1px rgba(255,255,255,.4) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-receipt-zoom svg { width: 18px; height: 18px; }
.hero-receipt:hover .hero-receipt-zoom,
.hero-receipt:focus-visible .hero-receipt-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (max-width: 1100px) {
  .hero-receipt { width: clamp(130px, 14vw, 200px); }
}
@media (max-width: 760px) {
  .hero-receipt { width: 110px; }
}
@media (max-width: 520px) {
  .hero-proof-stack { display: none; }
}


/* ---- Hero — Behind-the-scenes proof strip ----------------- */
.hero-bts {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0;
}

.hero-bts-strip {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.hero-bts-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0;
  /* Negative delay seeds the marquee mid-cycle so a proof slide
     lands on the right side of the strip on page load — then it
     drifts left through center as the marquee continues. */
  animation: marquee-hero-bts 55s linear -42s infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* "No bullshit around here. See for yourself." badge above carousel */
.hero-bts-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--k-08);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 22px -10px rgba(15,23,42,.18);
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-bts-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
  animation: receipt-pulse 2s ease-in-out infinite;
}
.hero-bts-tag-text { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.hero-bts-tag-text > span { line-height: 1; }
.hero-bts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-bts-strip:hover .hero-bts-track { animation-play-state: paused; }
@keyframes marquee-hero-bts { to { transform: translate3d(calc(-50% - 8px), 0, 0); } }

.hero-bts-slide {
  flex: 0 0 auto;
  height: clamp(200px, 32svh, 320px);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--k-06);
  background: var(--surface-2);
  box-shadow: 0 4px 16px -4px rgba(15,23,42,.08);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s, border-color .6s;
  cursor: zoom-in;
}
@media (max-width: 900px) { .hero-bts-slide { height: clamp(170px, 24svh, 230px); } }
@media (max-width: 560px) { .hero-bts-slide { height: clamp(140px, 18svh, 180px); } .hero-bts-track { gap: 12px; } }

/* Affordance icons (play / zoom) — appear on hover */
.bts-play, .bts-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease-quint), transform .45s var(--ease-quint);
  z-index: 3;
  box-shadow: 0 8px 24px -6px rgba(15,23,42,.35), 0 0 0 1px rgba(255,255,255,.4) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bts-play svg, .bts-zoom svg { width: 20px; height: 20px; }
.bts-play svg { margin-left: 2px; }
.hero-bts-slide:hover .bts-play,
.hero-bts-slide:hover .bts-zoom,
.hero-bts-slide:focus-visible .bts-play,
.hero-bts-slide:focus-visible .bts-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hero-bts-slide:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; }

.hero-bts-slide img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.hero-bts-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,23,42,.18) 100%);
  opacity: 0;
  transition: opacity .6s;
  pointer-events: none;
}
.hero-bts-slide:hover { transform: translateY(-4px); border-color: var(--k-15); box-shadow: 0 20px 40px -20px rgba(15,23,42,.18); }
.hero-bts-slide:hover img { transform: scale(1.04); }
.hero-bts-slide:hover::after { opacity: 1; }

/* Proof slides — portrait phone-screenshot aspect, sits in the carousel like the videos */
.hero-bts-slide--proof {
  aspect-ratio: 1290 / 1614;
  background: #fff;
  border-color: var(--k-10);
  box-shadow: 0 8px 22px -6px rgba(15,23,42,.18), 0 4px 12px -4px rgba(59,130,246,.16);
}
.hero-bts-slide--proof img {
  object-fit: cover;
  object-position: top center;
  /* Zoom in on the left side where the "$11.18M USD" / "$9.829M USD" labels live,
     so the headline revenue is legible without opening the lightbox. */
  transform: scale(1.6);
  transform-origin: 4% 28%;
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.hero-bts-slide--proof:hover img { transform: scale(1.7); }
.hero-bts-slide--proof::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,.5), rgba(139,92,246,.3) 40%, rgba(255,255,255,0) 70%);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
          mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Video slides — portrait (9:16) to break the rhythm of square slides */
.hero-bts-slide--video {
  aspect-ratio: 9 / 16;
  background: #0a0a0a;
  border-color: var(--k-10);
  box-shadow: 0 6px 20px -8px rgba(15,23,42,.15);
}
.hero-bts-slide--video .bts-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.hero-bts-slide--video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%;        /* 16/9 ratio — scales 16:9 source to cover 9:16 frame */
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;  /* don't trap pointer in the marquee */
}
.hero-bts-slide--video::after {
  background: linear-gradient(180deg, rgba(15,23,42,.08) 0%, transparent 30%, transparent 70%, rgba(15,23,42,.28) 100%);
  opacity: 1;
}
.hero-bts-slide--video:hover::after { opacity: 1; }


/* ---- Hero — Floating marketplace constellation ----------------- */
.hero-orbits {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-orbits-stage {
  position: relative;
  width: 100%;
}
.hero-orbits--top    .hero-orbits-stage { height: 96px; }
.hero-orbits--bottom .hero-orbits-stage { height: 108px; }
/* Clearance so floating chips never visually touch H1, subhead, or carousel */
.hero-orbits--top    { padding-bottom: 24px; }
.hero-orbits--bottom { padding-top:    24px; }

/* Bridging glow: extends the bottom constellation's color halo past the hero
   edge into the next section, so the transition feels like a soft fade-out
   instead of an abrupt stop. */
.hero-orbits--bottom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 110%;
  max-width: 1400px;
  height: 320px;
  transform: translateX(-50%);
  background:
    radial-gradient(60% 100% at 50% 0%,
      rgba(59,130,246,.16) 0%,
      rgba(37,99,235,.10) 32%,
      rgba(96,165,250,.06) 58%,
      transparent 78%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.hero-orbit-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  height: 240%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.hero-orbit-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 60% at 28% 50%, rgba(59,130,246,.22), transparent 70%),
    radial-gradient(42% 65% at 72% 60%, rgba(37,99,235,.16), transparent 72%),
    radial-gradient(36% 55% at 50% 40%, rgba(96,165,250,.16), transparent 68%);
  filter: blur(28px);
  opacity: .9;
  animation: aurora-1 38s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
}

.hero-orbit-anim {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background:
    linear-gradient(145deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.86) 55%,
      rgba(248,250,254,.90) 100%);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--brand, 99,102,241), .14);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(15,23,42,.04),
    0 1px 2px rgba(15,23,42,.05),
    0 10px 26px -12px rgba(15,23,42,.22),
    0 0 24px rgba(var(--brand, 99,102,241), .12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .5s var(--ease-smooth), border-color .5s var(--ease-smooth);
  will-change: transform;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.hero-orbit-logo {
  max-width: 84%;
  max-height: 73%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1) drop-shadow(0 1px 2px rgba(15,23,42,.10));
}
/* JPG logos with hard white backgrounds (Amazon, Shein) — darken mode picks
   the darker of the JPG vs the chip backdrop, which erases the white square
   crisply without the slight halo `multiply` leaves on a tinted chip. */
.hero-orbit--amazon .hero-orbit-logo,
.hero-orbit--shein  .hero-orbit-logo {
  mix-blend-mode: darken;
  filter: saturate(1);
}
/* Match the carousel: those two chips get a flat-white backdrop so the JPG
   white merges seamlessly instead of sitting on the gradient/glow. */
.hero-orbit--amazon .hero-orbit-anim,
.hero-orbit--shein  .hero-orbit-anim {
  background: #ffffff;
}

.hero-orbit:hover { z-index: 5; }
.hero-orbit:hover .hero-orbit-anim {
  border-color: rgba(var(--brand, 99,102,241), .38);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(15,23,42,.04),
    0 18px 38px -14px rgba(15,23,42,.30),
    0 0 36px rgba(var(--brand, 99,102,241), .35),
    0 0 64px rgba(var(--brand, 99,102,241), .14);
  animation-play-state: paused;
}

/* Per-logo size + position + rotation + brand color (R,G,B for halo glow).
   Symmetry: top and bottom rows share the same x-coords (7/27/50/73/93%),
   mirror y-coords (sum to 100%), and equal-and-opposite rotation signs.
   Sizes vary per logo so the scatter still feels organic. */
.hero-orbit--ebay     { width: 116px; height: 116px; left:  7%; top: 50%; --rot:  11deg; --brand: 239,68,68; }
.hero-orbit--kohls    { width:  74px; height:  74px; left: 27%; top: 30%; --rot: -10deg; --brand:  0,71,148; }
.hero-orbit--target   { width:  98px; height:  98px; left: 50%; top: 64%; --rot:  -9deg; --brand: 204, 0, 0; }
.hero-orbit--poshmark { width:  90px; height:  90px; left: 73%; top: 35%; --rot:   7deg; --brand: 219,39,119; }
.hero-orbit--stockx   { width:  80px; height:  80px; left: 93%; top: 65%; --rot:   8deg; --brand: 34,197, 94; }

.hero-orbit--amazon   { width: 134px; height: 134px; left:  7%; top: 50%; --rot: -11deg; --brand: 255,153, 51; }
.hero-orbit--walmart  { width: 110px; height: 110px; left: 27%; top: 65%; --rot:  10deg; --brand:  0,113,220; }
.hero-orbit--whatnot  { width: 102px; height: 102px; left: 50%; top: 35%; --rot:   9deg; --brand: 247, 84,100; }
.hero-orbit--mercari  { width:  86px; height:  86px; left: 73%; top: 65%; --rot:  -7deg; --brand: 249,115, 22; }
.hero-orbit--shein    { width:  82px; height:  82px; left: 93%; top: 30%; --rot:  -8deg; --brand: 99,102,241; }

/* Float variants — desynced via duration + negative delay */
.float-1 { animation-name: heroLogoFloat-1; animation-duration: 6.5s; animation-delay: -1.2s; }
.float-2 { animation-name: heroLogoFloat-2; animation-duration: 7.2s; animation-delay: -0.4s; }
.float-3 { animation-name: heroLogoFloat-3; animation-duration: 8.0s; animation-delay: -2.1s; }
.float-4 { animation-name: heroLogoFloat-4; animation-duration: 5.8s; animation-delay: -3.3s; }

@keyframes heroLogoFloat-1 {
  0%, 100% { transform: translate3d(0, 0, 0)   rotate(0deg); }
  50%      { transform: translate3d(2px, -10px, 0) rotate(-2deg); }
}
@keyframes heroLogoFloat-2 {
  0%, 100% { transform: translate3d(0, 0, 0)    rotate(0deg); }
  50%      { transform: translate3d(-4px, 8px, 0) rotate(2.5deg); }
}
@keyframes heroLogoFloat-3 {
  0%, 100% { transform: translate3d(0, 0, 0)   rotate(0deg); }
  50%      { transform: translate3d(5px, -7px, 0) rotate(1.5deg); }
}
@keyframes heroLogoFloat-4 {
  0%, 100% { transform: translate3d(0, 0, 0)    rotate(0deg); }
  50%      { transform: translate3d(-3px, -9px, 0) rotate(-2.5deg); }
}

/* Tablet + mobile: smaller chips so they don't overflow into the sub-h2 text. */
@media (max-width: 1023px) {
  .hero-orbits          { padding: 0 4px; }
  .hero-orbits--top    .hero-orbits-stage { height: 92px; }
  .hero-orbits--bottom .hero-orbits-stage { height: 104px; }
  .hero-orbits--top    { padding-bottom: 16px; }
  .hero-orbits--bottom { padding-top:    16px; }
  .hero-orbit-anim      { border-radius: 18px; }
  .hero-orbit--ebay     { width: 74px; height: 74px; left:  7%; top: 50%; }
  .hero-orbit--kohls    { width: 48px; height: 48px; left: 27%; top: 30%; }
  .hero-orbit--target   { width: 64px; height: 64px; left: 50%; top: 64%; }
  .hero-orbit--poshmark { width: 58px; height: 58px; left: 73%; top: 35%; }
  .hero-orbit--stockx   { width: 52px; height: 52px; left: 93%; top: 65%; }
  .hero-orbit--amazon   { width: 86px; height: 86px; left:  7%; top: 50%; }
  .hero-orbit--walmart  { width: 70px; height: 70px; left: 27%; top: 65%; }
  .hero-orbit--whatnot  { width: 66px; height: 66px; left: 50%; top: 35%; }
  .hero-orbit--mercari  { width: 56px; height: 56px; left: 73%; top: 65%; }
  .hero-orbit--shein    { width: 54px; height: 54px; left: 93%; top: 30%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-anim,
  .hero-orbit-bg::before { animation: none !important; }
}


/* =============================================================
   8. SECTIONS
   ============================================================= */

.section           { padding: 44px 16px; position: relative; overflow: hidden; }
@media (min-width: 640px)  { .section { padding: 52px 24px; } }
@media (min-width: 1024px) { .section { padding: 60px 32px; } }

.container { max-width: 1200px; margin: 0 auto; position: relative; }

.section--top-divider::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(to right, transparent, var(--k-08), transparent);
}
/* The first section after the hero gets no hard divider — the bridging glow does the work */
.hero + .section--top-divider::before { display: none; }

.sec-head { text-align: center; max-width: 900px; margin: 0 auto 40px; }
.sec-badge      { display: inline-flex; align-items: center; padding: 8px 20px; border-radius: 999px; margin-bottom: 24px; }
.sec-badge-text { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--k-70); letter-spacing: .14em; text-transform: uppercase; }
.sec-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.05; letter-spacing: -.03em;
  font-variation-settings: "opsz" 144;
}
.sec-title-line { display: block; }
.sec-title-line + .sec-title-line { font-family: var(--font-display); font-style: normal; font-weight: 600; letter-spacing: -.035em; }
.sec-sub {
  margin-top: 20px;
  font-family: var(--font-sans); font-size: clamp(14px, 1.15vw, 18px);
  color: var(--k-40); line-height: 1.55; letter-spacing: -.005em;
  max-width: 640px; margin-left: auto; margin-right: auto;
}


/* =============================================================
   9. COMPONENTS
   ============================================================= */

/* ---- Proof / Stats ----------------------------------------- */
.proof-stats { display: grid; gap: 16px; margin-bottom: 24px; }

.proof-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

.stat .bezel-inner {
  padding: 28px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-quint), box-shadow .45s var(--ease-quint);
}
.stat:hover .bezel-inner {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 1px 2px rgba(0,0,0,.02), 0 22px 48px -20px rgba(15,23,42,.18);
}

.stat-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.stat-index { color: var(--k-90); font-weight: 600; }
.stat-rule { flex: 1; height: 1px; background: linear-gradient(to right, var(--k-12), transparent); }
.stat-tag { color: var(--k-50); }

.stat-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 5.4vw, 76px);
  line-height: .95;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, #0a0a0a 0%, #1e293b 30%, #475569 55%, #1e293b 80%, #0a0a0a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variation-settings: "opsz" 96;
  margin-bottom: 18px;
  display: inline-block;
}
.stat-slash {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 .015em;
  font-weight: 500;
}

.stat-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.018em;
  color: var(--k-90);
  margin-bottom: 6px;
}
.stat-detail {
  font-size: 13px;
  line-height: 1.5;
  color: var(--k-55);
  max-width: 32ch;
}

/* Subtle dotted-grid texture inside each card */
.stat .bezel-inner::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: top right;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 100% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 60% at 100% 0%, #000 0%, transparent 70%);
  pointer-events: none;
  opacity: .55;
}

/* ---- Hero stat (revenue) ----- */
.stat--hero .bezel-inner {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 820px) {
  .stat--hero .bezel-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    padding: 44px 48px;
    gap: 48px;
  }
}

.stat--hero .stat-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--k-04) 1px, transparent 1px),
    linear-gradient(to bottom, var(--k-04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 75%);
  pointer-events: none;
}
.stat--hero .bezel-inner::after { display: none; }

.stat-hero-main { position: relative; z-index: 1; }
.stat-hero-aside { position: relative; z-index: 1; }

.stat-figure { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.stat-number--xl {
  font-size: clamp(72px, 9.5vw, 132px);
  letter-spacing: -.055em;
  margin-bottom: 0;
  background: linear-gradient(120deg, #0f172a 0%, #334155 18%, #2563eb 45%, #1e293b 70%, #0a0a0a 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 14s ease-in-out infinite;
}

.stat-trend {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.22);
  color: #047857;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.stat--hero .stat-headline { font-size: 19px; }
.stat--hero .stat-detail { max-width: 44ch; font-size: 13.5px; }

/* Sparkline panel */
.stat-spark {
  position: relative;
  padding: 18px 18px 14px;
  border-radius: 14px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,.2));
  border: 1px solid var(--k-06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.stat-spark-label {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--k-50);
  margin-bottom: 8px;
}
.stat-spark-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,.15);
  animation: pulse 2.4s ease-in-out infinite;
}
.stat-spark-svg {
  width: 100%; height: 64px; display: block;
}
.stat-spark-axis {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--k-40);
  margin-top: 6px;
}


/* =============================================================
   PROOF — clean minimal stat row
   ============================================================= */
.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  margin-bottom: 24px;
  padding: 32px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--k-06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 30px -12px rgba(15,23,42,.06);
}
@media (min-width: 820px) {
  .proof-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 52px 44px;
  }
  .proof-row .metric + .metric {
    border-left: 1px solid var(--k-06);
    padding-left: 36px;
  }
  .proof-row .metric:not(:last-child) { padding-right: 36px; }
}

.metric { display: flex; flex-direction: column; gap: 16px; min-width: 0; height: 100%; justify-content: flex-start; }
.metric-tag {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--k-50);
}
.metric-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(56px, 6vw, 92px);
  line-height: .95; letter-spacing: -.05em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.metric-slash {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  margin: 0 .015em;
}
.metric-cap {
  font-size: 13.5px; line-height: 1.55;
  color: var(--k-55);
  max-width: 30ch;
}



/* ---- Behind the scenes — auto-play marquee, no manual controls ---- */
.bts { margin-top: 96px; }
.bts-head { text-align: center; margin-bottom: 40px; }
.bts-subtitle {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.1; letter-spacing: -.03em;
  font-variation-settings: "opsz" 96;
}

.bts-carousel { position: relative; max-width: 1200px; margin: 0 auto; }
.bts-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.bts-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
  animation: marquee-bts 50s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.bts-slide {
  flex: 0 0 calc((100vw - 80px) / 3);
  max-width: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--k-06);
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  box-shadow: 0 2px 10px -2px rgba(15,23,42,.06);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s, border-color .6s;
}
@media (max-width: 900px) { .bts-slide { flex-basis: calc((100vw - 60px) / 2); } }
@media (max-width: 560px) { .bts-slide { flex-basis: 78vw; } .bts-track { gap: 14px; } }

.bts-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.bts-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,23,42,.18) 100%);
  opacity: 0;
  transition: opacity .6s;
  pointer-events: none;
}
.bts-slide:hover { transform: translateY(-4px); border-color: var(--k-15); box-shadow: 0 20px 40px -20px rgba(15,23,42,.18); }
.bts-slide:hover img { transform: scale(1.04); }
.bts-slide:hover::after { opacity: 1; }

.bts-caption { max-width: 720px; margin: 40px auto 0; }
.bts-caption .bezel-sm-inner { padding: 24px; text-align: center; }
.bts-caption p { font-family: var(--font-sans); font-size: clamp(14px, 1vw, 16px); color: var(--k-50); line-height: 1.65; letter-spacing: -.005em; }


/* ---- Benefits ----------------------------------------------- */
.benefits-wrap { margin-top: 32px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.benefits-wrap .bezel-inner { padding: 24px; position: relative; }
@media (min-width: 768px) { .benefits-wrap .bezel-inner { padding: 36px; } }
.benefits-wrap .bezel-inner::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 33%; height: 1px;
  background: linear-gradient(to right, transparent, var(--k-10), transparent);
}

.benefits-head { text-align: center; margin-bottom: 28px; }
.benefits-head .sec-badge { margin-bottom: 16px; }
.benefits-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05; letter-spacing: -.032em;
  font-variation-settings: "opsz" 96;
}

.benefits-list { display: flex; flex-direction: column; gap: 2px; }
.benefit { display: flex; align-items: flex-start; gap: 16px; padding: 14px; border-radius: 12px; border: 1px solid transparent; transition: all .5s var(--ease-smooth); }
.benefit:hover { background: var(--k-02); border-color: var(--k-03); transform: translateX(4px); }
.benefit-check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.22); display: flex; align-items: center; justify-content: center; transition: all .5s; margin-top: 2px; }
.benefit:hover .benefit-check { transform: scale(1.1); border-color: rgba(16,185,129,.45); }
.benefit-check svg { width: 12px; height: 12px; color: #059669; stroke-width: 2.5; }
.benefit-text { font-family: var(--font-sans); font-size: clamp(14px, 1vw, 16px); color: var(--k-60); line-height: 1.6; letter-spacing: -.005em; padding-top: 2px; transition: color .5s; }
.benefit:hover .benefit-text { color: var(--k-90); }


/* ---- Discord block ----------------------------------------- */
.discord-wrap { margin-top: 24px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.discord-wrap .bezel {
  position: relative;
  background:
    radial-gradient(ellipse 70% 90% at 0% 0%, rgba(88,101,242,.22), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(59,130,246,.18), transparent 65%),
    linear-gradient(155deg, rgba(255,255,255,.95), rgba(248,250,254,.85));
  border: 1px solid rgba(88,101,242,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 40px 80px -32px rgba(88,101,242,.30);
  overflow: hidden;
}
.discord-wrap .bezel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 120%, rgba(88,101,242,.10), transparent 50%);
}
.discord-wrap .bezel-inner { padding: 32px 24px; position: relative; z-index: 1; }
@media (min-width: 768px) { .discord-wrap .bezel-inner { padding: 48px 44px; } }
.discord-wrap .bezel-inner::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(88,101,242,.55), transparent);
}

/* Two-column layout */
.discord-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .discord-grid { grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
}

/* LEFT — pitch */
.discord-left { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.discord-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  color: #047857; letter-spacing: -.005em;
  align-self: flex-start;
}
.discord-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
  animation: discord-pulse 1.8s ease-in-out infinite;
}
@keyframes discord-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,.06); }
}

.discord-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02; letter-spacing: -.035em;
  font-variation-settings: "opsz" 96;
  margin: 0;
}
.discord-title span { display: block; }

.discord-desc {
  font-family: var(--font-sans); font-size: clamp(15px, 1.05vw, 17px);
  color: var(--k-50); line-height: 1.6; letter-spacing: -.005em;
  max-width: 520px; margin: 0;
}

.discord-feats {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.discord-feats li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-sans); font-size: 14.5px;
  color: var(--k-60); line-height: 1.55; letter-spacing: -.005em;
}
.discord-feats li strong {
  color: var(--ink); font-weight: 600;
  font-family: var(--font-display); letter-spacing: -.01em;
}
.discord-feat-bullet {
  color: #5865F2; font-weight: 700; flex-shrink: 0;
  font-family: var(--font-display);
  margin-top: 1px;
}

/* Stats row */
.discord-stats {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(88,101,242,.06), rgba(59,130,246,.04));
  border: 1px solid rgba(88,101,242,.14);
  border-radius: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.discord-stat { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.discord-stat strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; color: var(--ink); letter-spacing: -.025em;
  line-height: 1;
}
.discord-stat span {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--k-50); letter-spacing: -.005em;
}
.discord-stat-divider {
  width: 1px; height: 26px;
  background: linear-gradient(to bottom, transparent, rgba(88,101,242,.25), transparent);
  flex-shrink: 0;
}

.discord-cta-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 8px;
}
.discord-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12.5px;
  color: var(--k-40); letter-spacing: -.005em;
}
.discord-meta strong { color: var(--ink); font-weight: 600; }

.discord-mentor-note {
  display: inline-flex; align-items: flex-start; gap: 9px;
  margin: 6px 0 0;
  padding: 9px 14px;
  background: linear-gradient(135deg, rgba(88,101,242,.07), rgba(88,101,242,.02));
  border: 1px solid rgba(88,101,242,.16);
  border-radius: 12px;
  font-family: var(--font-sans); font-size: 12.5px; line-height: 1.45;
  color: var(--k-60); letter-spacing: -.005em;
  max-width: 540px;
}
.discord-mentor-note strong {
  color: var(--ink); font-weight: 600;
  font-family: var(--font-display); letter-spacing: -.01em;
}
.discord-mentor-lock {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(88,101,242,.5);
  margin-top: 1px;
}

.discord-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: #fff; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  letter-spacing: -.005em;
  transition: transform .4s var(--ease-snap), box-shadow .4s;
  box-shadow: 0 20px 40px -12px rgba(88,101,242,.45);
}
.discord-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 26px 50px -12px rgba(88,101,242,.55); }

/* RIGHT — chat card */
.discord-right { display: flex; align-items: stretch; min-width: 0; }
.discord-card {
  width: 100%;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 1.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 24px 48px -20px rgba(15,23,42,.18);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.discord-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--k-05);
  background: linear-gradient(to bottom, rgba(255,255,255,.7), rgba(255,255,255,.4));
}
.discord-server { display: flex; align-items: center; gap: 12px; min-width: 0; }
.discord-server-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 14px -6px rgba(88,101,242,.5);
  flex-shrink: 0;
  overflow: hidden;
}
.discord-server-icon--img { background: #fff; padding: 0; }
.discord-server-icon--img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.discord-server-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.discord-server-name {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--ink); letter-spacing: -.01em;
}
.discord-server-tag {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--k-40); letter-spacing: -.005em;
  display: inline-flex; align-items: center; gap: 8px;
}
.discord-unread {
  display: inline-flex; align-items: center;
  padding: 2px 7px; border-radius: 999px;
  background: #ef4444; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: -.005em;
  box-shadow: 0 2px 8px -2px rgba(239,68,68,.5);
}
.discord-online {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(16,185,129,.10);
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  color: #047857;
}
.discord-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; }

.discord-feed {
  list-style: none; padding: 14px; margin: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; /* anchor newest to bottom; older items get pushed up */
  overflow: hidden;
  /* fixed pixel height locked at runtime so the section never resizes */
}
.discord-msg {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 12px; border-radius: 12px;
  margin-top: 14px;
  max-height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  transition:
    background .3s,
    opacity .5s ease,
    transform .5s ease,
    max-height .55s ease,
    margin-top .55s ease,
    padding-top .55s ease,
    padding-bottom .55s ease;
}
.discord-msg:first-child { margin-top: 0; }
.discord-msg:hover { background: rgba(88,101,242,.05); }
.discord-msg.is-entering {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  .discord-msg,
  .discord-msg.is-entering { transition: none; }
}
.discord-msg-av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: -.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 4px 10px -4px rgba(15,23,42,.18);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--k-08);
}
.discord-msg-av img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.discord-msg-body { min-width: 0; flex: 1; }
.discord-msg-meta {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 2px;
}
.discord-msg-meta strong {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--ink); letter-spacing: -.01em;
}
.discord-msg-meta span {
  font-family: var(--font-sans); font-size: 11px; color: var(--k-30);
}
.discord-msg p {
  font-family: var(--font-sans); font-size: 13.5px;
  color: var(--k-70); line-height: 1.45; letter-spacing: -.005em;
  margin: 0;
}

/* Reactions strip */
.discord-reactions {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 6px;
}
.discord-react {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(88,101,242,.08);
  border: 1px solid rgba(88,101,242,.18);
  font-family: var(--font-display); font-weight: 600; font-size: 11.5px;
  color: #4752C4; letter-spacing: -.005em;
  transition: background .25s, transform .25s var(--ease-snap);
  cursor: default;
}
.discord-react:hover { background: rgba(88,101,242,.14); transform: translateY(-1px); }

/* Typing indicator */
.discord-typing {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px 12px;
  font-family: var(--font-sans); font-size: 12px;
  color: var(--k-40); letter-spacing: -.005em;
}
.discord-typing strong { color: var(--k-60); font-weight: 600; }
.discord-typing-dots {
  display: inline-flex; gap: 3px; align-items: center;
}
.discord-typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: #5865F2;
  animation: discord-typing 1.4s ease-in-out infinite;
  opacity: .4;
}
.discord-typing-dots span:nth-child(2) { animation-delay: .2s; }
.discord-typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes discord-typing {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-2px); }
}

.discord-card-foot {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--k-05);
  background: linear-gradient(to top, rgba(255,255,255,.6), transparent);
}
.discord-card-foot-text {
  font-family: var(--font-sans); font-size: 12.5px;
  color: var(--k-50); letter-spacing: -.005em;
}

.discord-avatars {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,.18);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 11px; font-family: var(--font-display);
  overflow: hidden; background: var(--k-08);
  transition: transform .35s var(--ease-snap), box-shadow .35s;
  position: relative;
}
.av:first-child { margin-left: 0; }
.av:hover { transform: translateY(-2px) scale(1.08); z-index: 2; box-shadow: 0 8px 18px -6px rgba(88,101,242,.45); }
.av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.av--more {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: -.01em;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,.18), inset 0 0 0 1px var(--k-08);
}
.av--more span { display: block; }


/* ---- Marketplaces — two-row infinite logo carousel ----- */
.market-sec { padding: 44px 16px 52px; position: relative; overflow: hidden; }
@media (min-width: 640px)  { .market-sec { padding: 52px 24px 60px; } }
@media (min-width: 1024px) { .market-sec { padding: 60px 32px 68px; } }

.market-bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 280px;
  background: radial-gradient(ellipse, rgba(59,130,246,.06) 0%, transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.market-head { text-align: center; max-width: 880px; margin: 0 auto 40px; }
.market-head .sec-badge { margin-bottom: 18px; }

.market-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 18px;
  perspective: 1200px;
}
.market-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.market-track {
  display: flex; gap: 24px; align-items: center;
  padding: 8px 0;
  width: max-content;
  will-change: transform;
  /* keep on its own compositor layer for smooth uninterrupted animation */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.market-track--ltr { animation: marquee-ltr-12 60s linear infinite; }
.market-track--rtl { animation: marquee-rtl-12 65s linear infinite; }

@keyframes marquee-ltr-12 { to   { transform: translate3d(calc(-50% - 12px), 0, 0); } }
@keyframes marquee-rtl-12 { from { transform: translate3d(calc(-50% - 12px), 0, 0); } }

.market-card {
  flex-shrink: 0;
  height: 92px;
  min-width: 208px;
  border-radius: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--k-05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 3px 12px -5px rgba(15,23,42,.06);
  transition: transform .8s var(--ease-snap), border-color .6s, box-shadow .6s, background .6s, filter .6s;
  filter: saturate(.85);
}
.market-card:hover {
  transform: translateY(-3px) scale(1.02);
  background: #fff;
  border-color: rgba(59,130,246,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 14px 32px -12px rgba(15,23,42,.16),
    0 0 28px rgba(59,130,246,.06);
  filter: saturate(1);
}
.market-card .m-logo {
  height: 52px;
  max-width: 182px;
  width: auto;
  display: block;
  overflow: visible;
  object-fit: contain;
}
.market-card .m-logo[src*="walmart"],
.market-card .m-logo[src*="target"],
.market-card .m-logo[src*="shein"] {
  transform: scale(1.3);
  transform-origin: center;
}

@media (max-width: 720px) {
  .market-card { min-width: 174px; padding: 0 18px; height: 80px; }
  .market-card .m-logo { height: 42px; max-width: 144px; }
  .market-track { gap: 18px; }
  @keyframes marquee-ltr-12 { to   { transform: translate3d(calc(-50% - 9px), 0, 0); } }
  @keyframes marquee-rtl-12 { from { transform: translate3d(calc(-50% - 9px), 0, 0); } }
}


/* ---- Resources — Gumroad product cards ----------------- */
.res-sec { padding: 64px 16px 88px; position: relative; overflow: hidden; }
@media (min-width: 640px)  { .res-sec { padding: 72px 24px 96px; } }
@media (min-width: 1024px) { .res-sec { padding: 80px 32px 112px; } }

.res-head { text-align: center; max-width: 880px; margin: 0 auto 48px; }
.res-head .sec-badge { margin-bottom: 18px; }

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 560px)  { .res-grid { gap: 20px; } }
@media (min-width: 1024px) { .res-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; } }

.res-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--k-05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 6px 22px -10px rgba(15,23,42,.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .7s var(--ease-snap), border-color .5s, opacity .5s;
}
.res-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(59,130,246,.22);
  opacity: .95;
}

.res-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0a0a;
}
.res-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-snap);
}
.res-card:hover .res-img { transform: scale(1.04); }

.res-body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column;
}
.res-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--k-50);
}
.res-rating { color: var(--k-70); letter-spacing: .04em; text-transform: none; font-weight: 500; }
.res-rating-count { color: var(--k-40); font-weight: 400; }
.res-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--k-04);
  color: var(--k-60);
  font-weight: 500;
}
.res-price {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59,130,246,.1);
  color: var(--blue-600);
  font-weight: 600;
  letter-spacing: .04em;
}
.res-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--k-90);
  font-variation-settings: "opsz" 144;
  margin-top: 2px;
}
.res-cta {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: var(--blue-600);
  letter-spacing: -.005em;
}
.res-cta-arrow {
  display: inline-block;
  transition: transform .5s var(--ease-snap);
}
.res-card:hover .res-cta-arrow { transform: translateX(4px); }

@media (max-width: 560px) {
  .res-title { font-size: 18px; }
  .res-body { padding: 16px 18px 18px; }
}

/* Standalone Resources page — bigger hero header + bottom CTA */
.res-sec--page { padding-top: 32px; padding-bottom: 120px; }
@media (min-width: 640px)  { .res-sec--page { padding-top: 40px; padding-bottom: 140px; } }
@media (min-width: 1024px) { .res-sec--page { padding-top: 48px; padding-bottom: 160px; } }
.res-sec--page .res-head { margin-bottom: 64px; }
.res-sec--page .sec-title { font-size: clamp(34px, 5.5vw, 64px); }

.res-foot {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.res-foot-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--k-08);
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--k-90);
  letter-spacing: -.005em;
  transition: transform .5s var(--ease-snap), background .4s, border-color .4s, box-shadow .4s, color .4s;
}
.res-foot-link svg { width: 16px; height: 16px; transition: transform .5s var(--ease-snap); }
.res-foot-link:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(59,130,246,.28);
  color: var(--blue-600);
  box-shadow: 0 12px 28px -14px rgba(15,23,42,.18), 0 0 24px rgba(59,130,246,.06);
}
.res-foot-link:hover svg { transform: translateX(4px); }


/* ---- Voices (pull quotes) ---------------------------------- */
.voices { padding: 72px 16px; max-width: 1200px; margin: 0 auto; position: relative; }
@media (min-width: 640px)  { .voices { padding: 72px 24px; } }
@media (min-width: 1024px) { .voices { padding: 80px 32px; } }
.voices::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(to right, transparent, var(--k-08), transparent);
}
.voices-head { text-align: center; margin-bottom: 32px; }
.voices-inner { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .voices-inner { grid-template-columns: 1fr; } }

.voice {
  position: relative;
  padding: 40px 32px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  border: 1px solid var(--k-05); border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 20px 50px -30px rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
  transition: transform .7s var(--ease-smooth), border-color .7s var(--ease-smooth);
  overflow: hidden;
}
.voice:hover { transform: translateY(-4px); border-color: rgba(59,130,246,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 30px 60px -30px rgba(15,23,42,.18), 0 0 30px rgba(59,130,246,.06); }
.voice::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(155deg, rgba(59,130,246,.18), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .6s; pointer-events: none;
}
.voice:hover::after { opacity: 1; }
.voice-mark { font-family: var(--font-display); font-weight: 600; font-size: 84px; line-height: .4; color: rgba(59,130,246,.14); position: absolute; top: 40px; left: 22px; user-select: none; pointer-events: none; }
.voice-body { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.55vw, 23px); line-height: 1.4; letter-spacing: -.015em; color: var(--k-90); margin-bottom: 28px; padding-left: 12px; }
.voice-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--k-05); position: relative; z-index: 1; gap: 16px; }
.voice-who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.voice-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; font-family: var(--font-sans); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 4px 12px -4px rgba(15,23,42,.25); flex-shrink: 0; }
.voice-avatar--r { background: linear-gradient(135deg, #f97316, #ef4444); }
.voice-avatar--b { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.voice-name { font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: -.01em; color: var(--k-90); margin-bottom: 2px; }
.voice-role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--k-40); }
.voice-stat { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.9vw, 26px); letter-spacing: -.035em; flex-shrink: 0; font-variation-settings: "opsz" 96; background: linear-gradient(90deg, #2563eb, #0891b2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.voice:nth-child(2) .voice-stat { background: linear-gradient(90deg, #059669, #0d9488); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }


/* ---- Difference ------------------------------------------- */
.diff-sec { padding: 44px 16px; position: relative; }
@media (min-width: 640px)  { .diff-sec { padding: 52px 24px; } }
@media (min-width: 1024px) { .diff-sec { padding: 60px 32px; } }

.blue-zone { position: relative; }
.blue-zone > .voices,
.blue-zone > .diff-sec { position: relative; z-index: 1; }
.diff-head { max-width: 1200px; margin: 0 auto 28px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.diff-head .sec-badge { margin-bottom: 18px; }
.diff-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.05; letter-spacing: -.03em;
  font-variation-settings: "opsz" 144;
}
.diff-title--dim { color: var(--k-30); }
.diff-title--italic { font-family: var(--font-display); font-style: normal; font-weight: 600; letter-spacing: -.035em; }
.diff-sub { margin-top: 24px; font-family: var(--font-sans); font-size: clamp(16px, 1.2vw, 20px); color: var(--k-40); max-width: 640px; line-height: 1.55; letter-spacing: -.005em; }

/* Difference pillars grid */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 640px) { .diff-grid { gap: 16px; grid-auto-rows: 1fr; } }
.diff-pillar { display: flex; }
.diff-pillar > .bezel { flex: 1; display: flex; width: 100%; }
.diff-pillar .bezel-inner { padding: 20px 18px; display: flex; flex-direction: column; gap: 10px; transition: transform .3s cubic-bezier(.2,.8,.2,1); flex: 1; width: 100%; }
@media (min-width: 640px) { .diff-pillar .bezel-inner { padding: 28px 32px; gap: 12px; } }
.diff-pillar:hover .bezel-inner { transform: translateY(-4px); }
.diff-pillar-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--k-20); text-transform: uppercase; }
.diff-pillar-title { font-family: var(--font-serif); font-size: clamp(16px, 2vw, 26px); font-weight: 500; color: var(--ink); letter-spacing: -.02em; font-variation-settings: "opsz" 144; line-height: 1.15; }
.diff-pillar-desc { font-family: var(--font-sans); font-size: 13px; color: var(--k-45); line-height: 1.55; letter-spacing: -.005em; }
@media (min-width: 640px) { .diff-pillar-desc { font-size: 14.5px; line-height: 1.6; } }



/* ---- Apply section + form ---------------------------------- */
.apply-sec { padding: 52px 16px; position: relative; overflow-x: clip; overflow-y: visible; }
@media (min-width: 640px)  { .apply-sec { padding: 60px 24px; } }
@media (min-width: 1024px) { .apply-sec { padding: 96px 32px; } }

.apply-sec::before {
  content: ""; position: absolute; pointer-events: none;
  inset: -320px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 32%, rgba(59,130,246,.18), transparent 72%),
    radial-gradient(ellipse 70% 55% at 50% 72%, rgba(37,99,235,.14), transparent 74%);
  filter: blur(70px);
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 14%, #000 32%, #000 68%, rgba(0,0,0,.35) 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 14%, #000 32%, #000 68%, rgba(0,0,0,.35) 86%, transparent 100%);
}

/* Smooth handoff: soft blue glow bleeds out of apply-sec into the diff-sec above and the footer below */
.diff-sec { overflow-x: clip; overflow-y: visible; }
.diff-sec::after {
  content: ""; position: absolute; pointer-events: none;
  left: 50%; bottom: -120px; transform: translateX(-50%);
  width: min(900px, 100%); height: 240px;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(59,130,246,.10), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
.footer { overflow-x: clip; overflow-y: visible; }
.footer::after {
  content: ""; position: absolute; pointer-events: none;
  left: 50%; top: -140px; transform: translateX(-50%);
  width: min(900px, 100%); height: 240px;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(59,130,246,.10), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 100%);
          mask-image: linear-gradient(to top, transparent 0%, #000 100%);
}

.apply-bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 920px; height: 520px;
  filter: blur(140px);
  background: rgba(59,130,246,.14);
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 35%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 35%, transparent 80%);
}
.apply-bg-glow.is-step4 { background: rgba(16,185,129,.10); }

.apply-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.apply-head { text-align: center; margin-bottom: 40px; }
.apply-head .sec-badge { margin-bottom: 18px; }
.apply-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144;
}
.apply-title-hl { font-family: var(--font-display); font-style: normal; font-weight: 600; letter-spacing: -.035em; }
.apply-sub { font-family: var(--font-sans); font-size: clamp(15px, 1.15vw, 18px); color: var(--k-40); max-width: 600px; margin: 0 auto; line-height: 1.6; letter-spacing: -.005em; }

.apply-form {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 1px; border-radius: 2.5rem;
  background: linear-gradient(to bottom, var(--k-08), transparent);
  overflow: hidden;
}
.apply-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--k-10), transparent); z-index: 1;
}
.apply-form-inner { background: var(--surface); border-radius: calc(2.5rem - 1px); padding: 24px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 20px 40px -12px rgba(15,23,42,.08); }
@media (min-width: 768px) { .apply-form-inner { padding: 40px; } }

/* Stepper */
.stepper { margin-bottom: 40px; }
.stepper-row { display: flex; align-items: center; }
.step-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  position: relative; flex-shrink: 0;
  transition: all .55s var(--ease-smooth);
  background: #fff;
  color: var(--k-25);
  border: 1.5px solid var(--k-06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 1px 2px rgba(15,23,42,.04);
}
.step-circle.is-done {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px -4px rgba(37,99,235,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.step-circle.is-current {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(59,130,246,.14), 0 10px 24px -6px rgba(37,99,235,.5), inset 0 1px 0 rgba(255,255,255,.3);
  transform: scale(1.06);
}
.step-circle.is-current::before {
  content: ""; position: absolute; inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.55), transparent 65%);
  filter: blur(10px);
  z-index: -1;
  animation: pulse-step 2.4s ease-in-out infinite;
}
.step-circle.is-upcoming { background: #fff; color: var(--k-20); }

.step-line { flex: 1; height: 3px; margin: 0 12px; background: var(--k-04); border-radius: 999px; overflow: hidden; position: relative; }
.step-line-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--ease-smooth);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(59,130,246,.45);
}
.step-line.is-filled .step-line-fill { transform: scaleX(1); }

.step-labels { display: flex; justify-content: space-between; padding: 0 4px; margin-top: 16px; }
.step-label {
  font-family: var(--font-mono); font-weight: 600; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--k-15); transition: color .5s;
  flex: 1; text-align: center;
}
.step-label:first-child { text-align: left; padding-left: 4px; }
.step-label:last-child { text-align: right; padding-right: 4px; }
.step-label.is-current { color: #2563eb; }

/* Step pane transitions */
.step-panes { position: relative; }
.step-pane {
  opacity: 1; transform: translate3d(0, 0, 0);
  transition: opacity .35s var(--ease-smooth), transform .45s var(--ease-smooth), filter .35s var(--ease-smooth);
  will-change: opacity, transform;
}
.step-pane[hidden] { display: none; }
.step-pane.is-leaving { opacity: 0; transform: translate3d(-18px, 0, 0); filter: blur(2px); pointer-events: none; }
.step-pane.is-entering { opacity: 0; transform: translate3d(18px, 0, 0); filter: blur(2px); }

/* Step content */
.step-content-head { margin-bottom: 24px; }
.step-content-head--center { text-align: center; }
.step-content-head h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 26px); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 4px; }
.step-content-head p { font-family: var(--font-sans); font-size: 14px; color: var(--k-40); letter-spacing: -.005em; }

/* Fields */
.field-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--k-60); letter-spacing: -.01em; margin-left: 4px; font-variation-settings: "opsz" 96; }
.field input, .field textarea, .field select {
  background: var(--k-02);
  border: 1px solid var(--k-06);
  color: var(--ink);
  border-radius: 1rem;
  height: 56px; padding: 0 24px;
  font-family: var(--font-display); font-size: 15px; letter-spacing: -.01em;
  font-variation-settings: "opsz" 96;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: all .5s var(--ease-smooth);
  width: 100%;
}
.field textarea { padding: 20px 24px; min-height: 120px; height: auto; resize: vertical; line-height: 1.55; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 20px center; padding-right: 56px; }
.field input::placeholder, .field textarea::placeholder { color: var(--k-15); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--k-20);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 0 0 2px var(--k-05), 0 0 0 3px rgba(59,130,246,.08);
}

/* Option pickers */
.opt-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 640px) { .opt-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .opt-grid--cols-4 { grid-template-columns: repeat(4, 1fr); } }
.opt {
  padding: 14px; border-radius: 1rem;
  border: 1px solid var(--k-03); background: var(--k-02);
  color: var(--k-60);
  font-family: var(--font-sans); font-size: 13.5px; letter-spacing: -.005em;
  cursor: pointer; transition: all .5s;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; min-height: 54px;
}
.opt:hover { background: var(--k-03); border-color: var(--k-08); }
.opt.is-on { border-color: rgba(16,185,129,.5); background: rgba(16,185,129,.09); color: #065f46; font-weight: 600; box-shadow: 0 0 0 3px rgba(16,185,129,.08); }

/* Nav buttons */
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--k-04); }
.btn-prev { font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--k-25); padding: 10px 20px; border-radius: 999px; transition: all .4s; opacity: 0; pointer-events: none; }
.btn-prev.is-visible { opacity: 1; pointer-events: auto; }
.btn-prev:hover { color: var(--k-60); background: var(--k-03); }
.btn-next { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 0 32px; height: 48px; border-radius: 999px; transition: all .5s; box-shadow: 0 20px 40px -12px rgba(15,23,42,.2); }
.btn-next:hover { transform: scale(1.03); box-shadow: 0 20px 50px -10px rgba(15,23,42,.3); }
.btn-next:active { transform: scale(.97); }
.btn-next svg { width: 14px; height: 14px; transition: transform .4s; }
.btn-next:hover svg { transform: translateX(3px); }

/* Book step */
.book-badge-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.book-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25); padding: 12px 24px; border-radius: 999px; font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #059669; }
.book-badge .dot { width: 6px; height: 6px; background: #10b981; border-radius: 50%; animation: ping 1.5s infinite; }
.book-box { border: 1px solid rgba(16,185,129,.2); background: rgba(16,185,129,.02); padding: 32px; border-radius: 1.5rem; text-align: center; }
.book-box p { font-family: var(--font-sans); font-size: 15px; color: var(--k-60); letter-spacing: -.005em; line-height: 1.55; }

/* Custom Google Calendar embed wrapper.
   Crops Google's redundant top header + "Powered by Google" footer + ToS line.
   Belt-and-suspenders: the iframe is shifted/cropped, AND solid white masks
   sit on top to guarantee Google's footer never bleeds through if Google
   shifts the iframe's internal layout.
   Tweak --gcal-top-crop / --gcal-bottom-crop if anything peeks out. */
.gcal-card {
  --gcal-top-crop: 0px;
  --gcal-bottom-crop: 0px;
  --gcal-visible-h: 760px;
  --gcal-mask-top: 0px;
  --gcal-mask-bottom: 0px;
  border: 1px solid var(--k-06);
  border-radius: 1.5rem;
  background: linear-gradient(to bottom, #fff, var(--k-02));
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,1);
}
.gcal-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 18px 22px;
  border-bottom: 1px solid var(--k-05);
  background: #fff;
}
.gcal-host { display: flex; align-items: center; gap: 14px; min-width: 0; }
.gcal-avatar {
  width: 44px; height: 44px; border-radius: 1rem;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -.02em;
  box-shadow: 0 8px 20px -8px rgba(15,23,42,.5), inset 0 1px 0 rgba(255,255,255,.18);
  flex-shrink: 0;
}
.gcal-host-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gcal-host-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; letter-spacing: -.01em; color: var(--ink); line-height: 1.1;
}
.gcal-host-line {
  font-family: var(--font-sans); font-weight: 500; font-size: 12.5px;
  letter-spacing: -.005em; color: var(--k-40);
}
.gcal-foot-line {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: -.005em; color: var(--k-50);
  font-variation-settings: "opsz" 96;
}
.gcal-frame {
  position: relative;
  height: var(--gcal-visible-h);
  overflow: hidden !important;
  isolation: isolate;
}
.gcal-frame iframe {
  position: absolute;
  left: 0; right: 0;
  top: calc(var(--gcal-top-crop) * -1);
  width: 100%;
  height: calc(var(--gcal-visible-h) + var(--gcal-top-crop) + var(--gcal-bottom-crop));
  border: 0; display: block;
  background: #fff;
}
/* Opaque masks that overlay the iframe to guarantee Google's
   "Powered by Google Calendar / Privacy / Terms" footer is hidden,
   even if the iframe internal layout shifts. */
.gcal-mask {
  position: absolute; left: 0; right: 0;
  background: #fff;
  pointer-events: none;
  z-index: 10;
}
.gcal-mask--top    { top: 0;    height: var(--gcal-mask-top); }
.gcal-mask--bottom { bottom: 0; height: var(--gcal-mask-bottom); }
@media (max-width: 640px) {
  .gcal-card {
    --gcal-top-crop: 0px;
    --gcal-bottom-crop: 0px;
    --gcal-visible-h: 820px;
    --gcal-mask-bottom: 0px;
  }
  .gcal-card-head { padding: 14px 16px; }
  .gcal-foot-line { display: none; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; margin-top: 32px; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--k-10), transparent);
}

.footer-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--k-05);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  padding: 16px 0;
}
.footer-ticker-track {
  display: inline-flex; gap: 48px; align-items: center;
  width: max-content;
  animation: footer-ticker 38s linear infinite;
  will-change: transform;
}
@keyframes footer-ticker { to { transform: translate3d(calc(-50% - 24px), 0, 0); } }
.footer-ticker-item {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -.025em;
  color: var(--k-15);
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
  transition: color .5s;
}
.footer-ticker-item:hover { color: var(--k-70); }
.footer-ticker-mark {
  display: inline-block; margin-left: 24px;
  font-style: normal; font-size: .55em; vertical-align: middle;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px 24px; position: relative; }
@media (min-width: 1024px) { .footer-inner { padding: 56px 32px 32px; } }

.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

.footer-col { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.footer-col h5.footer-h5 {
  font-family: var(--font-mono); font-weight: 600; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--k-40);
  margin: 0 0 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.footer-links a {
  font-family: var(--font-sans); font-size: 14px; color: var(--k-60); letter-spacing: -.005em;
  position: relative; padding-left: 0;
  transition: color .35s, padding-left .4s var(--ease-snap);
}
.footer-links a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: currentColor;
  transition: width .4s var(--ease-snap);
  transform: translateY(-50%);
}
.footer-links a:hover { color: var(--ink); padding-left: 18px; }
.footer-links a:hover::before { width: 12px; }

.footer-col--cta .footer-cta-line {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--k-70);
  letter-spacing: -.005em;
  line-height: 1.5;
  margin: 0 0 18px;
  align-self: flex-start;
  max-width: 280px;
}
.footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 16px 36px -14px rgba(15,23,42,.3);
  transition: transform .4s var(--ease-snap), box-shadow .5s;
  margin: 0 0 22px;
  align-self: flex-start;
}
.footer-cta svg { width: 14px; height: 14px; transition: transform .35s; }
.footer-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(15,23,42,.4); }
.footer-cta:hover svg { transform: translateX(3px); }

.footer-socials { display: inline-flex; gap: 8px; align-self: flex-start; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--k-03);
  border: 1px solid var(--k-06);
  color: var(--k-60);
  transition: all .4s var(--ease-snap);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

.footer-wordmark {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 12px 4px;
  margin-top: 20px;
  border-top: 1px solid var(--k-04);
  user-select: none; pointer-events: none;
}
.footer-wordmark-text {
  font-family: 'Fraunces', serif; font-weight: 500; font-style: italic;
  font-size: clamp(40px, 10.5vw, 148px);
  line-height: .9; letter-spacing: -.045em;
  background: linear-gradient(180deg, rgba(15,23,42,.1) 0%, rgba(15,23,42,0) 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
  padding-right: .04em;
  padding-left: .02em;
}


/* =============================================================
   LIGHTBOX — full-screen modal for BTS slides
   ============================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 11, 20, .82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-quint), visibility 0s linear .35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s var(--ease-quint), visibility 0s linear 0s;
}
.lightbox-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.96);
  opacity: 0;
  transition: transform .45s var(--ease-quint), opacity .35s var(--ease-quint);
}
.lightbox.is-open .lightbox-stage { transform: scale(1); opacity: 1; }

.lightbox-stage img,
.lightbox-stage .lightbox-video {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06) inset;
  display: block;
}
.lightbox-stage img { width: auto; height: auto; object-fit: contain; }
.lightbox-stage .lightbox-video {
  position: relative;
  width: min(86vh * (9/16), 100%);
  aspect-ratio: 9 / 16;
  max-height: 92vh;
  overflow: hidden;
  background: #000;
}
.lightbox-stage .lightbox-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.lightbox-close {
  position: absolute;
  top: clamp(14px, 2.6vw, 28px);
  right: clamp(14px, 2.6vw, 28px);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s var(--ease-quint), transform .25s var(--ease-quint);
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
}
.lightbox-close:hover { background: rgba(255,255,255,.18); transform: scale(1.06) rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; }

body.lightbox-open { overflow: hidden; }


/* =============================================================
   10. REDUCED MOTION — respect user preference
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .bg-aurora--1, .bg-aurora--2, .bg-aurora--3, .bg-beam, .bg-pulse,
  .market-track--ltr, .market-track--rtl, .bts-track, .diff-track,
  .glow-pulse, .text-gradient-silver, .text-gradient-blue, .h1-text,
  .cta::before, .av--more, .book-badge .dot,
  .step-circle.is-current::before {
    animation: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  * { transition-duration: 0.01ms !important; }
}
