:root {
  --bg: #0f172a;
  --bg-2: #0d1117;
  --surface: #161b2e;
  --fg: #f1f5f9;
  --fg-muted: #94a3b8;
  --accent: #d97706;
  --accent-light: #fbbf24;
  --border: #1e2d4a;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Manuscript Card */
.manuscript-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.manuscript-header {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.ms-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.ms-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.ms-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  width: 100%;
}
.ms-line.title { height: 14px; background: rgba(217,119,6,0.3); }
.ms-line.short { width: 55%; }
.ms-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ms-badge {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ms-badge.accepted {
  border-color: var(--accent);
  color: var(--accent);
}
.ms-connector { margin-top: 16px; }
.ms-connector svg { width: 100%; }

/* Journal Logos */
.journal-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.journal-tag {
  font-size: 0.65rem;
  padding: 5px 12px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* STATS */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 32px;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-overline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
}
.manifesto-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* PIPELINE */
.pipeline {
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.pipeline-inner { max-width: 1100px; margin: 0 auto; }
.pipeline-overline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
.pipeline-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 56px;
  text-align: center;
}
.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.pipeline-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pipeline-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.pipeline-icon svg { width: 40px; height: 40px; }
.pipeline-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.pipeline-card p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pipeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline-arrow svg { width: 40px; height: 40px; }

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-badge {
  display: inline-flex;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 24px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px 48px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .stats { padding: 32px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .manifesto, .closing { padding: 64px 24px; }
  .pipeline { padding: 64px 24px; }
  .pipeline-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pipeline-arrow { display: none; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-note { margin-left: 0; }
}

@media (max-width: 480px) {
  .stat-value { font-size: 1.8rem; }
  .stat-item { padding: 8px 16px; }
}