:root {
  --bg: #0A0A09;
  --bg-2: #111110;
  --bg-3: #1A1A18;
  --fg: #F2EDE8;
  --fg-muted: #8A8780;
  --accent: #C8952A;
  --accent-dim: #9A7220;
  --accent-glow: rgba(200, 149, 42, 0.15);
  --border: rgba(242, 237, 232, 0.08);
  --border-accent: rgba(200, 149, 42, 0.25);
}

*, *::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: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 9, 0.8);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-stat-row {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.3;
}
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.vc-feed { grid-column: 1 / -1; }
.vc-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.vc-line {
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}
.vc-line.short { width: 45%; }
.vc-line.med { width: 72%; }
.vc-dots {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.vc-dot {
  flex: 1;
  height: 40px;
  background: var(--bg-3);
  border-radius: 8px;
}
.vc-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.vc-block {
  height: 40px;
  background: var(--bg-3);
  border-radius: 8px;
}
.hero-atmosphere {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 149, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  position: relative;
}
.manifesto blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -20px;
  left: -30px;
  font-style: normal;
  opacity: 0.4;
}

/* FEATURES */
.features {
  padding: 100px 40px;
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--bg-2);
}
.fc-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--fg);
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  background: var(--bg-2);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.outcomes-body {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.outcome-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.os-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.os-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
  min-width: 60px;
}
.os-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* COMPARISON TABLE */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ct-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg-3);
  padding: 14px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  align-items: center;
}
.ct-x {
  color: #555;
  font-size: 1.1rem;
}
.ct-check {
  color: var(--accent);
  font-size: 1.1rem;
}
.ct-partial {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

/* CLOSING */
.closing {
  padding: 100px 40px 120px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stat-row { gap: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  nav { padding: 16px 24px; }
  .hero, .manifesto, .features, .outcomes, .closing { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-direction: column; gap: 16px; }
  .nav-tagline { display: none; }
  .ct-header span:not(:first-child),
  .ct-row span:not(:first-child) { text-align: center; }
}