/* Base tokens */
:root {
  --bg: #FAF8F4;
  --surface: #F0EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E8632A;
  --accent-dark: #C4501F;
  --accent-light: #FDF0E8;
  --border: #DDD8D0;
  --font-display: 'Bitter', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navigation */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.nav-pipeline-link {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-pipeline-link:hover {
  background: var(--accent);
  color: #fff;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4rem;
  color: var(--fg-muted);
  font-size: 0.8rem;
}
.scroll-arrow {
  width: 20px;
  height: 1px;
  background: var(--fg-muted);
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  border: 3px solid transparent;
  border-left: 5px solid var(--fg-muted);
}

/* Jackalope Illustration */
.jackalope-mark {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 1.5rem;
}
.jack-horns {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 120px;
  background: var(--accent);
  clip-path: polygon(30% 100%, 0% 0%, 20% 30%, 50% 0%, 80% 30%, 100% 0%, 70% 100%);
}
.jack-body {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 160px;
  background: var(--fg);
  border-radius: 60px 60px 50px 50px;
}
.jack-ears {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
}
.jack-ears::before, .jack-ears::after {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 30px;
  background: var(--fg);
  border-radius: 50% 50% 40% 40%;
}
.jack-ears::before { left: 5px; transform: rotate(-15deg); }
.jack-ears::after { right: 5px; transform: rotate(15deg); }

.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.stat-item {
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Manifesto */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 2rem;
}
.manifesto-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}
.manifesto-solution {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Features */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.features-header {
  margin-bottom: 3.5rem;
}
.section-kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 540px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: var(--accent);
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Outcomes */
.outcomes {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
}
.outcomes-header {
  margin-bottom: 3rem;
}
.outcomes .section-kicker {
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.outcome-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.outcome-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.outcome-before {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.outcome-after {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bg);
}

/* Closing */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}
.closing-ornament {
  margin-bottom: 2.5rem;
}
.closing-jack {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.jack-horns-small {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 55px;
  background: var(--accent);
  clip-path: polygon(30% 100%, 0% 0%, 20% 30%, 50% 0%, 80% 30%, 100% 0%, 70% 100%);
}
.jack-body-small {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 45px;
  background: var(--fg);
  border-radius: 30px 30px 20px 20px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.closing-mark {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illustration { display: flex; align-items: center; gap: 1.5rem; }
  .jackalope-mark { width: 100px; height: 100px; margin-bottom: 0; }
  .hero-stats { justify-content: flex-start; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .features { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 3rem 1.5rem; }
  .outcomes { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
}