/* ============================================================
   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:  'Inter', -apple-system, BlinkMacSystemFont, 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);
}


/* ══════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; font-size: 16px; }

@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: hidden;
  -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 {
  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.52);
  backdrop-filter: blur(48px) saturate(200%) brightness(1.10);
  -webkit-backdrop-filter: blur(48px) saturate(200%) brightness(1.10);
  border-radius: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.40),
    0 2px 12px rgba(0, 0, 0, 0.20);
  transition: background var(--t2), box-shadow var(--t2);
}
.nav.scrolled {
  background: rgba(6, 6, 6, 0.76);
  backdrop-filter: blur(48px) saturate(220%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(1.06);
  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 ── */
.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: var(--d1);
  padding: 7px 14px;
  border-radius: 100px;
  /* Liquid glass — subtle layer sitting atop the island */
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(24px) saturate(180%) brightness(1.14);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.14);
  border: 1px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 2px 12px rgba(0, 0, 0, 0.24),
    0 1px 3px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.nav-menu-btn:hover {
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 4px 18px rgba(0, 0, 0, 0.28),
    0 1px 4px rgba(0, 0, 0, 0.16);
}
.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(8, 8, 8, 0.90);
  backdrop-filter: blur(48px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(48px) saturate(200%) brightness(1.08);
  border-radius: 100px;
  padding: 6px;
  display: flex;
  flex-direction: row;
  gap: 2px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 12px 40px rgba(0, 0, 0, 0.50);
  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 20px;
  border-radius: 6px;
  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); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(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;
  overflow: hidden;
}
.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 {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rule) 40%, var(--rule) 60%, transparent 100%);
}
.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); }
.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 26px;
  border-radius: 7px;
  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: 7px;
  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); }
.section-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--l2);
  font-weight: 400;
}

/* Dark section overrides */
.process .section-title,
.portfolio .section-title {
  color: var(--d1);
}
.process .section-sub,
.portfolio .section-sub {
  color: var(--d2);
}
.process .section-eyebrow,
.portfolio .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.4);
}
.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: 1px solid var(--rule);
}
.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;
}


/* ══════════════════════════════════════════════════════
   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); }
.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 (pointer: coarse), (max-width: 768px) {
  /* Kill continuous background animations */
  .hero::before { animation: none; }

  /* Remove perspective stacking contexts — not needed without tilt */
  .problem-grid,
  .features-grid,
  .creators-grid,
  .pricing-grid,
  .process-grid { perspective: none; }

  /* Simpler, shorter scroll reveal on mobile */
  [data-r] {
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }
  [data-r][data-d="1"] { transition-delay: 50ms; }
  [data-r][data-d="2"] { transition-delay: 100ms; }
  [data-r][data-d="3"] { transition-delay: 150ms; }
  [data-r][data-d="4"] { transition-delay: 200ms; }

  /* Disable heavy hover transforms — touch taps are instant */
  .problem-card:hover,
  .feature-card:hover,
  .creator-card:hover,
  .plan-card:not(.plan-card--featured):hover,
  .process-step:hover,
  .stat-block:hover { transform: none; }
}


/* ══════════════════════════════════════════════════════
   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 bubble */
.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 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
  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 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.14);
}
.fiq-trigger-icon svg {
  width: 22px;
  height: 22px;
}
.fiq-trigger-label { display: none; }
.fiq-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.36), 0 2px 6px rgba(0,0,0,0.12);
  background: var(--ink-card);
}
.fiq-trigger-icon {
  display: flex;
  align-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.fiq--open .fiq-trigger {
  background: var(--ink-card);
}

/* Card */
.fiq-card {
  /* Float above trigger without affecting .fiq container height */
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 420px;
  background: #fafaf8;
  border-radius: 20px;
  border: 1px solid var(--rule-l);
  box-shadow: 0 8px 48px rgba(0,0,0,0.14), 0 2px 12px rgba(0,0,0,0.06);
  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: var(--rule-l) 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(--l1);
  line-height: 1.1;
}
.fiq-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--l3);
  background: transparent;
  border: 1px solid var(--rule-l);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--t1), border-color var(--t1), background var(--t1);
  margin-top: 2px;
}
.fiq-close:hover {
  color: var(--l1);
  border-color: var(--l3);
  background: var(--cream-card);
}

/* 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: var(--l3);
}
.fiq-field input,
.fiq-field select,
.fiq-field textarea {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--l1);
  background: #fff;
  border: 1px solid var(--rule-l);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--t1), box-shadow 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='%239A9488' 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 textarea { resize: none; line-height: 1.65; }

.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.10);
}
.fiq-field input::placeholder,
.fiq-field textarea::placeholder { color: var(--l3); }

.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(--l1);
  color: var(--d1);
  border-radius: 10px;
  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);
}
.fiq-submit:hover:not(:disabled) {
  background: var(--ink-card);
  transform: translateY(-1px);
}
.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(--l1);
  letter-spacing: -0.02em;
}
.fiq-success-sub {
  font-size: 13px;
  color: var(--l3);
}

/* 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; }
}


/* ══════════════════════════════════════════════════════
   CASE STUDY
══════════════════════════════════════════════════════ */
.case-study { background: var(--ink-2); }

.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;
}


/* ── 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.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 adapts to light sections — dark glass + dark text */
.nav.on-light .nav-menu-btn {
  background: linear-gradient(
    148deg,
    rgba(10, 9, 8, 0.14) 0%,
    rgba(10, 9, 8, 0.07) 100%
  );
  border-color: transparent;
  color: var(--l1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.10),
    0 1px 3px rgba(0, 0, 0, 0.06);
}
.nav.on-light .nav-menu-btn:hover {
  background: linear-gradient(
    148deg,
    rgba(10, 9, 8, 0.20) 0%,
    rgba(10, 9, 8, 0.12) 100%
  );
  border-color: transparent;
  color: var(--l1);
}
.nav.on-light .nav-menu-btn[aria-expanded="true"],
.nav.on-light .nav-menu-btn:active {
  color: var(--gold-deep);
}
.nav.on-light {
  background: rgba(237, 235, 230, 0.60);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 40px rgba(10, 9, 8, 0.10),
    0 2px 8px rgba(10, 9, 8, 0.06);
}
.nav.on-light.scrolled {
  background: rgba(237, 235, 230, 0.88);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.02);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.90),
    0 8px 40px rgba(10, 9, 8, 0.14),
    0 2px 8px rgba(10, 9, 8, 0.08);
}


/* ══════════════════════════════════════════════════════
   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 {
  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.04);
}
.fiq-trigger:hover {
  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.06);
}


/* ══════════════════════════════════════════════════════
   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;
  }
}
