@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ──────────────────────────────────────────────
   DESIGN TOKENS
   ────────────────────────────────────────────── */
:root {
  --bg:          #0e100f;
  --bg-surface:  #131612;
  --bg-card:     #181c18;
  --bg-raised:   #1f241e;
  --border:      #262c26;
  --border-sub:  #1c211c;
  --amber:       #c9922a;
  --amber-dim:   rgba(201,146,42,0.10);
  --amber-glow:  rgba(201,146,42,0.28);
  --amber-soft:  rgba(201,146,42,0.06);
  --text-primary:#ede9e2;
  --text-sec:    #9b9890;
  --text-muted:  #555550;
  --font-display:'Syne', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --container:   1080px;
  --section-pad: clamp(72px, 9vw, 120px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }
::selection { background: var(--amber); color: var(--bg); }

a { color: inherit; text-decoration: none; }

/* ──────────────────────────────────────────────
   LAYOUT UTILS
   ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}

/* ──────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-sub);
  background: rgba(14,16,15,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--amber); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--amber);
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.nav-cta:hover { background: #d9a030; box-shadow: 0 4px 16px rgba(201,146,42,0.3); }

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 0 clamp(20px, 5vw, 56px);
  padding-top: 60px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,146,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,146,42,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,146,42,0.2), transparent);
}

.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 120px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: #d9a030;
  box-shadow: 0 6px 24px rgba(201,146,42,0.28);
  transform: translateY(-1px);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.hero-micro {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hero visual — split layout */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audience-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.aud-tab {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sec);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.aud-tab:first-child { border-right: 1px solid var(--border); }

.aud-tab.active {
  background: var(--amber-soft);
  color: var(--amber);
}

.aud-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: none;
}

.aud-panel.active { display: block; }

.aud-panel-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.aud-panel-text {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.aud-panel-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-sub);
}

/* ──────────────────────────────────────────────
   DIVIDER
   ────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,146,42,0.15), transparent);
  margin: 0 clamp(20px, 5vw, 56px);
}

/* ──────────────────────────────────────────────
   AUDIENCE SECTIONS
   ────────────────────────────────────────────── */
.audience-section {
  padding: var(--section-pad) clamp(20px, 5vw, 56px);
}

.audience-section.alt { background: var(--bg-surface); }

.audience-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.audience-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.audience-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 14px;
}

.audience-title em {
  font-style: normal;
  color: var(--amber);
}

.audience-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.audience-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audience-copy p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-sec);
  line-height: 1.75;
}

.audience-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.audience-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-sub);
}

.audience-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--amber-soft);
  border: 1px solid rgba(201,146,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber);
}

.audience-feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.audience-feature-text span {
  font-size: 0.82rem;
  color: var(--text-sec);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────
   SOCIAL PROOF
   ────────────────────────────────────────────── */
.social-proof {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 56px);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  text-align: center;
}

.social-proof-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.social-proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.6;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 16px;
}

.social-proof-attribution {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────
   CTA SECTION
   ────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) clamp(20px, 5vw, 56px);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,146,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.cta-headline em {
  font-style: normal;
  color: var(--amber);
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.65;
  max-width: 440px;
}

.cta-fine-print {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.cta-steps {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.cta-step {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.cta-step:last-child { border-right: none; }

.cta-step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}

.cta-step-label {
  font-size: 0.75rem;
  color: var(--text-sec);
  font-weight: 500;
  line-height: 1.4;
}

/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
.site-footer {
  padding: 28px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--border-sub);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-brand span { color: var(--amber); }

.footer-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .audience-body { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cta-steps { flex-direction: column; }
  .cta-step { border-right: none; border-bottom: 1px solid var(--border); }
  .cta-step:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ──────────────────────────────────────────────
   AMBIENT
   ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text > * { animation: fadeUp 0.6s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.12s; }
.hero-text > *:nth-child(3) { animation-delay: 0.19s; }
.hero-text > *:nth-child(4) { animation-delay: 0.26s; }
