/* BASE */
:root {
  --bg: #080c14;
  --surface: #0e1420;
  --surface2: #141c2b;
  --fg: #f0ece4;
  --fg-muted: #8a8f9e;
  --accent: #ff3b3b;
  --accent-dim: rgba(255, 59, 59, 0.12);
  --border: rgba(240, 236, 228, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { 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(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* LAYOUT */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.label-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 59, 59, 0.3);
  padding: 0.3rem 0.7rem;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.label-count {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-left {}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-right {}
.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.hero-promise {}
.promise-line {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.promise-dash {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.promise-line span:last-child {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.manifesto-rule {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 2rem;
  border: none;
}
.manifesto-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.attr-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg);
}
.attr-rule {
  flex: 1;
  max-width: 3rem;
  height: 1px;
  background: var(--border);
}
.attr-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-style: italic;
}

/* FEATURES */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.features-header { margin-bottom: 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.feature-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.feature-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.pricing-inner {}
.pricing-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.pricing-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.pricing-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 800px;
}
.pricing-tier {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.pricing-tier--founders {
  border-color: rgba(255, 59, 59, 0.3);
  background: var(--accent-dim);
}
.tier-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}
.price-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.tier-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.status-dot--muted { background: var(--fg-muted); animation: none; }
.tier-perks {}
.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.perk:last-child { border-bottom: none; }
.perk-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.perk--muted { color: var(--fg-muted); }
.perk--muted .perk-check { color: var(--fg-muted); }
.cohort-progress {
  margin-top: 2.5rem;
  max-width: 800px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.progress-note { color: var(--accent); }
.progress-bar {
  height: 2px;
  background: var(--surface2);
  border-radius: 1px;
  overflow: hidden;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
}

/* SCORECARD */
.scorecard {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.scorecard-header { max-width: 680px; margin-bottom: 3rem; }
.scorecard-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.scorecard-sub { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }
.scorecard-table { max-width: 900px; }
.sc-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.8fr 0.8fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.85rem;
}
.sc-row--head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.sc-theory { font-style: italic; line-height: 1.5; }
.sc-signal { color: var(--fg-muted); font-size: 0.8rem; }
.sc-date { color: var(--fg-muted); font-size: 0.8rem; }
.sc-verdict { font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; }
.sc-verdict--pending { color: #f59e0b; }
.sc-verdict--hit { color: #22c55e; }
.sc-verdict--miss { color: var(--accent); }
.scorecard-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 680px; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner {}
.footer-logo {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 1rem;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.7rem;
  color: var(--fg-muted);
}
.footer-sep { color: var(--border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-label { grid-column: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  .sc-row { grid-template-columns: 1fr 1fr; }
  .sc-row--head { display: none; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .footer-sep { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .pricing { padding: 4rem 1.5rem; }
  .scorecard { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .nav-inner { padding: 1rem 1.5rem; }
  .price-amount { font-size: 2.5rem; }
}