/* ── Design Tokens (mirrors dashboard) ───────────────────────────────────── */
:root {
  --bg:            #F8F7F4;
  --card-bg:       #FFFFFF;
  --border:        #E2DFD8;

  --text-primary:   #1A1918;
  --text-secondary: #5F5E5B;
  --text-tertiary:  #8A8884;

  --terracotta:       #C85A32;
  --terracotta-hover: #B34D28;
  --terracotta-light: #F5E8E2;
  --sage:             #5F7A61;
  --sage-light:       #E8F0E8;
  --blue:             #4A6C8C;
  --blue-light:       #E3EBF3;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-card:  0 4px 20px rgba(26,25,24,.05);
  --shadow-hover: 0 8px 30px rgba(26,25,24,.09);

  --t-fast: 0.15s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Typography ───────────────────────────────────────────────────────────── */
.serif {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
}
.text-muted { color: var(--text-secondary); }

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  background: rgba(248,247,244,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover { background: var(--terracotta-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); background: var(--card-bg); }

.btn-lg {
  padding: .8rem 2rem;
  font-size: 1rem;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--text-tertiary);
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── Section ──────────────────────────────────────────────────────────────── */
section {
  padding: 5rem 0;
}

section + section {
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .75rem;
}

.section-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ── Steps ────────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terracotta-light);
  color: var(--terracotta);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.step p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Audience cards ───────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}

.audience-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.audience-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.audience-card p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── CTA banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  margin: 4rem 0;
}

.cta-banner h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: .75rem;
}

.cta-banner p {
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  font-size: .85rem;
  color: var(--text-tertiary);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Get Started page ─────────────────────────────────────────────────────── */
.gs-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.gs-hero h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}

.gs-hero p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.platform-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.platform-tab {
  padding: .55rem 1.25rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-secondary);
  transition: all var(--t-fast);
}

.platform-tab:hover { color: var(--text-primary); }
.platform-tab.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
}

.platform-content { display: none; }
.platform-content.active { display: block; }

.gs-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto 4rem;
  box-shadow: var(--shadow-card);
}

.gs-card h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.gs-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.gs-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.gs-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--terracotta-light);
  color: var(--terracotta);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.gs-step-body h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

.gs-step-body p {
  font-size: .875rem;
  color: var(--text-secondary);
}

.coming-soon {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
}

.coming-soon-badge {
  display: inline-block;
  background: var(--border);
  color: var(--text-secondary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .steps        { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  section { padding: 3.5rem 0; }
}
