:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --fg: #F5F0E8;
  --fg-muted: #9A9490;
  --accent: #FF4500;
  --accent-dim: rgba(255, 69, 0, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.nav-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ---- MANIFESTO ---- */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,69,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 860px;
  position: relative;
}

.manifesto-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
  font-weight: 300;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 120px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 40px;
}

/* ---- SECTIONS ---- */
section { padding: 96px 48px; }

.section-header { margin-bottom: 64px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- WORKFLOW ---- */
.workflow {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

.step-connector {
  padding: 0 16px;
  flex-shrink: 0;
}

/* ---- FEATURES ---- */
.features { }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--bg2);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.feature-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ---- PRICING ---- */
.pricing { }

.pricing-card {
  max-width: 560px;
  border: 1px solid var(--border);
  padding: 48px;
}

.pricing-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--fg);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.per-month {
  font-size: 28px;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ---- CLOSER ---- */
.closer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.closer-inner { max-width: 760px; }

.closer-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}

.closer-body {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.closer-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.type-tag {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 64px 48px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 32px;
}

.footer-brand { }

.wordmark-sm {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-top: 8px;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-bottom {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .site-nav, section, .site-footer { padding-left: 24px; padding-right: 24px; }
  .manifesto { padding-top: 100px; }
  .manifesto-headline { font-size: 56px; }
  .manifesto-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; gap: 1px; }
  .step-connector { display: none; }
  .pricing-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 20px; }
  section { padding: 72px 20px; }
  .manifesto { padding: 90px 20px 64px; }
  .manifesto-headline { font-size: 44px; }
  .manifesto-stats { gap: 20px; }
  .stat-number { font-size: 38px; }
  .pricing-price { font-size: 60px; }
  .features-grid { grid-template-columns: 1fr; }
}