:root {
  --bg: #0d0d0f;
  --fg: #f0ece4;
  --fg-muted: #8a857e;
  --accent: #f59e0b;
  --accent-dim: #7a5006;
  --surface: #161618;
  --surface-2: #1e1e21;
  --border: #2a2a2d;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', 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;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

/* Signal wave */
.hero-signal {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
  margin-bottom: 0.5rem;
}
.signal-bar {
  width: 6px;
  background: var(--border);
  border-radius: 3px;
}
.signal-bar.b1  { height: 8px; }
.signal-bar.b2  { height: 14px; }
.signal-bar.b3  { height: 10px; }
.signal-bar.b4  { height: 20px; }
.signal-bar.b5  { height: 16px; }
.signal-bar.b6  { height: 24px; }
.signal-bar.b7  { height: 18px; }
.signal-bar.b8,
.signal-bar.b9 { height: 28px; background: var(--accent); }
.signal-bar.b10 { height: 12px; }
.hero-signal-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* Activity feed widget */
.activity-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.82rem;
}
.feed-header {
  background: var(--surface-2);
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
}
.feed-item:last-child { border-bottom: none; }
.feed-item.done { color: var(--fg); }
.feed-item.active { color: var(--fg); }
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg-muted);
  margin-top: 5px;
  flex-shrink: 0;
}
.feed-dot.pulse {
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245,158,11,0.4);
  animation: pulse-ring 1.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}
.feed-title { font-weight: 500; line-height: 1.3; }
.feed-meta  { font-size: 0.72rem; color: var(--fg-muted); margin-top: 2px; }


/* PROOF STRIP */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
}
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.proof-label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.features-header {
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 2.5rem;
}
.feature-icon {
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.philosophy-body p {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.philosophy-highlight {
  color: var(--fg) !important;
  font-style: italic;
  font-size: 1.05rem !important;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

/* OUTCOMES */
.outcomes {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.outcomes-header {
  margin-bottom: 4rem;
}
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.outcome-item:last-child { border-bottom: none; }
.outcome-marker {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 2px;
}
.outcome-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.outcome-content p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 30ch;
  line-height: 1.55;
}
.footer-right { text-align: right; }
.footer-copy  { font-size: 0.78rem; color: var(--fg-muted); }
.footer-meta  { font-size: 0.72rem; color: var(--fg-muted); margin-top: 0.25rem; }

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
  }
  .hero-signal { height: 24px; }
  .signal-bar  { width: 4px; gap: 3px; }

  .proof-inner { flex-wrap: wrap; gap: 1.5rem; }
  .proof-stat  { flex: 0 0 45%; }
  .proof-divider { display: none; }

  .features { padding: 5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }


  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1.5rem;
  }


  .outcomes { padding: 5rem 1.5rem; }
  .outcome-item { grid-template-columns: 44px 1fr; gap: 1.25rem; }


  .closing-inner { padding: 5rem 1.5rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-right { text-align: left; }
}

@media (max-width: 480px) {
  .proof-stat { flex: 0 0 100%; text-align: left; }
  .proof-inner { flex-direction: column; }
  .proof-divider { display: none; }
}
