/* ============================================================
   MONARC MEDIA — styles.css
   Standard: $10k agency — minimal, intentional, premium
   ─────────────────────────────────────────────────────────
   Stack:    DM Serif Display (editorial) · Inter (body)
   Rhythm:   alternating dark / light sections
   Accent:   warm gold #C4902A
============================================================ */

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

/* ── 3D DEPTH SYSTEM ── */
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1;   }
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-12px, -8px) scale(1.04); }
  66%       { transform: translate(8px, -14px) scale(1.02); }
}


/* ══════════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════════ */
:root {
  /* Accent */
  --gold:        #C4902A;
  --gold-deep:   #A67820;

  /* Dark system */
  --ink:         #060606;
  --ink-2:       #0C0C0A;
  --ink-card:    #131311;
  --rule:        #1A1A18;
  --rule-2:      #252523;

  /* Text on dark */
  --d1: #EDEBE6;
  --d2: #96918A;
  --d3: #4E4B46;

  /* Light system */
  --cream:       #EDEBE6;
  --cream-card:  #E4DFD4;
  --rule-l:      #CEC8BC;

  /* Text on light */
  --l1: #0A0908;
  --l2: #52504B;
  --l3: #9A9488;

  /* Typography */
  --ff-serif: 'DM Serif Display', Georgia, serif;
  --ff-sans:  -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --px:    64px;
  --sy:    160px;
  --nav-h: 92px;

  /* Motion */
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:   cubic-bezier(0.25, 0, 0, 1);
  --t1: 180ms var(--ease);
  --t2: 300ms var(--ease);
  --t3: 600ms var(--spring);

  /* Footer sticky reveal height — matches h-[70vh] from React source */
  --fv2-h: 70vh;
}


/* ══════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  font-family: var(--ff-sans);
  background: var(--ink);
  color: var(--d1);
  line-height: 1.6;
  overflow-x: clip; /* clip ≠ hidden: doesn't force overflow-y:auto (which makes body a scroll container and breaks position:sticky) */
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageFadeIn 0.5s ease both;
}

body.is-loading .sp-reveal { visibility: hidden; opacity: 0; }

img    { display: block; width: 100%; height: auto; }
a      { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em     { font-style: italic; }

::selection { background: var(--gold); color: var(--cream); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--rule-2); }


/* ══════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: var(--sy) 0; }


/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(calc(100vw - 40px), 920px);
  z-index: 900;
  background: rgba(6, 6, 6, 0.20);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 100px;
  /* Liquid glass box-shadow — matches the Enter button style */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.10),
    inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.22),
    inset -2px -2px 0 -2px rgba(255, 255, 255, 0.14),
    inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.12),
    inset 0 3px 4px -2px rgba(0, 0, 0, 0.18),
    0 1px 5px rgba(0, 0, 0, 0.10),
    0 8px 40px rgba(0, 0, 0, 0.38),
    0 2px 12px rgba(0, 0, 0, 0.18);
  transition: background var(--t2), box-shadow var(--t2);
}
.nav.scrolled {
  background: rgba(6, 6, 6, 0.38);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 12px 48px rgba(0, 0, 0, 0.50),
    0 2px 12px rgba(0, 0, 0, 0.25);
}
.nav-container {
  width: 100%;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo-mark { font-style: inherit; }
/* Nav links list — hidden on desktop (now inside dropdown) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

/* ── Reveal trigger button — glass pill matching carousel nav buttons ── */
.nav-menu-btn {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.09);
  border: none;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 1.8px 3px 0 -2px rgba(255,255,255,0.75),
    inset -2px -2px 0 -2px rgba(255,255,255,0.55),
    inset -0.3px -1px 4px 0 rgba(0,0,0,0.12),
    0 4px 20px rgba(0,0,0,0.40);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.22s;
}
.nav-menu-btn:hover {
  color: var(--gold);
}
.nav-menu-btn[aria-expanded="true"],
.nav-menu-btn:active {
  color: var(--gold);
}
.nav-menu-chevron {
  width: 10px; height: 6px;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(6, 6, 6, 0.62);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-radius: 100px;
  padding: 6px;
  display: flex;
  flex-direction: row;
  gap: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.10),
    inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.18),
    inset -2px -2px 0 -2px rgba(255, 255, 255, 0.10),
    0 12px 40px rgba(0, 0, 0, 0.50),
    0 2px 8px rgba(0, 0, 0, 0.20);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.3s var(--spring), visibility 0.22s;
  white-space: nowrap;
}
.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d2);
  padding: 8px 15px;
  border-radius: 100px;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--d1);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links:hover a { opacity: 0.35; }
.nav-links a:hover  { opacity: 1 !important; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--d2);
  letter-spacing: 0.01em;
  transition: opacity var(--t1);
}
.nav-btn {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--gold);
  padding: 9px 22px;
  border-radius: 980px;
  flex-shrink: 0;
  transition: background var(--t1), opacity var(--t1);
}
.nav-btn:hover { background: var(--gold-deep); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--d1);
  transition: transform var(--t2), opacity var(--t1);
}
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t2);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 18px;
  color: var(--d3);
  transition: color var(--t1);
}
.nav-drawer-close:hover { color: var(--d1); }
.nav-drawer-link {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 7vw, 48px);
  color: var(--d2);
  padding: 5px 20px;
  transition: color var(--t1);
}
.nav-drawer-link:hover { color: var(--d1); }
.nav-drawer-cta {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--cream) !important;
  background: var(--gold);
  border-radius: 6px;
  padding: 12px 28px;
  margin-top: 20px;
  letter-spacing: 0.03em;
}
.nav-drawer-cta:hover { background: var(--gold-deep); }


/* ══════════════════════════════════════════════════════
   HERO REVEAL
══════════════════════════════════════════════════════ */
@keyframes spIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.sp-reveal { opacity: 0; visibility: hidden; }
.sp-reveal.go {
  visibility: visible;
  animation: spIn 0.9s var(--spring) both;
}


/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--ink);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: var(--glow-y, -10%);
  right: var(--glow-x, -8%);
  width: 56%; height: 70%;
  background: radial-gradient(ellipse at top right,
    rgba(196, 144, 42, 0.07) 0%, transparent 64%);
  pointer-events: none;
  animation: glowPulse 9s ease-in-out infinite, floatGlow 18s ease-in-out infinite;
  will-change: transform, opacity;
}
/* hero::after removed — was causing visible bottom "box" edge */
.hero-cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: inherit;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 104px;
  padding-bottom: 104px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(60px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.038em;
  color: var(--d1);
  max-width: 13ch;
  margin-bottom: 52px;
}
.hero-title em {
  color: var(--gold);
  background: linear-gradient(180deg, #E9C77B 0%, var(--gold) 55%, #A87A1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--d2);
  max-width: 44ch;
  margin-bottom: 56px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--d3);
}


/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 980px;
  border: 1.5px solid transparent;
  transition: background var(--t1), color var(--t1), border-color var(--t1),
              opacity var(--t1), transform 220ms cubic-bezier(0.25, 0, 0, 1),
              box-shadow 220ms cubic-bezier(0.25, 0, 0, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97) translateY(1px) !important; box-shadow: none !important; }

.btn-primary {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(196, 144, 42, 0.40), 0 4px 12px rgba(196, 144, 42, 0.20);
}

.btn-secondary {
  background: transparent;
  color: rgba(237, 235, 230, 0.5);
  border-color: rgba(237, 235, 230, 0.12);
}
.btn-secondary:hover {
  color: var(--d1);
  border-color: rgba(237, 235, 230, 0.45);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.btn-plan {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--l1);
  border-radius: 980px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 24px;
  border: 1.5px solid var(--rule-l);
  transition: border-color var(--t1), color var(--t1);
  cursor: pointer;
  display: block;
  text-align: center;
  letter-spacing: 0.025em;
}
.btn-plan:hover { border-color: var(--l2); }
.plan-card--featured .btn-plan {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.plan-card--featured .btn-plan:hover { background: var(--gold-deep); border-color: var(--gold-deep); }


/* ══════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.trust-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d3);
  text-align: center;
  margin-bottom: 26px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 52px;
}
.trust-logos span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rule-2);
  transition: color var(--t2);
}
.trust-logos span:hover { color: var(--d3); }


/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
[data-r] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-r][data-d="1"] { transition-delay: 80ms;  }
[data-r][data-d="2"] { transition-delay: 160ms; }
[data-r][data-d="3"] { transition-delay: 240ms; }
[data-r][data-d="4"] { transition-delay: 320ms; }
[data-r].in { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════
   SHARED SECTION HEADER
══════════════════════════════════════════════════════ */
.section-header {
  max-width: 560px;
  margin: 0 auto 96px;
  text-align: center;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--l1);
  margin-bottom: 20px;
}
.section-title em {
  color: var(--gold);
  background: linear-gradient(180deg, #E9C77B 0%, var(--gold) 55%, #A87A1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--l2);
  font-weight: 400;
}

/* Dark section overrides */
.process .section-title,
.portfolio .section-title,
.testimonials .section-title,
.case-study .section-title {
  color: var(--d1);
}
.process .section-sub,
.portfolio .section-sub,
.testimonials .section-sub,
.case-study .section-sub {
  color: var(--d2);
}
.process .section-eyebrow,
.portfolio .section-eyebrow,
.testimonials .section-eyebrow {
  color: var(--gold);
}


/* ══════════════════════════════════════════════════════
   PROBLEM — light
══════════════════════════════════════════════════════ */
.problem { background: var(--cream); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1400px;
}
.problem-card {
  background: #fff;
  padding: 72px 56px 80px;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(10,9,8,0.06), 0 1px 4px rgba(10,9,8,0.03);
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--spring);
}
.problem-card:hover { transform: translateY(-5px); box-shadow: 0 16px 56px rgba(10,9,8,0.13), 0 3px 10px rgba(10,9,8,0.05); }

.problem-num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  color: var(--rule-l);
  margin-bottom: 36px;
  transition: color var(--t2);
}
.problem-card:hover .problem-num { color: var(--gold); }
.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--l1);
  margin-bottom: 14px;
}
.problem-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--l2);
}


/* ══════════════════════════════════════════════════════
   MANIFESTO — dark
══════════════════════════════════════════════════════ */
.manifesto-section {
  background: var(--ink-2);
  padding: var(--sy) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.manifesto-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
}
.manifesto-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.024em;
  color: var(--d1);
  margin-bottom: 44px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--d2);
  max-width: 50ch;
  margin: 0 auto 64px;
}
.manifesto-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.manifesto-pillar {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--d3);
  border: 1px solid var(--rule-2);
  border-radius: 40px;
  padding: 9px 20px;
  transition: color var(--t2), border-color var(--t2);
}
.manifesto-pillar:hover { color: var(--d1); border-color: var(--d3); }


/* ══════════════════════════════════════════════════════
   SERVICES — light
══════════════════════════════════════════════════════ */
.services { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1400px;
}
.feature-card {
  background: #fff;
  padding: 60px 48px 68px;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(10,9,8,0.06), 0 1px 4px rgba(10,9,8,0.03);
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--spring);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 56px rgba(10,9,8,0.13), 0 3px 10px rgba(10,9,8,0.05);
}
.feature-icon {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 52px;
  color: var(--rule-l);
  line-height: 1;
  margin-bottom: 36px;
  transition: color var(--t2);
}
.feature-card:hover .feature-icon { color: var(--gold); }
.feature-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--l1);
  margin-bottom: 14px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--l2);
  margin-bottom: 32px;
}
.feature-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ══════════════════════════════════════════════════════
   PROCESS — dark
══════════════════════════════════════════════════════ */
.process { background: var(--ink-2); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  perspective: 1200px;
}
.process-step {
  position: relative;
  padding: 44px 32px 44px 32px;
  border-radius: 20px;
  background: var(--rule);
  border: 1px solid var(--rule-2);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--spring), border-color var(--t2);
  will-change: transform;
}
.process-step:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 56px rgba(0,0,0,0.46);
  border-color: var(--d3);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width var(--t3);
}
.process-step:hover::before { width: 100%; }
.step-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 44px;
  color: var(--rule-2);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--t2);
}
.process-step:hover .step-num { color: rgba(196, 144, 42, 0.22); }
.step-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d1);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.78;
  color: var(--d3);
  margin-bottom: 24px;
}
.step-day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ══════════════════════════════════════════════════════
   STATS — dark
══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--ink-2);
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 104px;
}
.stat-block {
  background: var(--ink-2);
  padding: 88px 40px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: border-color var(--t2), box-shadow var(--t2), background var(--t2), transform var(--t2);
}
.stat-block:hover {
  background: var(--ink-card);
  border-color: rgba(196, 144, 42, 0.35);
  box-shadow: 0 0 0 1px rgba(196, 144, 42, 0.12), 0 16px 56px rgba(0,0,0,0.36);
  transform: translateY(-6px);
}
.stat-number {
  font-family: var(--ff-serif);
  font-size: clamp(64px, 8.5vw, 112px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 18px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d3);
  line-height: 1.8;
}
.stats-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 34px);
  text-align: center;
  color: var(--d2);
  letter-spacing: -0.01em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.35;
}


/* ══════════════════════════════════════════════════════
   CREATORS — light
   Premium profile cards with circular headshots
══════════════════════════════════════════════════════ */
.creators { background: var(--cream); }

.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1400px;
}

.creator-card {
  background: #fff;
  padding: 48px 40px 44px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 20px rgba(10,9,8,0.06), 0 1px 4px rgba(10,9,8,0.03);
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--spring);
}
.creator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 56px rgba(10,9,8,0.13), 0 3px 10px rgba(10,9,8,0.05);
}

/* Photo + identity row */
.creator-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-l);
}
.creator-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  display: block;
  border: 1.5px solid var(--rule-l);
  transition: border-color var(--t2);
}
.creator-card:hover .creator-photo { border-color: var(--gold); }
.creator-intro { min-width: 0; }
.creator-handle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--l1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.creator-name {
  font-size: 12px;
  color: var(--l3);
  margin-top: 5px;
  letter-spacing: 0.01em;
}

/* Niche tags — minimal pills */
.creator-niches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 28px;
}
.creator-niches span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l3);
  border: 1px solid var(--rule-l);
  border-radius: 40px;
  padding: 4px 11px;
  transition: color var(--t1), border-color var(--t1);
}
.creator-card:hover .creator-niches span {
  color: var(--l2);
  border-color: var(--l3);
}

/* Brand association block */
.creator-detail {
  margin-bottom: 28px;
  flex: 1;
}
.creator-brands-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--l3);
  margin-bottom: 8px;
}
.creator-brands {
  font-size: 13px;
  line-height: 1.72;
  color: var(--l2);
}

/* Stats row — clean separator */
.creator-stats {
  display: flex;
  gap: 40px;
  padding: 22px 0;
  border-top: 1px solid var(--rule-l);
  border-bottom: 1px solid var(--rule-l);
  margin-bottom: 24px;
}
.creator-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.creator-stat a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l3);
  transition: color var(--t1);
}
.creator-stat a:hover { color: var(--gold); }
.creator-stat strong {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--l1);
  line-height: 1;
  letter-spacing: -0.025em;
}

/* Portfolio link — bottom anchor */
.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l3);
  margin-top: auto;
  padding-top: 4px;
  transition: color var(--t2);
}
.creator-card:hover .creator-link { color: var(--gold); }


/* ══════════════════════════════════════════════════════
   PORTFOLIO — dark
══════════════════════════════════════════════════════ */
.portfolio { background: var(--ink-2); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pf-card { display: block; cursor: pointer; }
.pf-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink-card);
}
.pf-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--spring), filter 0.4s var(--ease);
}
.pf-card:hover .pf-thumb img {
  transform: scale(1.04);
  filter: brightness(0.90);
}
.pf-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--d1);
  opacity: 0;
  transition: opacity var(--t2);
}
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: none;
}
.pf-niche {
  font-size: 14px;
  font-weight: 500;
  color: var(--d1);
  letter-spacing: -0.005em;
}
.pf-creator {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--d3);
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════════
   PRICING — light
══════════════════════════════════════════════════════ */
.pricing { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  perspective: 1400px;
}
.plan-card {
  position: relative;
  background: #fff;
  padding: 52px 44px 48px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(10,9,8,0.06), 0 1px 4px rgba(10,9,8,0.03);
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--spring);
}
.plan-card:not(.plan-card--featured):hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 56px rgba(10,9,8,0.13), 0 3px 10px rgba(10,9,8,0.05);
}
.plan-card--featured {
  background: var(--l1);
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.plan-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--gold);
  border-radius: 4px;
  padding: 5px 11px;
}
.plan-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--l3);
  margin-bottom: 7px;
}
.plan-card--featured .plan-name { color: var(--gold); }
.plan-tagline {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--l1);
  margin-bottom: 28px;
}
.plan-card--featured .plan-tagline { color: var(--d1); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.plan-amount {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--l1);
}
.plan-card--featured .plan-amount { color: var(--d1); }
.plan-amount--sm {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.024em;
  color: var(--l1);
}
.plan-per {
  font-size: 12px;
  color: var(--l3);
  letter-spacing: 0.01em;
}
.plan-card--featured .plan-per { color: var(--d3); }
.plan-note {
  font-size: 13px;
  color: var(--l2);
  line-height: 1.65;
  margin-bottom: 32px;
}
.plan-card--featured .plan-note { color: var(--d2); }
.plan-divider {
  border: none;
  border-top: 1px solid var(--rule-l);
  margin-bottom: 24px;
}
.plan-card--featured .plan-divider { border-color: var(--rule-2); }
.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
.plan-features li {
  font-size: 13px;
  color: var(--l2);
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid var(--rule-l);
  position: relative;
  transition: color var(--t1);
  line-height: 1.5;
}
.plan-card--featured .plan-features li {
  color: var(--d2);
  border-bottom-color: var(--rule-2);
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 1px;
  background: var(--gold);
}
.plan-features li:hover { color: var(--l1); }
.plan-card--featured .plan-features li:hover { color: var(--d1); }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--l3);
  letter-spacing: 0.01em;
}

.pricing-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 64px 0 48px;
  padding-top: 48px;
  border-top: 1px solid var(--rule-l);
}
.pricing-trust-item {
  font-size: 13px;
  line-height: 1.75;
  color: var(--l2);
  padding-left: 16px;
  border-left: 2px solid rgba(196,144,42,0.3);
}
@media (max-width: 768px) {
  .pricing-trust { grid-template-columns: 1fr; gap: 16px; }
}


/* ══════════════════════════════════════════════════════
   CTA — dark
══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--ink);
  padding: var(--sy) 0;
  border-top: 1px solid var(--rule);
}
.cta-inner { text-align: center; }
.cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--d1);
  margin-bottom: 24px;
}
.cta-title em {
  color: var(--gold);
  background: linear-gradient(180deg, #E9C77B 0%, var(--gold) 55%, #A87A1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--d2);
  max-width: 44ch;
  margin: 0 auto 60px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-fine {
  font-size: 11px;
  color: var(--d3);
  letter-spacing: 0.08em;
}


/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--rule);
}
.footer-inner {
  padding-top: 96px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: start;
}
.footer-logo { font-size: 20px; }
.footer-tagline {
  font-size: 12px;
  color: var(--d3);
  margin-top: 12px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a, .footer-links a {
  font-size: 13px;
  color: var(--d3);
  letter-spacing: 0.005em;
  transition: color var(--t2);
}
.footer-nav a:hover, .footer-links a:hover { color: var(--d1); }
.footer-bar {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bar p {
  font-size: 12px;
  color: var(--d3);
  letter-spacing: 0.01em;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — ≤ 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --px: 44px; --sy: 112px; }

  .features-grid  { grid-template-columns: 1fr; }
  .problem-grid   { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: repeat(3, 1fr); }
  .creators-grid  { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .plan-card:last-child { grid-column: span 2; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 40px 60px; }
  .footer-inner .footer-brand { grid-column: span 2; }

  .problem-card, .feature-card { padding: 48px 40px 56px; }
  .creator-card { padding: 48px 36px 44px; }
  .plan-card    { padding: 48px 36px 44px; }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — ≤ 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --px: 24px; --sy: 80px; --nav-h: 76px; }

  .nav { top: 12px; width: calc(100vw - 32px); border-radius: 60px; }
  .nav-container { padding: 0 16px; height: 52px; gap: 10px; }

  /* Inline links live in dropdown — hide them. Hide old hamburger. */
  .nav-links { display: none; }
  .nav-toggle { display: none; }
  /* nav-btn, nav-menu-btn, and nav-dropdown layout handled below the late
     override block so cascade order wins — see end of file. */

  .hero-title {
    font-size: clamp(44px, 13vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.03em;
  }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .section-header { margin-bottom: 64px; }

  .problem-grid   { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-grid     { grid-template-columns: 1fr; }
  .creators-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .pricing-grid .plan-card:last-child { grid-column: auto; }
  .footer-inner   { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner .footer-brand { grid-column: auto; }
  .footer-bar     { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cta-actions    { flex-direction: column; align-items: center; }
  .manifesto-pillars { flex-direction: column; align-items: center; }

  .problem-card, .feature-card { padding: 44px 32px 52px; }
  .creator-card  { padding: 40px 32px 40px; }
  .plan-card     { padding: 44px 32px 40px; }
  .process-step  { padding: 36px 28px; }
}


/* ══════════════════════════════════════════════════════
   TOUCH / MOBILE — performance safeguards
   Disable GPU-heavy effects on coarse-pointer devices
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Remove perspective stacking contexts — not needed without tilt */
  .problem-grid,
  .features-grid,
  .creators-grid,
  .pricing-grid,
  .process-grid { perspective: none; }

  /* Disable hover transforms — touch taps are instant, no hover state */
  .problem-card:hover,
  .feature-card:hover,
  .creator-card:hover,
  .plan-card:not(.plan-card--featured):hover,
  .process-step:hover,
  .stat-block:hover { transform: none; }

  /* ── Strip backdrop-filters — compositor layers cause scroll jank on mobile.
     Solid fallback colours preserve readability. ── */
  .nav,
  .nav-menu-btn,
  .nav-dropdown,
  .hero-pill,
  .pf-carousel-btn,
  .pf-overlay,
  .fiq-trigger,
  .fiq-card,
  .lv2-btn-lens {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav             { background: rgba(4,4,4,0.95) !important; }
  .nav-menu-btn    { background: rgba(6,6,6,0.85) !important; color: rgba(255,255,255,0.80) !important; }
  .nav.on-light .nav-menu-btn { background: rgba(6,6,6,0.85) !important; color: rgba(255,255,255,0.80) !important; }
  .nav-dropdown    { background: rgba(10,9,8,0.97) !important; }
  .pf-overlay      { background: rgba(0,0,0,0.72) !important; }
  .lv2-btn-lens    { background: rgba(255,255,255,0.12) !important; }
  .fiq-trigger     { background: rgba(25,22,18,0.97) !important; }
  .fiq-card        { background: rgba(10,9,8,0.98) !important; }

  /* ── Gooey morph: JS skips on coarse-pointer devices.
     Unfold the gooey structure so word--2 renders as readable text. ── */
  .hero-gooey-wrap { height: auto !important; }
  .gooey-inner {
    filter: none !important;
    position: static !important;
    display: block !important;
    height: auto !important;
    width: auto !important;
  }
  .gooey-word--1 { display: none !important; }
  .gooey-word--2 {
    position: static !important;
    display: block !important;
    opacity: 1;
    filter: none !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    transition: opacity 0.3s ease;
  }

  /* fv2-anim: drop blur filter only — filter conflicts with opacity/transform
     transitions on mobile Safari and breaks the reveal animation ── */
  .fv2-anim { filter: none !important; }

  /* fv2-brand-sub: allow wrapping on narrow screens */
  .fv2-brand-sub {
    max-width: 100% !important; overflow: visible !important;
    white-space: normal !important;
  }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — ≤ 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; gap: 14px; }
  .process-step   { padding: 32px 24px; }
  .creator-photo  { width: 64px; height: 64px; }
  .creator-stat strong { font-size: 24px; }
}


/* ══════════════════════════════════════════════════════
   FLOATING INQUIRY CARD
══════════════════════════════════════════════════════ */

/* Container — fixed, bottom-right */
.fiq {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

/* Trigger button — icon-only circle */
.fiq-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  background: rgba(10, 9, 8, 0.40);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: #EDEBE6;
  border-radius: 50%;
  box-shadow:
    0 6px 28px rgba(0,0,0,0.34),
    0 1px 4px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,250,240,0.08);
  cursor: pointer;
  transition: transform var(--t2), box-shadow var(--t2), background var(--t2);
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: auto;
}
.fiq-trigger:hover {
  background: rgba(10, 9, 8, 0.60);
  transform: translateY(-2px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.44),
    0 2px 8px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,250,240,0.10);
}
.fiq--open .fiq-trigger {
  background: rgba(10, 9, 8, 0.72);
}

.fiq-trigger-icon {
  display: flex;
  align-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.fiq-trigger-icon svg {
  width: 22px;
  height: 22px;
}
.fiq-trigger-label { display: none; }

/* Card */
.fiq-card {
  /* Float above trigger without affecting .fiq container height */
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 420px;
  background: rgba(14, 13, 11, 0.90);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 250, 240, 0.07);
  overflow: hidden;

  /* Closed state */
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.28s var(--spring),
    transform 0.28s var(--spring),
    visibility 0s linear 0.28s;
}
.fiq--open .fiq-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.28s var(--spring),
    transform 0.28s var(--spring),
    visibility 0s linear 0s;
}

.fiq-card-inner {
  padding: 32px 32px 28px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* Header */
.fiq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.fiq-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.fiq-title {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--d1);
  line-height: 1.1;
}
.fiq-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(237, 235, 230, 0.50);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--t1), border-color var(--t1), background var(--t1);
  margin-top: 2px;
}
.fiq-close:hover {
  color: var(--d1);
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.06);
}

/* Form layout */
.fiq-form { display: flex; flex-direction: column; gap: 14px; }
.fiq-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fiq-field { display: flex; flex-direction: column; gap: 6px; }

.fiq-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 235, 230, 0.55);
}
.fiq-field input,
.fiq-field select,
.fiq-field textarea {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--d1);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--t1), box-shadow var(--t1), background var(--t1);
  -webkit-appearance: none;
  appearance: none;
}
.fiq-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BDB8AE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.fiq-field select option {
  background: #14120F;
  color: var(--d1);
}
.fiq-field textarea { resize: none; line-height: 1.65; }

.fiq-field input:focus,
.fiq-field select:focus,
.fiq-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(196,144,42,0.14);
}
.fiq-field input::placeholder,
.fiq-field textarea::placeholder { color: rgba(237, 235, 230, 0.32); }

.fiq-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08) !important;
}

/* Submit */
.fiq-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--cream);
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  margin-top: 4px;
  transition: background var(--t2), transform var(--t2), opacity var(--t2), box-shadow var(--t2);
}
.fiq-submit:hover:not(:disabled) {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(196, 144, 42, 0.35);
}
.fiq-submit:disabled { opacity: 0.6; cursor: default; }

/* Error */
.fiq-error {
  font-size: 12px;
  color: #c0392b;
  text-align: center;
  margin-top: -4px;
}

/* Success state */
.fiq-success[hidden] { display: none !important; }
.fiq-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 8px;
  gap: 8px;
}
.fiq-success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,144,42,0.10);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.fiq-success-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--d1);
  letter-spacing: -0.02em;
}
.fiq-success-sub {
  font-size: 13px;
  color: rgba(237, 235, 230, 0.55);
}

/* Mobile — keep bubble anchored to bottom-right corner */
@media (max-width: 480px) {
  .fiq {
    bottom: 28px;
    right: 28px;
    left: auto;
    align-items: flex-end;
    padding: 0;
    gap: 12px;
  }
  .fiq-trigger {
    align-self: auto;
  }
  .fiq-card {
    /* Absolute card anchored to bubble bottom-right; stay within screen */
    width: calc(100vw - 56px);
    right: -28px; /* align card's right edge with screen right edge */
  }
  .fiq-card-inner { padding: 28px 24px 24px; }
  .fiq-row { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════
   VIDEO SHOWCASE
══════════════════════════════════════════════════════ */
.video-showcase {
  background: var(--cream);
  padding: 128px 20px;
}

.video-showcase-container {
  max-width: 1152px;
}

.video-showcase-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3024 / 1890;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-showcase-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s;
}

.video-showcase-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  color: #fff;
}

.video-showcase-spin {
  animation: vspin 0.3s linear infinite;
}

@keyframes vspin {
  to { transform: rotate(360deg); }
}


/* ══════════════════════════════════════════════════════
   CASE STUDY — Gallery4 carousel
   Vanilla port of shadcn Gallery4 (React → CSS/JS)
══════════════════════════════════════════════════════ */
.case-study { background: var(--ink-2); }

/* ── Header row ── */
.cs4-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 0;
}
.cs4-header-left { flex: 1; min-width: 0; }
.cs4-main-title {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--d1);
  margin: 10px 0 16px;
}
.cs4-main-title em {
  color: var(--gold);
  background: linear-gradient(180deg, #E9C77B 0%, var(--gold) 55%, #A87A1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cs4-main-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--d2);
  max-width: 42ch;
}

/* Arrow buttons */
.cs4-nav-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 4px; /* optically align with text baseline */
}
.cs4-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule-2);
  color: var(--d2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t2), border-color var(--t2), color var(--t2);
}
.cs4-arrow-btn:hover:not(:disabled) {
  background: rgba(196,144,42,0.1);
  border-color: rgba(196,144,42,0.45);
  color: var(--gold);
}
.cs4-arrow-btn:disabled { opacity: 0.28; cursor: default; }

/* ── Full-width carousel viewport ── */
.cs4-viewport {
  width: 100%;
  overflow-x: clip; /* clip horizontally only — overflow:hidden would also clip card shadows/height */
  margin-bottom: 28px;
}

/* Track: full-bleed but left-edge aligns with container content */
.cs4-track {
  display: flex;
  gap: 20px;
  padding-left: 24px;
  padding-right: 24px;
  /* will-change: transform; set by JS when dragging */
  transition: transform 0.45s cubic-bezier(0.25, 0, 0, 1);
}
@media (min-width: 768px) {
  .cs4-track { padding-left: 64px; }
}
@media (min-width: 1328px) { /* 1200px + 2×64px */
  .cs4-track { padding-left: calc((100vw - 1200px) / 2 + 64px); }
}

/* ── Individual slide ── */
.cs4-slide {
  flex: 0 0 72vw;
  max-width: 300px;
}
@media (min-width: 480px) {
  .cs4-slide { flex: 0 0 320px; max-width: 320px; }
}
@media (min-width: 1024px) {
  .cs4-slide { flex: 0 0 360px; max-width: 360px; }
}

/* ── Card ── */
.cs4-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
}
.cs4-card-media {
  position: relative;
  aspect-ratio: 3 / 4; /* portrait on mobile — matches download.webp orientation */
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 480px) {
  .cs4-card-media { aspect-ratio: auto; min-height: 27rem; }
}

.cs4-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.cs4-card:hover .cs4-card-img { transform: scale(1.05); }

/* Gradient overlay — matches Gallery4 bg-[linear-gradient(...)] mix-blend-multiply */
.cs4-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,0)    0%,
    rgba(6,6,6,0.42) 48%,
    rgba(6,6,6,0.82) 100%
  );
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.cs4-card:hover .cs4-card-gradient,
.cs4-card.is-visible .cs4-card-gradient {
  opacity: 1;
}

/* Content at bottom — hidden by default, revealed on hover */
.cs4-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.cs4-card:hover .cs4-card-body,
.cs4-card.is-visible .cs4-card-body {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) { .cs4-card-body { padding: 32px; } }

/* Transparent-background PNG logo — invert makes dark text white on the card */
.cs4-card-logo {
  display: block;
  height: 18px !important;
  width: auto !important;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: invert(1);
}

.cs4-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.cs4-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (min-width: 768px) { .cs4-card-title { font-size: 20px; margin-bottom: 12px; } }

.cs4-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}
@media (min-width: 768px) { .cs4-card-desc { margin-bottom: 48px; font-size: 14px; } }

.cs4-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.cs4-cta-arrow { transition: transform 0.2s ease; }
.cs4-card:hover .cs4-cta-arrow { transform: translateX(4px); }

/* ── Dot indicators ── */
.cs4-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 0 0;
}
.cs4-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196,144,42,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--t2);
}
.cs4-dot--active { background: var(--gold); }

/* ── Mobile: stack header, hide arrows ── */
@media (max-width: 768px) {
  .cs4-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .cs4-nav-arrows { display: none; }
}

.case-study-hold {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(64px, 10vw, 112px) clamp(24px, 5vw, 64px);
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  text-align: center;
  background: var(--ink-card);
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow in the centre */
.case-study-hold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%,
    rgba(196, 144, 42, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.case-study-brand {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
  position: relative;
}

.case-study-status {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d3);
  position: relative;
}


/* ══════════════════════════════════════════════════════
   CASE STUDY — real data layout
   cs-metrics · cs-grid · cs-table · cs-insight
══════════════════════════════════════════════════════ */

/* ── Three-stat strip ── */
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule-2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 72px;
}
.cs-metric {
  background: var(--ink-card);
  padding: 40px 32px;
  text-align: center;
}
.cs-metric + .cs-metric {
  border-left: 1px solid var(--rule-2);
}
.cs-metric-num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}
.cs-metric-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--d3);
  max-width: 18ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Two-column content grid ── */
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: start;
}
.cs-col {}

/* Section sub-headings within each column */
.cs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 36px;
}
.cs-col > .cs-label:first-child { margin-top: 0; }

.cs-body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--d2);
  margin-bottom: 28px;
}

/* Watch video button */
.cs-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,144,42,0.35);
  border-radius: 100px;
  padding: 11px 22px;
  text-decoration: none;
  transition: background var(--t2), border-color var(--t2);
}
.cs-watch-btn:hover {
  background: rgba(196,144,42,0.08);
  border-color: rgba(196,144,42,0.65);
}

/* ── Comparison table ── */
.cs-table {
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.cs-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.cs-row:last-child { border-bottom: none; }
.cs-row--head {
  background: rgba(255,255,255,0.025);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d3);
}
.cs-row:not(.cs-row--head) {
  font-size: 13px;
  color: var(--d2);
}
.cs-row:not(.cs-row--head) span:first-child { color: var(--d1); }
.cs-gold { color: var(--gold); font-weight: 600; }
.cs-dim  { color: var(--d3); }

/* ── Creator attribution chip ── */
.cs-creator-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ink-card);
  border: 1px solid var(--rule-2);
  border-radius: 10px;
}
.cs-creator-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.cs-creator-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--d1);
  margin-bottom: 2px;
}
.cs-creator-handle {
  font-size: 11px;
  color: var(--d3);
}

/* ── Read more link ── */
.cs-read-more { margin-top: 36px; }

/* ── Insight blockquote ── */
.cs-insight {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.6;
  color: var(--d1);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 0 auto;
  max-width: 820px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .cs-metrics {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .cs-metric + .cs-metric {
    border-left: none;
    border-top: 1px solid var(--rule-2);
  }
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .cs-insight { padding-left: 20px; }
}


/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-r] { opacity: 1; transform: none; }
  .sp-reveal { opacity: 1; visibility: visible; filter: none; }
  body { animation: none; }
  /* Split reveal — show immediately, no clip */
  [data-reveal="split"] .ln { overflow: visible; }
  [data-reveal="split"] .ln-i { transform: none !important; transition: none !important; }
  .grain { display: none; }
  .cur   { display: none; }
}


/* ══════════════════════════════════════════════════════
   GRAIN — film-like noise overlay
   SVG fractalNoise · mix-blend-mode overlay · opacity 0.028
══════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.028;
  mix-blend-mode: overlay;
}
@media (pointer: coarse) { .grain { display: none; } }


/* ══════════════════════════════════════════════════════
   SCROLL PROGRESS — gold hairline at viewport top
══════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 60%, rgba(196,144,42,0.4) 100%);
  z-index: 9901;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
  opacity: 0.9;
}


/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR — gold dot + lagging ring (desktop only)
══════════════════════════════════════════════════════ */
.cur {
  position: fixed;
  top: 0; left: 0;
  z-index: 99999;
  pointer-events: none;
  will-change: transform;
}
.cur-dot {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px 1px rgba(196, 144, 42, 0.70);
  transition: width 0.18s var(--spring), height 0.18s var(--spring), opacity 0.3s,
              box-shadow 0.25s;
  will-change: transform;
}
.cur-ring {
  position: absolute;
  width: 48px; height: 48px;
  background: radial-gradient(circle,
    rgba(196, 144, 42, 0.18) 0%,
    rgba(196, 144, 42, 0.07) 40%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.45s var(--spring), height 0.45s var(--spring),
              opacity 0.4s;
  will-change: transform;
}
.cur.is-hover .cur-dot {
  width: 5px; height: 5px;
  box-shadow: 0 0 10px 3px rgba(196, 144, 42, 0.80);
}
.cur.is-hover .cur-ring {
  width: 80px; height: 80px;
  background: radial-gradient(circle,
    rgba(196, 144, 42, 0.22) 0%,
    rgba(196, 144, 42, 0.09) 42%,
    transparent 70%
  );
}
.cur.is-out { opacity: 0; }
@media (pointer: coarse) { .cur { display: none; } }


/* ══════════════════════════════════════════════════════
   TEXT SPLIT REVEAL
   JS wraps each <br>-delimited line in .ln > .ln-i
   Clip-path reveal: text climbs up from below overflow mask
══════════════════════════════════════════════════════ */
.ln {
  display: block;
  overflow: hidden;
  /* Tiny bottom pad prevents descender clipping */
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.ln-i {
  display: block;
  transform: translateY(108%) skewY(1.2deg);
  transition: transform 1.1s var(--spring);
  /* transition-delay set per-line by JS (0ms, 130ms, …) */
}
[data-reveal="split"].in .ln-i {
  transform: translateY(0) skewY(0deg);
}


/* ══════════════════════════════════════════════════════
   SECTION HEADER — subtle reveal for eyebrow + sub
   (via existing [data-r] system — no extra rules needed,
   but we tighten the reveal distance for header elements)
══════════════════════════════════════════════════════ */
.section-eyebrow[data-r],
.section-sub[data-r],
.manifesto-eyebrow[data-r] {
  /* Shorter travel — header text shouldn't drift far */
  transform: translateY(16px);
}
.section-eyebrow[data-r].in,
.section-sub[data-r].in,
.manifesto-eyebrow[data-r].in {
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════
   MANIFESTO — deeper cinematic atmosphere
══════════════════════════════════════════════════════ */
.manifesto-section {
  position: relative;
  overflow: hidden;
}
/* Central gold nebula — ambient warmth */
.manifesto-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76%; max-width: 680px; height: 80%;
  background: radial-gradient(ellipse at center,
    rgba(196, 144, 42, 0.042) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
.manifesto-inner { position: relative; z-index: 1; }

/* Manifesto quote — larger, more editorial */
.manifesto-quote {
  font-size: clamp(36px, 5.6vw, 78px);
  letter-spacing: -0.028em;
}


/* ══════════════════════════════════════════════════════
   CTA — warmer depth, atmospheric bottom glow
══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -25%; left: 50%;
  transform: translateX(-50%);
  width: 58%; max-width: 580px; height: 80%;
  background: radial-gradient(ellipse at bottom,
    rgba(196, 144, 42, 0.052) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner { position: relative; z-index: 1; }

/* CTA title — bigger, more commanding */
.cta-title {
  font-size: clamp(50px, 7.2vw, 100px);
  letter-spacing: -0.032em;
}


/* ══════════════════════════════════════════════════════
   MAGNETIC BUTTON — spring-back on mouseleave
   (transform applied via JS; this only handles the leave)
══════════════════════════════════════════════════════ */
.btn-primary.mag-out,
.nav-btn.mag-out,
.fiq-trigger.mag-out {
  transition: transform 680ms var(--spring) !important;
}


/* ══════════════════════════════════════════════════════
   HERO — tighter eyebrow, more dramatic title rhythm
══════════════════════════════════════════════════════ */
.hero-title {
  font-size: clamp(64px, 9.5vw, 136px);
  letter-spacing: -0.042em;
  line-height: 0.87;
}
.hero-eyebrow { letter-spacing: 0.24em; }


/* ══════════════════════════════════════════════════════
   SECTION TITLE — slightly taller for more authority
══════════════════════════════════════════════════════ */
.section-title {
  font-size: clamp(44px, 5.8vw, 76px);
  letter-spacing: -0.030em;
  line-height: 1.04;
}


/* ══════════════════════════════════════════════════════
   ▓▓▓ CINEMATIC PRELOADER — luxury boot sequence ▓▓▓
   Total duration: ~2.5s on first load
══════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  overflow: hidden;
  transition: opacity 1000ms cubic-bezier(0.7, 0, 0.25, 1);
}

/* Body lock while preloader is active */
body.is-loading { overflow: hidden; }

/* Ambient gold nebula behind logo */
.preloader-bg {
  position: absolute;
  top: 50%; left: 50%;
  width: 90%; max-width: 900px;
  height: 65%;
  transform: translate(-50%, -50%) scale(0.55);
  background: radial-gradient(ellipse at center,
    rgba(196, 144, 42, 0.11) 0%,
    rgba(196, 144, 42, 0.035) 30%,
    transparent 62%);
  pointer-events: none;
  opacity: 0;
  animation: plBgIn 1700ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}
@keyframes plBgIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Subtle hairline grid — premium tech feel */
.preloader-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(196,144,42,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(196,144,42,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  opacity: 0;
  animation: plFade 1400ms ease 400ms forwards;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}

/* Top eyebrow with twin hairlines */
.preloader-top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: plFade 700ms ease 250ms forwards;
}
.preloader-bar {
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: plBarGrow 950ms cubic-bezier(0.5, 0, 0.1, 1) 350ms forwards;
}
@keyframes plBarGrow { to { width: 32px; } }

/* Logo letters */
.preloader-mark {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1;
  color: var(--gold);
  display: flex;
  user-select: none;
  -webkit-user-select: none;
}
.pl-l {
  display: inline-block;
  opacity: 0;
  transform: translateY(42px);
  filter: blur(10px);
  animation: plLetterIn 1300ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i) * 80ms + 550ms);
}
@keyframes plLetterIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Bottom status */
.preloader-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--d3);
  opacity: 0;
  animation: plFade 600ms ease 1550ms forwards;
}
.preloader-dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: plDotPulse 1500ms ease-in-out infinite 1550ms;
}
@keyframes plDotPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.35); }
}

/* Status text swap: Initializing → Ready */
.preloader-status {
  position: relative;
  display: inline-block;
  min-width: 140px;
}
.preloader-status-init,
.preloader-status-ready {
  display: inline-block;
  transition: opacity 400ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.preloader-status-ready {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  color: var(--gold);
}
.preloader--ready .preloader-status-init {
  opacity: 0;
  transform: translateY(-8px);
}
.preloader--ready .preloader-status-ready {
  opacity: 1;
  transform: translateY(0);
}

@keyframes plFade { to { opacity: 1; } }

/* Gold sweep across screen — pre-exit signature */
.preloader-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    102deg,
    transparent 0%,
    transparent 36%,
    rgba(196, 144, 42, 0.16) 47%,
    rgba(255, 250, 240, 0.07) 50%,
    rgba(196, 144, 42, 0.16) 53%,
    transparent 64%,
    transparent 100%
  );
  transform: translateX(-115%);
  z-index: 3;
}
.preloader--sweep .preloader-sweep {
  animation: plSweep 1200ms cubic-bezier(0.45, 0, 0.1, 1) forwards;
}
@keyframes plSweep { to { transform: translateX(115%); } }

/* Curtain split — top/bottom halves slide away */
.preloader-curtain {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: var(--ink);
  z-index: 4;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 1100ms cubic-bezier(0.7, 0, 0.25, 1);
}
.preloader-curtain--t { top: 0; }
.preloader-curtain--b { bottom: 0; }
.preloader--split .preloader-curtain--t { transform: translateY(-100%); }
.preloader--split .preloader-curtain--b { transform: translateY(100%); }

/* Final exit */
.preloader--done {
  opacity: 0;
  pointer-events: none;
}

/* Font-loading state */
.preloader--font-loading .preloader-inner { visibility: hidden; }
.preloader--font-loading .preloader-bg { opacity: 0; animation: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .preloader { display: none !important; }
}

/* Mobile tuning */
@media (max-width: 480px) {
  .preloader-mark { font-size: 64px; }
  .preloader-inner { gap: 42px; }
  .preloader-grid { background-size: 56px 56px; }
}


/* ══════════════════════════════════════════════════════
   INTELLIGENT NAVBAR — context-aware light/dark adaptation
══════════════════════════════════════════════════════ */
.nav { transition: background var(--t2), box-shadow var(--t2), backdrop-filter var(--t2); }
.nav-logo,
.nav-logo-mark { transition: color var(--t2); }
.nav-links a { transition: color var(--t1), opacity var(--t1); }
.nav-toggle span { transition: background var(--t2), transform var(--t2), opacity var(--t1); }

/* On light sections — nav flips to cream glass for contrast */
.nav.on-light {
  background: rgba(252, 249, 244, 0.75);
}
.nav.on-light .nav-links a       { color: var(--l2); }
.nav.on-light .nav-links a:hover { color: var(--l1) !important; }
.nav.on-light .nav-links:hover a { opacity: 0.4; }
.nav.on-light .nav-toggle span   { background: var(--l1); }

/* MENU button on light sections — liquid glass, dark text/arrow */
.nav.on-light .nav-menu-btn {
  background: rgba(255, 255, 255, 0.38);
  color: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow:
    inset 1.8px 3px 0 -2px rgba(255,255,255,0.95),
    inset -2px -2px 0 -2px rgba(255,255,255,0.65),
    inset -0.3px -1px 4px 0 rgba(0,0,0,0.06),
    0 2px 14px rgba(0,0,0,0.10),
    0 0 0 1px rgba(0,0,0,0.09);
}
.nav.on-light .nav-menu-btn:hover {
  color: var(--gold);
}
.nav.on-light .nav-menu-btn[aria-expanded="true"],
.nav.on-light .nav-menu-btn:active {
  color: var(--gold);
}
/* nav-btn (gold CTA) stays as-is on light sections */


/* ══════════════════════════════════════════════════════
   BOOT-UP — extra reveal layer for hero ambient
   (Fades in BEHIND the curtain split)
══════════════════════════════════════════════════════ */
.hero::before {
  /* Initial: invisible. Activated when body loses is-loading */
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body:not(.is-loading) .hero::before { opacity: 1; }


/* ══════════════════════════════════════════════════════════════════════
   ▓▓▓ ELITE POLISH PASS — production-grade refinement ▓▓▓
   Cursor responsiveness · typography · atmosphere · microinteractions
══════════════════════════════════════════════════════════════════════ */

/* ── Typography rendering ── */
body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" on, "liga" on;
}

/* ── Border radius unification (cards = 18px, refined editorial scale) ── */
.problem-card,
.feature-card,
.creator-card,
.plan-card,
.process-step,
.stat-block,
.case-study-hold,
.fiq-card {
  border-radius: 18px;
}

/* ── CURSOR — snappier transitions on size/state changes ── */
.cur-dot {
  transition: width 0.14s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.14s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s,
              opacity 0.25s;
  will-change: transform;
}
.cur-ring {
  transition: width 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s;
  will-change: transform;
}


/* ══════════════════════════════════════════════════════
   LIGHT SECTIONS — subtle warm top atmosphere
   Barely perceptible gold radial at top of each
══════════════════════════════════════════════════════ */
.problem,
.services,
.creators,
.pricing {
  position: relative;
}
.problem::before,
.services::before,
.creators::before,
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 92%; max-width: 1180px;
  height: 52%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at top center,
    rgba(196, 144, 42, 0.030) 0%,
    rgba(196, 144, 42, 0.012) 35%,
    transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.problem .container,
.services .container,
.creators .container,
.pricing .container {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════
   DARK SECTIONS — atmospheric depth (process + portfolio)
══════════════════════════════════════════════════════ */
.process,
.portfolio {
  position: relative;
  overflow: hidden;
}
.process::after {
  content: '';
  position: absolute;
  top: -12%; right: -18%;
  width: 58%; height: 65%;
  background: radial-gradient(ellipse at center,
    rgba(196, 144, 42, 0.042) 0%,
    rgba(196, 144, 42, 0.012) 35%,
    transparent 66%);
  pointer-events: none;
  z-index: 0;
}
.portfolio::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -18%;
  width: 58%; height: 65%;
  background: radial-gradient(ellipse at center,
    rgba(196, 144, 42, 0.040) 0%,
    rgba(196, 144, 42, 0.012) 35%,
    transparent 66%);
  pointer-events: none;
  z-index: 0;
}
.process .container,
.portfolio .container {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════
   CARD HOVER REFINEMENT — smoother lift + gold edge
══════════════════════════════════════════════════════ */
.problem-card,
.feature-card,
.creator-card,
.plan-card:not(.plan-card--featured) {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}
.problem-card:hover,
.feature-card:hover,
.creator-card:hover,
.plan-card:not(.plan-card--featured):hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(10, 9, 8, 0.09),
    0 3px 10px rgba(10, 9, 8, 0.04),
    0 0 0 1px rgba(196, 144, 42, 0.06);
}

/* Process step refined hover */
.process-step:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(196, 144, 42, 0.10);
}

/* Stats block — refined hover w/ gold edge */
.stat-block {
  transition: border-color 0.4s,
              box-shadow 0.4s,
              background 0.4s,
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-block:hover {
  transform: translateY(-3px);
  background: var(--ink-card);
  border-color: rgba(196, 144, 42, 0.32);
  box-shadow:
    0 0 0 1px rgba(196, 144, 42, 0.10),
    0 14px 40px rgba(0, 0, 0, 0.36);
}


/* ══════════════════════════════════════════════════════
   PRIMARY CTA — luxury shimmer + tactile shadows
══════════════════════════════════════════════════════ */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(196, 144, 42, 0.15),
    inset 0 1px 0 rgba(255, 250, 240, 0.18);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 250, 240, 0.22) 50%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-110%);
  transition: transform 0.75s cubic-bezier(0.45, 0, 0.1, 1);
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(110%); }
.btn-primary:hover {
  box-shadow:
    0 16px 44px rgba(196, 144, 42, 0.38),
    0 4px 14px rgba(196, 144, 42, 0.22),
    inset 0 1px 0 rgba(255, 250, 240, 0.22);
}

/* Secondary button — subtle warmth */
.btn-secondary {
  background: rgba(237, 235, 230, 0.025);
}
.btn-secondary:hover {
  background: rgba(237, 235, 230, 0.06);
}

/* Plan button — refined hover (inverts to dark on light, gold on featured) */
.btn-plan {
  transition: border-color var(--t1),
              color var(--t1),
              background var(--t1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-plan:hover {
  border-color: var(--l1);
  background: var(--l1);
  color: var(--cream);
  transform: translateY(-2px);
}
.plan-card--featured .btn-plan {
  box-shadow:
    0 2px 8px rgba(196, 144, 42, 0.22),
    inset 0 1px 0 rgba(255, 250, 240, 0.18);
}
.plan-card--featured .btn-plan:hover {
  box-shadow:
    0 14px 36px rgba(196, 144, 42, 0.36),
    0 2px 8px rgba(196, 144, 42, 0.22);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════
   NAVBAR — refined typography + spacing
══════════════════════════════════════════════════════ */
.nav-container { gap: 20px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
}


/* ══════════════════════════════════════════════════════
   TYPOGRAPHY MICRO-REFINEMENTS — across the site
══════════════════════════════════════════════════════ */
.section-eyebrow,
.manifesto-eyebrow,
.preloader-eyebrow,
.preloader-bottom {
  letter-spacing: 0.26em;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
}
.hero-sub {
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -0.002em;
  color: var(--d2);
}
.hero-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d3);
}
.section-sub {
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: -0.002em;
}
.cta-sub {
  font-size: 18px;
  line-height: 1.75;
  max-width: 48ch;
  letter-spacing: -0.002em;
}


/* ══════════════════════════════════════════════════════
   TRUST STRIP — editorial credits, not labels
══════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px 0;
}
.trust-label {
  letter-spacing: 0.28em;
  margin-bottom: 28px;
}
.trust-logos span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--d2);
  transition: color var(--t2);
}
.trust-logos span:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════════
   CREATOR CARD — refined photo treatment
══════════════════════════════════════════════════════ */
.creator-photo {
  border: 1px solid var(--rule-l);
  box-shadow: 0 4px 12px rgba(10, 9, 8, 0.05);
  transition: border-color var(--t2),
              box-shadow var(--t2);
}
.creator-card:hover .creator-photo {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(196, 144, 42, 0.20);
}


/* ══════════════════════════════════════════════════════
   PORTFOLIO — refined thumb shadow + gold edge on hover
══════════════════════════════════════════════════════ */
.pf-thumb {
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
  transition: box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-card:hover .pf-thumb {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 144, 42, 0.20);
}


/* ══════════════════════════════════════════════════════
   MANIFESTO PILLAR — gold border on hover
══════════════════════════════════════════════════════ */
.manifesto-pillar {
  transition: color var(--t2),
              border-color var(--t2),
              background var(--t2);
}
.manifesto-pillar:hover {
  color: var(--d1);
  border-color: var(--gold);
  background: rgba(196, 144, 42, 0.04);
}


/* ══════════════════════════════════════════════════════
   FIQ — premium form focus + refined shadows
══════════════════════════════════════════════════════ */
.fiq-field input:focus,
.fiq-field select:focus,
.fiq-field textarea:focus {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(196, 144, 42, 0.12),
    0 1px 0 rgba(196, 144, 42, 0.15);
}
/* fiq-trigger shadow depth — unified in the main rule above */


/* ══════════════════════════════════════════════════════
   FOOTER — gold accent line + premium hover physics
══════════════════════════════════════════════════════ */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--rule-2) 30%,
    rgba(196, 144, 42, 0.45) 50%,
    var(--rule-2) 70%,
    transparent 100%);
  z-index: 1;
}
.footer-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--d2);
  letter-spacing: -0.005em;
  margin-top: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.footer-nav a,
.footer-links a {
  font-size: 13px;
  position: relative;
  transition: color var(--t2),
              padding-left var(--t2);
}
.footer-nav a:hover,
.footer-links a:hover {
  padding-left: 8px;
}


/* ══════════════════════════════════════════════════════
   STATS SECTION — match cinematic spacing
══════════════════════════════════════════════════════ */
.stats-section {
  padding: var(--sy) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  width: 70%; max-width: 800px;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(196, 144, 42, 0.035) 0%,
    transparent 65%);
  pointer-events: none;
}
.stats-section .container {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════
   PLAN FEATURED — refined gold edge
══════════════════════════════════════════════════════ */
.plan-card--featured {
  box-shadow:
    0 8px 44px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(196, 144, 42, 0.20);
}
.plan-badge {
  box-shadow: 0 4px 14px rgba(196, 144, 42, 0.32);
}


/* ══════════════════════════════════════════════════════
   PROCESS STEP — refined number weight
══════════════════════════════════════════════════════ */
.step-num,
.problem-num,
.feature-icon {
  font-feature-settings: "ss01" on, "lnum" on;
}


/* ══════════════════════════════════════════════════════
   MOBILE TYPOGRAPHY — refined scale
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(46px, 12.5vw, 78px);
    line-height: 0.92;
    letter-spacing: -0.036em;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.7;
    max-width: 38ch;
  }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.24em; }
  .section-title {
    font-size: clamp(36px, 9vw, 58px);
    line-height: 1.06;
  }
  .section-sub { font-size: 15px; }
  .cta-title { font-size: clamp(42px, 10vw, 68px); }
  .cta-sub   { font-size: 16px; line-height: 1.7; max-width: 38ch; }
  .manifesto-quote {
    font-size: clamp(32px, 8.5vw, 58px);
    line-height: 1.1;
  }
  .trust-logos span { font-size: 18px; }
  /* Reduce atmospheric opacity on mobile for perf + clarity */
  .problem::before,
  .services::before,
  .creators::before,
  .pricing::before { opacity: 0.7; }
  .process::after,
  .portfolio::before { opacity: 0.65; }
}


/* ══════════════════════════════════════════════════════
   MOBILE — nav typography reflow
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-drawer-link {
    letter-spacing: -0.02em;
  }
}


/* ══════════════════════════════════════════════════════
   PORTFOLIO — per-thumbnail composition anchoring
══════════════════════════════════════════════════════ */
.portfolio-grid .pf-card:nth-child(1) .pf-thumb img { object-position: center 20%; }
.portfolio-grid .pf-card:nth-child(3) .pf-thumb img { object-position: center 30%; }
.portfolio-grid .pf-card:nth-child(4) .pf-thumb img { object-position: center top; }
.portfolio-grid .pf-card:nth-child(6) .pf-thumb img { object-position: center top; }


/* ══════════════════════════════════════════════════════
   TESTIMONIALS — dark
══════════════════════════════════════════════════════ */
.testimonials { background: var(--ink-2); }

.testimonials-grid {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.testimonial-card {
  max-width: 760px;
  width: 100%;
  background: var(--ink-card);
  border: 1px solid var(--rule-2);
  border-radius: 18px;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.28);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 56px; bottom: 56px; left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  border-radius: 0 2px 2px 0;
}

.testimonial-brand {
  font-family: var(--ff-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.testimonial-quote {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 23px);
  font-style: italic;
  color: var(--d1);
  line-height: 1.65;
  letter-spacing: -0.01em;
  quotes: none;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.testimonial-role {
  font-size: 11px;
  color: var(--d3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 40px 32px;
  }
  .testimonial-card::before {
    top: 40px; bottom: 40px;
  }
}


/* ══════════════════════════════════════════════════════
   FAQ — editorial accordion
══════════════════════════════════════════════════════ */
.faq { background: var(--ink); }
.faq .section-title { color: var(--d1); }
.faq .section-sub   { color: var(--d2); }

.faq-list {
  max-width: 840px;
  margin: 72px auto 0;
}

.faq-item {
  border-top: 1px solid var(--rule-2);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--rule-2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.5vw, 19px);
  font-style: italic;
  color: var(--d1);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-item.is-open .faq-q {
  color: var(--gold);
}

/* +/× icon */
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  margin-top: 3px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s var(--spring), opacity 0.25s;
}
.faq-icon::before {
  width: 12px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* answer reveal */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding-bottom: 32px;
}
.faq-a-inner p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--d2);
  line-height: 1.80;
  max-width: 680px;
}
.faq-a-inner p + p {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .faq-list { margin-top: 48px; }
  .faq-q { font-size: 16px; padding: 22px 0; }
}


/* ══════════════════════════════════════════════════════
   MOBILE NAV — final cascade overrides
   (must be AFTER the late override block ~line 2548 so
   cascade order wins for .nav-btn font-size / padding)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* MENU button: pull out of absolute flow, sit as the rightmost item */
  .nav-menu-btn {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    order: 3;
    flex-shrink: 0;
  }

  /* Book a Free Audit: hidden on mobile */
  .nav-btn {
    display: none;
  }

  /* MENU button fills the right gap with auto left margin */
  .nav-menu-btn {
    margin-left: auto;
  }

  /* Horizontal pill dropdown — scaled to fit mobile screen */
  .nav-dropdown {
    flex-direction: row;
    width: auto;
    max-width: calc(100vw - 40px);
    min-width: unset;
    white-space: nowrap;
    border-radius: 100px;
    gap: 0;
  }
  .nav-dropdown a {
    font-size: 9.5px;
    letter-spacing: 0.09em;
    padding: 10px 9px;
    border-radius: 100px;
  }
}


/* ══════════════════════════════════════════════════════
   GOOEY HERO — gold morphing word
══════════════════════════════════════════════════════ */
.gooey-svg {
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-title--gooey {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title-static {
  display: block;
}

.hero-gooey-wrap {
  display: block;
  position: relative;
  height: 1.15em;
  min-width: 6em;
}

.gooey-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.gooey-word--1,
.gooey-word--2 {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: inherit;
  font-weight: 400;
  color: var(--gold);
  opacity: 0;
  white-space: nowrap;
  line-height: 1.15;
  user-select: none;
  /* filter (blur) is rewritten every frame during the ~1s morph, unlike a
     static blur value the GPU can cache and just recomposite — will-change
     keeps this on its own layer continuously instead of promoting/demoting
     it every cycle, which is where the real cost saving is. */
  will-change: filter, opacity;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 7px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-inner--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-inner--center .hero-title--gooey {
  align-items: center;
}

.hero-inner--center .hero-gooey-wrap {
  display: flex;
  justify-content: center;
}

.hero-inner--center .gooey-inner {
  justify-content: center;
}

.hero-inner--center .gooey-word--1,
.hero-inner--center .gooey-word--2 {
  left: 50%;
  transform: translateX(-50%);
}

.hero-text-block { text-align: center; }


/* ══════════════════════════════════════════════════════
   GLASS PRICING CARDS
══════════════════════════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 6px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.glass-card--featured {
  border-color: rgba(196,144,42,0.35);
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(196,144,42,0.12), 0 0 0 1px rgba(196,144,42,0.2);
}

.glass-card-header {
  position: relative;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 6px;
  overflow: hidden;
}

.glass-card-header--featured {
  background: rgba(196,144,42,0.08);
  border-color: rgba(196,144,42,0.18);
}

.glass-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 40%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

.glass-card-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.glass-card-plan-name {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
}

.glass-card--featured .glass-card-plan-name { color: var(--gold); }

.glass-card-badge {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 3px 10px;
}

.glass-card-badge--gold {
  color: var(--gold);
  border-color: rgba(196,144,42,0.4);
  background: rgba(196,144,42,0.08);
}

.glass-card-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 10px;
}

.glass-card-main-price {
  font-family: var(--ff-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.glass-card--featured .glass-card-main-price { color: #fff; }

.glass-card-main-price--sm {
  font-size: 26px;
}

.glass-card-period {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  padding-bottom: 4px;
}

.glass-card--featured .glass-card-period { color: rgba(255,255,255,0.5); }

.glass-card-desc {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
}

.glass-card--featured .glass-card-desc { color: rgba(255,255,255,0.5); }

.glass-card-body {
  padding: 10px 16px 16px;
}

.glass-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.glass-card-list li {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  padding-left: 18px;
  position: relative;
}

.glass-card--featured .glass-card-list li { color: rgba(255,255,255,0.7); }

.glass-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.65);
  border: 1px solid rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
}

.btn-plan:hover {
  background: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.85);
}

.glass-card--featured .btn-plan {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.12);
}

.glass-card--featured .btn-plan:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.btn-plan--gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-plan--gold:hover {
  background: #d4a030;
  border-color: #d4a030;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--l3);
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.pricing { background: var(--cream); }


/* ══════════════════════════════════════════════════════
   PLAN V2 — editorial pricing cards
══════════════════════════════════════════════════════ */
.plan-v2 {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  transition: transform 0.4s var(--spring), box-shadow 0.4s;
  box-shadow: 0 2px 20px rgba(10,9,8,0.06);
}
.plan-v2:not(.plan-v2--featured):hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10,9,8,0.10);
}
.plan-v2--featured {
  background: var(--ink);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.30), 0 0 0 1px rgba(196,144,42,0.18);
}
.plan-v2-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,144,42,0.40);
  background: rgba(196,144,42,0.08);
  border-radius: 4px;
  padding: 4px 10px;
}
.plan-v2-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--l3);
  margin-bottom: 14px;
}
.plan-v2--featured .plan-v2-name { color: var(--gold); }

.plan-v2-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-v2-amount {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--l1);
}
.plan-v2--featured .plan-v2-amount { color: #fff; }
.plan-v2-amount--sm {
  font-size: clamp(32px, 3.2vw, 44px);
}
.plan-v2-per {
  font-size: 12px;
  color: var(--l3);
  letter-spacing: 0.01em;
  padding-bottom: 4px;
}
.plan-v2--featured .plan-v2-per { color: var(--d3); }

.plan-v2-unit {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.plan-v2-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--l2);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-l);
}
.plan-v2--featured .plan-v2-desc {
  color: var(--d2);
  border-bottom-color: var(--rule-2);
}
.plan-v2-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 24px;
}
.plan-v2-list li {
  font-size: 13px;
  color: var(--l2);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--rule-l);
  position: relative;
  line-height: 1.4;
}
.plan-v2--featured .plan-v2-list li {
  color: var(--d2);
  border-bottom-color: var(--rule-2);
}
.plan-v2-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 11px;
}
.plan-v2-note {
  background: rgba(196,144,42,0.05);
  border: 1px solid rgba(196,144,42,0.14);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-family: var(--ff-sans);
  font-size: 12px;
  line-height: 1.65;
  color: var(--l3);
  font-style: italic;
}
.plan-v2-note strong {
  color: var(--l2);
  font-style: normal;
}
.plan-v2-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 980px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: transparent;
  color: var(--l1);
  border: 1.5px solid var(--rule-l);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.22s var(--spring), box-shadow 0.22s ease;
  cursor: pointer;
}
.plan-v2-btn:hover {
  background: var(--l1);
  color: var(--cream);
  border-color: var(--l1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196,144,42,0.18);
}
.plan-v2--featured .plan-v2-btn {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.12);
}
.plan-v2--featured .plan-v2-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.plan-v2-btn--gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.plan-v2-btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196,144,42,0.30);
}


/* ══════════════════════════════════════════════════════
   GLOW CARD — continuous spinning border arc
══════════════════════════════════════════════════════ */
@property --gc-a {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes gcSpin {
  to { --gc-a: 360deg; }
}

.glow-card,
.glass-card,
.feature-card,
.process-step,
.creator-card {
  position: relative;
  isolation: isolate;
}

.case-study-hold {
  position: relative;
}

.glow-card::before,
.glass-card::before,
.feature-card::before,
.creator-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--gc-a), transparent 0%, rgba(196,144,42,0.65) 9%, transparent 20%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  filter: blur(0.2px);
  animation: gcSpin 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.glass-card--featured::before {
  background: conic-gradient(from var(--gc-a), transparent 0%, rgba(196,144,42,0.90) 9%, transparent 20%);
  padding: 1.5px;
}


/* ══════════════════════════════════════════════════════
   PORTFOLIO CAROUSEL
══════════════════════════════════════════════════════ */
.pf-carousel-wrap {
  position: relative;
  margin-top: 48px;
}

.pf-carousel-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.pf-carousel-viewport:active { cursor: grabbing; }

.pf-carousel-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: none;
}

.pf-carousel-btn {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 1.8px 3px 0 -2px rgba(255,255,255,0.75),
    inset -2px -2px 0 -2px rgba(255,255,255,0.55),
    inset -0.3px -1px 4px 0 rgba(0,0,0,0.12),
    0 4px 20px rgba(0,0,0,0.40);
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}

.pf-carousel-btn--prev { left: 16px; }
.pf-carousel-btn--next { right: 16px; }

.pf-carousel-btn:hover,
.pf-carousel-btn:active {
  color: var(--gold);
}

.pf-card {
  flex-shrink: 0;
  width: 320px;
  display: block;
  cursor: pointer;
}

.pf-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--d3);
}

.pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.pf-card:hover .pf-thumb img {
  transform: scale(1.04);
  filter: brightness(0.90);
}

.pf-overlay {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.22),
    inset 1.5px 2px 0 -1.5px rgba(255,255,255,0.55),
    0 4px 20px rgba(0,0,0,0.35);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pf-card:hover .pf-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pf-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2px 0;
  border-bottom: none;
}

.pf-niche {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.pf-creator {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}


/* ══════════════════════════════════════════════════════
   TESTIMONIAL CARD STACK
══════════════════════════════════════════════════════ */
.tc-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 32px 0 48px;
}

.tc-stack {
  position: relative;
  width: 480px;
  height: 400px;
}

.tc-card {
  position: absolute;
  inset: 0;
  background: #000;
  border: 1px solid var(--rule-2);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.04);
  cursor: grab;
  user-select: none;
  will-change: transform, opacity;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  touch-action: none;
  overflow: hidden;
}

/* Decorative large quote mark */
.tc-card::after {
  content: '\201C';
  position: absolute;
  bottom: -12px;
  right: 28px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: rgba(196,144,42,0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.tc-card:active { cursor: grabbing; }

.tc-card--b1 {
  z-index: 1;
  transform: translateY(10px) rotate(-2deg);
  opacity: 0.55;
  pointer-events: none;
  justify-content: center;
}

.tc-card--b2 {
  z-index: 0;
  transform: translateY(20px) rotate(-4deg);
  opacity: 0.25;
  pointer-events: none;
}

.tc-card[data-tc-idx="0"] { z-index: 3; }

.tc-card.is-flying-out {
  transition: transform 0.22s ease-in, opacity 0.22s ease-in;
}

.tc-brand-logo {
  display: block;
  width: 190px;
  height: auto;
  margin: 0 0 20px;
  /* Source PNG's background is off-white (~#F8F8F8), not pure white, so
     invert(1) alone leaves it dark GRAY rather than pure black — visible
     as a faint block against the card's true #000. contrast() crushes
     that residual gray to 0 (and the near-black wordmark to pure white)
     so only the free-standing letterforms remain. */
  filter: invert(1) contrast(1.4);
  mix-blend-mode: lighten;
}

.tc-name {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin-bottom: 3px;
  position: relative;
  z-index: 1;
}

.tc-brand {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.tc-role {
  font-family: var(--ff-sans);
  font-size: 10px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  position: relative;
  z-index: 1;
}

.tc-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: #fff;
  text-align: left;
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 1;
}

.tc-back-label {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: #fff;
  text-align: center;
}

.tc-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tc-arrows {
  display: flex;
  gap: 24px;
}

.tc-arr {
  font-size: 22px;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  user-select: none;
  padding: 4px 10px;
  transition: color 0.2s;
}

.tc-arr:hover { color: var(--gold); }

.tc-dots { display: flex; gap: 8px; align-items: center; }

.tc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 0.25s, transform 0.25s;
}

.tc-dot--on {
  background: var(--gold);
  transform: scale(1.25);
}

.testimonials { background: var(--ink); }


/* ══════════════════════════════════════════════════════
   CTA TYPEWRITER SMOOTH — TypewriterEffectSmooth port
   Each line reveals left-to-right via an animated WIDTH,
   not clip-path. clip-path transitions have a documented
   history of unreliable cross-browser animation (notably
   Safari — see the JS comment on LINE_MS below); width is
   the most universally well-supported animatable property,
   so this class of bug is structurally impossible here.

   .tw-sm-line is sized to its line's full natural width by
   JS (main.js) and centered via margin, so the block stays
   put on the page; .tw-sm-inner sits at that box's left
   edge and grows from 0 → full width, giving a stable
   left-to-right reveal instead of growing from the center.
══════════════════════════════════════════════════════ */
.tw-sm-line {
  display: block;
  position: relative;
  width: 0;              /* set to the line's natural px width by JS */
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.28em;
  margin-bottom: -0.28em;
}
.tw-sm-inner {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;               /* animated to its natural px width by JS */
  /* width reflows on every frame, unlike transform/opacity/clip-path,
     which browsers can often composite without touching layout. contain
     stops that reflow from propagating out to the rest of the page —
     the browser only has to re-check this box, not walk back up the
     tree — which is what keeps a 2s width transition frame-smooth. */
  contain: layout paint;
  /* Descender headroom: padding lives on the same box whose width
     animates, so the italic serif "f" tail always has room. */
  padding-bottom: 0.32em;
  margin-bottom: -0.32em;
  padding-top: 0.08em;
  margin-top: -0.08em;
  transition: width 2s linear;
}

/* Cursor travels with the text reveal — position driven by JS rAF */
.tw-cursor {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 0.7em;
  background: var(--gold);
  border-radius: 2px;
  pointer-events: none;
  animation: twBlink 0.8s ease-in-out infinite;
}

@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.tw-gold { color: var(--gold); }


/* ══════════════════════════════════════════════════════
   STICKY FOOTER — exact port of React/Framer Motion source
   Every class maps 1:1 to its Tailwind equivalent
══════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes fv2BlobTREntry {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 0.3; }
}
@keyframes fv2BlobBLEntry {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 0.2; }
}
@keyframes fv2BlobTRPulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%       { transform: scale(1.1); opacity: 0.6; }
}
@keyframes fv2BlobBLPulse {
  0%, 100% { transform: scale(1);   opacity: 0.2; }
  50%       { transform: scale(1.2); opacity: 0.5; }
}
@keyframes fv2LinePulse {
  0%, 100% { transform: scaleX(1);   }
  50%       { transform: scaleX(1.2); }
}

/* ── Sticky wrapper ── */
/* outer: relative h-[70vh] clipPath="polygon(0% 0,100% 0%,100% 100%,0 100%)"  */
/* clip-path handles ALL visual clipping (above + below).                        */
/* overflow:clip was here before but Chrome treats it as a scroll container for  */
/* sticky, breaking position:sticky on footer-v2. Fix: negative margin-bottom   */
/* on sftr-inner cancels the 100vh layout overflow without touching overflow.    */
.sftr-outer {
  position: relative;
  height: var(--fv2-h);
  clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
}
/* inner: relative h-[calc(100vh+70vh)] -top-[100vh]                             */
/* margin-bottom:-100vh collapses the layout overflow so no blank space appears  */
/* at the bottom of the page — does NOT affect sticky positioning.               */
.sftr-inner {
  position: relative;
  height: calc(100vh + var(--fv2-h));
  top: -100vh;
  margin-bottom: -100vh;
}

/* ── Sticky shell: h-[70vh] sticky top-[calc(100vh-70vh)] ── */
.footer-v2 {
  position: sticky;
  top: calc(100vh - var(--fv2-h));
  height: var(--fv2-h);
}

/* ── Content container ── */
/* motion.div initial="hidden" animate="visible" variants={containerVariants}           */
/* bg-gradient-to-br from-card via-muted to-card/90 py-6 md:py-12 px-4 md:px-12       */
/* h-full w-full flex flex-col justify-between relative overflow-hidden                 */
/* bg-gradient-to-br from-card via-muted to-card/90 → Monarc ink palette */
.fv2-content {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #131311 0%, #0C0C0A 50%, rgba(6,6,6,0.90) 100%);
  padding: 1.5rem 1rem;   /* py-6 px-4 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv2-content { padding: 3rem 3rem; } /* md:py-12 md:px-12 */
}

/* ── Overlay: absolute inset-0 bg-gradient-to-t from-background/20 to-transparent pointer-events-none ── */
.fv2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.20), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ── Blobs — exact DOM elements from React source (not ::before/::after) ── */
/* top-0 right-0 w-48 h-48 md:w-96 md:h-96 bg-primary/5 rounded-full blur-3xl           */
/* backgroundVariants: opacity:0 scale:0.8 → 0.3 1 (2s) then scale[1,1.1,1] opacity[0.3,0.6,0.3] (4s ∞) */
.fv2-blob-tr {
  position: absolute;
  top: 0; right: 0;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  background: rgba(196,144,42,0.05);  /* bg-primary/5 */
  filter: blur(48px);                 /* blur-3xl */
  pointer-events: none;
  animation:
    fv2BlobTREntry 2s ease-out forwards,
    fv2BlobTRPulse 4s ease-in-out 2s infinite;
}
@media (min-width: 768px) { .fv2-blob-tr { width: 24rem; height: 24rem; } } /* md:w-96 h-96 */

/* bottom-0 left-0 w-48 h-48 md:w-96 md:h-96 bg-secondary/5 rounded-full blur-3xl         */
/* backgroundVariants: opacity:0 scale:0.8 → 0.2 1 (2s) then scale[1,1.2,1] opacity[0.2,0.5,0.2] (5s delay:1 ∞) */
.fv2-blob-bl {
  position: absolute;
  bottom: 0; left: 0;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  background: rgba(166,120,32,0.05);  /* bg-secondary/5 */
  filter: blur(48px);
  pointer-events: none;
  animation:
    fv2BlobBLEntry 2s ease-out 1s forwards,
    fv2BlobBLPulse 5s ease-in-out 3s infinite;
}
@media (min-width: 768px) { .fv2-blob-bl { width: 24rem; height: 24rem; } }

/* ── Inner max-width wrapper (not in React source — kept for Monarc wide-screen) ── */
.fv2-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ── Nav wrapper: motion.div variants={containerVariants} relative z-10 ── */
.fv2-nav {
  position: relative;
  z-index: 10;
}

/* Grid: grid grid-cols-2 md:grid-cols-4 gap-6 md:gap-12 lg:gap-20 */
.fv2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;   /* gap-6 */
}
@media (min-width: 768px) {
  .fv2-cols { grid-template-columns: repeat(4, 1fr); gap: 3rem; } /* md:gap-12 */
}
@media (min-width: 1024px) {
  .fv2-cols { gap: 5rem; } /* lg:gap-20 */
}

/* NavSection: motion.div variants={itemVariants} flex flex-col gap-2 */
.fv2-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;  /* gap-2 */
}

/* motion.h3 mb-2 uppercase text-muted-foreground text-xs font-semibold tracking-wider border-b border-border pb-1 */
/* initial: opacity:0 y:-10 → 1 0, delay: 0.3 + index*0.1, duration:0.5 */
.fv2-heading {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);  /* text-muted-foreground */
  font-family: var(--ff-sans);
  font-size: 0.75rem;   /* text-xs */
  font-weight: 600;     /* font-semibold */
  letter-spacing: 0.05em;  /* tracking-wider */
  border-bottom: 1px solid rgba(255,255,255,0.08);  /* border-b border-border */
  padding-bottom: 0.25rem;  /* pb-1 */
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity   0.5s ease-out var(--fv2-delay, 0.3s),
    transform 0.5s ease-out var(--fv2-delay, 0.3s),
    color 0.3s ease;
}
.fv2-col.fv2-visible .fv2-heading { opacity: 1; transform: translateY(0); }
.fv2-heading:hover { color: rgba(255,255,255,0.65); }

/* motion.a variants={linkVariants} text-muted-foreground hover:text-foreground */
/* text-xs md:text-sm font-sans; linkVariants: opacity:0 y:10 → 1 0 duration:0.4 */
.fv2-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fv2-links a,
.fv2-email {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);  /* linkVariants y:10 */
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, color 0.3s ease;
  word-break: break-word;
}
@media (min-width: 768px) {
  .fv2-links a, .fv2-email { font-size: 0.875rem; }  /* md:text-sm */
}

/* Underline: motion.span absolute bottom-0 left-0 h-0.5 bg-primary, width:0 → 100% on hover, duration:0.3 */
.fv2-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* MenuVertical sliding arrow — ::before slides in from left, text shifts right */
/* Matches: initial:{x:-100%,opacity:0} hover:{x:0,opacity:1,color:gold} */
.fv2-links a::before {
  content: '→';
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
  transition: width 0.28s ease, opacity 0.28s ease, margin-right 0.28s ease;
  margin-right: 0;
}

/* whileHover x:8 spring stiffness:300 damping:20 */
.fv2-links a:hover {
  color: rgba(255,255,255,0.95);
  transform: translateX(8px);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fv2-links a:hover::after { width: 100%; }
.fv2-email:hover { color: rgba(255,255,255,0.85); }

/* Arrow slides in only after the link has been revealed (fv2-visible) */
.fv2-col.fv2-visible .fv2-links a:hover::before {
  width: 0.9em;
  opacity: 1;
  margin-right: 4px;
}

.fv2-col.fv2-visible .fv2-links a,
.fv2-col.fv2-visible .fv2-email {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--fv2-delay, 0s);
}
.fv2-col.fv2-visible .fv2-links a:hover,
.fv2-col.fv2-visible .fv2-email:hover { transition-delay: 0s !important; }

/* ── Bottom section ── */
/* motion.div initial:{opacity:0,y:30} animate:{opacity:1,y:0} transition:{delay:0.8,duration:0.8} */
/* flex flex-col md:flex-row justify-between items-start md:items-end relative z-10 gap-4 md:gap-6 mt-6 */
.fv2-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;           /* gap-4 */
  position: relative;
  z-index: 10;
  margin-top: 1.5rem;  /* mt-6 */
}
@media (min-width: 768px) {
  .fv2-bottom { flex-direction: row; align-items: flex-end; gap: 1.5rem; } /* md:flex-row md:items-end md:gap-6 */
}

/* flex-1 */
.fv2-brand-large {
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out 1s, transform 0.8s ease-out 1s;
}
.fv2-bottom.fv2-visible .fv2-brand-large { opacity: 1; transform: translateX(0); }

/* motion.h1 text-[12vw] md:text-[10vw] lg:text-[8vw] xl:text-[6vw] leading-[0.8] font-serif */
/* bg-gradient-to-r from-foreground via-muted-foreground to-foreground/60 bg-clip-text text-transparent cursor-default */
/* whileHover scale:1.02 spring */
.fv2-large-logo {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12vw;   /* text-[12vw] */
  line-height: 0.8;  /* leading-[0.8] */
  letter-spacing: -0.025em;
  background: linear-gradient(to right, #F5D280, #C4902A, #A67820);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  cursor: default;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px)  { .fv2-large-logo { font-size: 10vw; } }
@media (min-width: 1024px) { .fv2-large-logo { font-size: 8vw; } }
@media (min-width: 1280px) { .fv2-large-logo { font-size: 6vw; } }
.fv2-large-logo:hover { transform: scale(1.02); }
.fv2-large-logo .nav-logo-mark { font-style: inherit; -webkit-text-fill-color: inherit; }

/* motion.div initial:{opacity:0,width:0} animate:{opacity:1,width:"auto"} transition:{delay:1.2,duration:0.6} */
/* flex items-center gap-3 md:gap-4 mt-3 md:mt-4 */
.fv2-brand-sub {
  display: flex;
  align-items: center;
  gap: 0.75rem;   /* gap-3 */
  margin-top: 0.75rem;  /* mt-3 */
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.6s ease-out 1.2s, opacity 0.6s ease-out 1.2s;
}
@media (min-width: 768px) { .fv2-brand-sub { gap: 1rem; margin-top: 1rem; } } /* md:gap-4 md:mt-4 */
.fv2-bottom.fv2-visible .fv2-brand-sub { max-width: 380px; opacity: 1; }

/* motion.div w-8 md:w-12 h-0.5 bg-gradient-to-r from-primary to-secondary animate:{scaleX:[1,1.2,1]} duration:2 ∞ */
.fv2-brand-line {
  display: block;
  width: 2rem;   /* w-8 */
  height: 2px;   /* h-0.5 */
  background: linear-gradient(to right, var(--gold), var(--gold-deep));
  flex-shrink: 0;
  animation: fv2LinePulse 2s ease-in-out infinite;
}
@media (min-width: 768px) { .fv2-brand-line { width: 3rem; } }  /* md:w-12 */

/* motion.p initial:{opacity:0} → 1 delay:1.4; text-muted-foreground text-xs md:text-sm hover:text-foreground */
.fv2-brand-tagline {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.5s ease-out 1.4s, color 0.3s ease;
}
@media (min-width: 768px) { .fv2-brand-tagline { font-size: 0.875rem; } }
.fv2-brand-tagline:hover { color: rgba(255,255,255,0.95); }
.fv2-bottom.fv2-visible .fv2-brand-tagline { opacity: 1; }

/* motion.div initial:{opacity:0,x:50} → 1 0 delay:1.6 duration:0.6; text-left md:text-right */
.fv2-brand-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* text-left */
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out 1.6s, transform 0.6s ease-out 1.6s;
}
@media (min-width: 768px) {
  .fv2-brand-right { align-items: flex-end; gap: 0.75rem; }  /* md:text-right md:gap-3 */
}
.fv2-bottom.fv2-visible .fv2-brand-right { opacity: 1; transform: translateX(0); }

/* motion.p initial:{opacity:0} → 1 delay:1.8; text-muted-foreground text-xs md:text-sm mb-2 md:mb-3 */
.fv2-copy {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: 0.5rem;  /* mb-2 */
  opacity: 0;
  transition: opacity 0.5s ease-out 1.8s, color 0.3s ease;
}
@media (min-width: 768px) { .fv2-copy { font-size: 0.875rem; margin-bottom: 0.75rem; } } /* md:text-sm md:mb-3 */
.fv2-bottom.fv2-visible .fv2-copy { opacity: 1; }
.fv2-copy:hover { color: rgba(255,255,255,0.95); }

/* motion.div variants={containerVariants} initial="hidden" animate="visible" delay:2 staggerChildren:0.1 */
/* flex gap-2 md:gap-3 */
.fv2-socials {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 768px) { .fv2-socials { gap: 0.75rem; } }  /* md:gap-3 */

/* SocialLink: w-6 h-6 md:w-8 md:h-8 rounded-full bg-muted */
/* socialVariants: opacity:0 scale:0 → 1 1 spring stiffness:200 damping:10 */
.fv2-social-icon {
  width: 1.5rem; height: 1.5rem;  /* w-6 h-6 */
  border-radius: 50%;
  background: rgba(255,255,255,0.05);  /* bg-muted */
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  opacity: 0;
  transform: scale(0);
}
@media (min-width: 768px) { .fv2-social-icon { width: 2rem; height: 2rem; } }  /* md:w-8 md:h-8 */

.fv2-bottom.fv2-visible .fv2-social-icon {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity      0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform    0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background   0.3s ease,
    color        0.3s ease,
    border-color 0.3s ease;
}
/* Quick stagger only — the 2s "base delay" this was ported from assumed a
   fixed-length intro animation sequence (SPA page-load timing). On a
   scroll-triggered reveal that assumption doesn't hold: the footer is much
   closer to the fold on this (shorter) page, so a multi-second delay meant
   users reached the footer well before the icons appeared, looking broken. */
.fv2-bottom.fv2-visible .fv2-socials .fv2-social-icon:nth-child(1) { transition-delay: 0s; }
.fv2-bottom.fv2-visible .fv2-socials .fv2-social-icon:nth-child(2) { transition-delay: 0.08s; }
.fv2-bottom.fv2-visible .fv2-socials .fv2-social-icon:nth-child(3) { transition-delay: 0.16s; }

/* whileHover scale:1.2 rotate:12 spring stiffness:300 damping:15 | whileTap scale:0.9 */
.fv2-bottom.fv2-visible .fv2-social-icon:hover {
  background: rgba(196,144,42,0.15);  /* hover:bg-gradient-to-r from-primary to-secondary */
  border-color: rgba(196,144,42,0.40);
  color: var(--gold);
  transform: scale(1.2) rotate(12deg);
  transition-delay: 0s;
  transition-duration: 0.3s;
}
.fv2-bottom.fv2-visible .fv2-social-icon:active { transform: scale(0.9); transition-delay: 0s; transition-duration: 0.1s; }
.fv2-social-icon:hover svg,
.fv2-social-icon:hover .fv2-icon-text { transform: scale(1.1); transition: transform 0.2s ease; }

/* ── Animation system ── */
/* fv2-anim maps to Framer Motion variants (containerVariants: y:50 | itemVariants: x:-20) */
.fv2-anim {
  opacity: 0;
  transform: translate(var(--fv2-tx, 0px), var(--fv2-ty, 0px));
  transition:
    opacity   var(--fv2-dur, 0.6s) ease-out var(--fv2-delay, 0s),
    transform var(--fv2-dur, 0.6s) ease-out var(--fv2-delay, 0s);
}
.fv2-anim.fv2-visible { opacity: 1; transform: translate(0, 0); }


/* ══════════════════════════════════════════════════════
   MOBILE SWEEP — layout + overflow fixes ≤ 520px
══════════════════════════════════════════════════════ */
@media (max-width: 520px) {
  /* Hero — reduce excess padding so content sits higher */
  .hero-inner { padding-top: 64px; padding-bottom: 64px; }

  /* Testimonial stack — fluid width, generous fixed height so
     absolute cards don't crumble and back-cards can peek below */
  .tc-stack { width: 100%; max-width: 440px; height: 460px; }
  .tc-card  { padding: 28px 24px; }
  .tc-quote { font-size: 13px; line-height: 1.7; }

  /* Trust ticker — prevent overflow on very narrow screens */
  .trust-logos { gap: 32px; }

  /* Portfolio carousel cards — slightly narrower on small screens */
  .pf-card { width: 270px; }

  /* Landing page — reduce center-to-button gap */
  .lv2 { padding-bottom: 80px; }
  .lv2-btn-wrap { bottom: 36px; }

  /* Landing SVG — ensure it doesn't overflow */
  .lv2-svg { width: min(820px, 94vw); }

  /* Nav on-light: ensure logo stays gold and readable */
  .nav.on-light .nav-logo { color: var(--gold); }
}


/* ══════════════════════════════════════════════════════
   DESKTOP SCALE — 1280px+
══════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  :root {
    --max-w: 1380px;
    --px:    80px;
    --sy:    200px;
  }

  html { font-size: 17px; }

  .hero-title {
    font-size: clamp(96px, 8.5vw, 160px);
    margin-bottom: 60px;
  }

  .hero-sub {
    font-size: 19px;
    margin-bottom: 64px;
  }

  .hero-meta { font-size: 13px; }

  .section-title {
    font-size: clamp(60px, 5.5vw, 96px);
    margin-bottom: 24px;
  }

  .section-sub  { font-size: 17px; }
  .section-eyebrow { font-size: 12px; }

  .hero-pill { font-size: 13px; padding: 9px 20px; }

  /* Nav */
  .nav-logo   { font-size: 26px; }
  .nav-btn    { font-size: 13px; padding: 12px 26px; }

  /* Buttons */
  .btn        { font-size: 14px; padding: 14px 32px; }

  /* Cards */
  .feature-card   { padding: 40px 36px; }
  .process-step   { padding: 36px 32px; }
  .creator-card   { padding: 32px; }

  /* Glass pricing */
  .glass-card-main-price  { font-size: 44px; }
  .glass-card-main-price--sm { font-size: 32px; }
  .glass-card-list li     { font-size: 14px; }
  .glass-card-desc        { font-size: 13px; }

  /* Pricing grid — wider cards */
  .pricing-grid { gap: 28px; }

  /* Portfolio cards */
  .pf-card { width: 400px; }

  /* Testimonial stack */
  .tc-stack { width: 560px; height: 420px; }
  .tc-card  { padding: 44px 52px; gap: 0; }
  .tc-name  { font-size: 15px; }
  .tc-quote { font-size: 15px; line-height: 1.75; }

  /* CTA */
  .cta-title { font-size: clamp(60px, 5.5vw, 96px); }
  .cta-sub   { font-size: 18px; }

  /* Footer */
  .fv2-inner { padding: 0 80px; gap: 80px; }
  .fv2-links a { font-size: 14px; }
}


/* ══════════════════════════════════════════════════════
   LANDING V2 — skeleton MONARC entry
══════════════════════════════════════════════════════ */
.lv2 {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px; /* space for enter button below center */
}

/* Center group: eyebrow + MONARC + subtitle — centered in viewport */
.lv2-center-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* ENTER button — anchored to bottom */
.lv2-btn-wrap {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Landing subtitle */
.lv2-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-align: center;
}


/* Highlighter — marker sweep */
.lv2-highlight {
  background-image: linear-gradient(
    to right,
    rgba(196,144,42,0)    0%,
    rgba(196,144,42,0.75) 9%,
    rgba(220,168,60,0.80) 70%,
    rgba(245,210,128,0.82) 100%
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 90%;
  border-radius: 8px 4px 12px 3px / 5px 9px 5px 9px;
  padding: 2px 6px 2px 6px;
  margin-left: -6px;
  color: rgba(255,255,255,0.96);
  animation: lv2HighlightIn 1.2s ease-out 1.2s forwards;
}

@keyframes lv2HighlightIn {
  to { background-size: 100% 90%; }
}

.lv2-filt-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.lv2-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.lv2-svg {
  width: min(820px, 90vw);
  overflow: visible;
  display: block;
}

/* SVG text layers */
.lv2-t {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 158px;
  font-weight: 400;
  fill: transparent;
}

.lv2-t1 {
  stroke: rgba(196,144,42,0.13);
  stroke-width: 1;
}

.lv2-t2 {
  stroke: url(#lv2-gold-g);
  stroke-width: 1;
  opacity: 0.32;
}

.lv2-t3 {
  stroke: url(#lv2-trace-g);
  stroke-width: 3;
}

.lv2-t4 {
  fill: url(#lv2-gold-g);
  stroke: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lv2-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* Glass ENTER button */
.lv2-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.lv2-btn:hover  { transform: scale(1.02); }
.lv2-btn:active { transform: scale(0.97); }

.lv2-btn-lens {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  backdrop-filter: blur(8px) url(#lv2-gf) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  background: rgba(255,255,255,0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.13),
    inset 1.8px 3px 0 -2px rgba(255,255,255,0.9),
    inset -2px -2px 0 -2px rgba(255,255,255,0.8),
    inset -0.3px -1px 4px 0 rgba(0,0,0,0.12),
    inset 0 3px 4px -2px rgba(0,0,0,0.2),
    0 1px 5px rgba(0,0,0,0.1),
    0 6px 16px rgba(0,0,0,0.08);
}

.lv2-btn-txt {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  user-select: none;
}

.lv2-btn-arrow {
  position: relative;
  z-index: 1;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Exit transition */
.lv2.lv2-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}


/* ══════════════════════════════════════════════════════
   HERO — STUDIO LIGHTING
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
}

.hero .hero-inner,
.hero .gooey-svg {
  position: relative;
  z-index: 2;
}

.stl {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Top-left corner light */
.stl-l {
  left: 0; top: 0;
  width: 46%; height: 60%;
  background:
    radial-gradient(ellipse 72% 72% at 0% 0%,
      rgba(255,255,255,0.12)  0%,
      rgba(255,252,242,0.06) 38%,
      rgba(255,248,230,0.02) 62%,
      transparent 82%
    );
}

/* Top-right corner light */
.stl-r {
  right: 0; top: 0;
  width: 46%; height: 60%;
  background:
    radial-gradient(ellipse 72% 72% at 100% 0%,
      rgba(255,255,255,0.12)  0%,
      rgba(255,252,242,0.06) 38%,
      rgba(255,248,230,0.02) 62%,
      transparent 82%
    );
}

/* Top center overhead — MUST be left:0 right:0 to avoid hard vertical edges */
.stl-t {
  left: 0; right: 0;
  top: 0;
  height: 40%;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%,
      rgba(255,255,255,0.09)  0%,
      rgba(255,251,238,0.04) 45%,
      transparent 72%
    );
}


/* ══════════════════════════════════════════════════════
   CARD ANIMATIONS — gold outline ring + playful 3D tilt
══════════════════════════════════════════════════════ */

@keyframes card-ring-pulse {
  0%, 100% {
    box-shadow:
      0 4px 32px rgba(0,0,0,0.50),
      inset 0 1px 0 rgba(255,255,255,0.04),
      0 0 0 1.5px rgba(196,144,42,0.30);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(0,0,0,0.60),
      inset 0 1px 0 rgba(255,255,255,0.04),
      0 0 0 2px rgba(196,144,42,0.75),
      0 0 18px rgba(196,144,42,0.12);
  }
}

/* Playful 3D tilt on hover (excludes tc-card + case-study-hold) */
.problem-card:hover,
.feature-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-1.5deg);
  box-shadow: 0 16px 56px rgba(10,9,8,0.13), 0 3px 10px rgba(10,9,8,0.05),
              0 0 0 1.5px rgba(196,144,42,0.45);
}
.creator-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(1deg);
  box-shadow: 0 16px 56px rgba(10,9,8,0.13), 0 3px 10px rgba(10,9,8,0.05),
              0 0 0 1.5px rgba(196,144,42,0.45);
}
.plan-v2:not(.plan-v2--featured):hover {
  transform: translateY(-5px) rotateX(1.5deg);
  box-shadow: 0 12px 40px rgba(10,9,8,0.10), 0 0 0 1.5px rgba(196,144,42,0.45);
}
.stat-block:hover {
  transform: translateY(-6px) rotateX(1.5deg);
}
.process-step:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.46), 0 0 0 1px rgba(196,144,42,0.40);
}

/* Always-on pulsing gold ring for testimonial + case study cards */
.tc-card,
.case-study-hold {
  animation: card-ring-pulse 3.5s ease-in-out infinite;
}

/* Disable heavy hover transforms on touch devices (no hover state anyway) */
@media (hover: none) {
  .problem-card:hover,
  .feature-card:hover,
  .creator-card:hover,
  .plan-v2:not(.plan-v2--featured):hover,
  .stat-block:hover { transform: none; }
  /* card-ring-pulse intentionally kept — user wants the gold outline on mobile */
}
