/* Fonts */
:root {
  --ink: #0D1B2A;
  --ink-mid: #1B3A4B;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #F8F6F1;
  --cream-mid: #EDE9E0;
  --text-light: #E8E4DC;
  --text-muted: #8A9BAD;
  --green: #3ECF8E;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 5rem 3rem 4rem;
  background: var(--ink);
  background-image: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Dashboard mockup */
.dashboard-frame {
  background: #0A1628;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.dash-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 6px;
  font-family: var(--font-body);
}

.dash-body {
  padding: 1.25rem;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
}

.dash-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.dash-lab {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.dash-log {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}

.dash-entry {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.75rem;
}

.dash-entry--active {
  background: rgba(201,168,76,0.08);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.25rem;
}

.dash-time {
  color: var(--text-muted);
  font-size: 0.68rem;
  flex-shrink: 0;
  width: 40px;
}

.dash-entry--active .dash-time { color: var(--gold); }

.dash-msg { color: var(--text-light); line-height: 1.4; }

/* Manifesto */
.manifesto {
  padding: 6rem 3rem;
  background: var(--cream);
  color: var(--ink);
}

.manifesto-inner { max-width: 760px; margin: 0 auto; }

.manifesto-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.manifesto-body {
  font-size: 1.05rem;
  color: #4A5A6A;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Stack comparison */
.stack {
  padding: 6rem 3rem;
  background: var(--ink-mid);
}

.stack-inner { max-width: 1000px; margin: 0 auto; }

.stack-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-align: center;
}

.stack-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.stack-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin: 0 2.5rem;
}

.stack-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.stack-items { display: flex; flex-direction: column; gap: 0; }

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}

.stack-item-name { color: var(--text-light); }

.stack-item-cost { color: var(--text-muted); font-weight: 500; }

.stack-item-cost--green { color: var(--green); font-weight: 600; }

.stack-item--total {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
}

.stack-item--total .stack-item-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
}

.stack-item--total .stack-item-cost {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.stack-item--advisoros {
  background: rgba(62,207,142,0.1);
  border-radius: 8px;
  padding: 0.75rem 0.75rem;
  border-bottom: none;
}

.stack-item--advisoros .stack-item-name { color: var(--green); font-weight: 600; }

.stack-item--advisoros .stack-item-cost { color: var(--green); font-size: 1rem; font-weight: 700; }

.stack-savings {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Features */
.features {
  padding: 6rem 3rem;
  background: var(--ink);
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.features-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem 2.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.feature-icon {
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 6rem 3rem;
  background: var(--cream);
}

.outcomes-inner { max-width: 1000px; margin: 0 auto; }

.outcomes-headline-block { margin-bottom: 3.5rem; }

.outcomes-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.outcomes-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.outcome-stat { border-left: 2px solid var(--gold); padding-left: 1.5rem; }

.outcome-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outcome-label {
  font-size: 0.82rem;
  color: #5A6A7A;
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 7rem 3rem;
  background: var(--ink);
  background-image: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Footer */
.footer {
  padding: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--ink);
}

.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.footer-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .stack-grid { grid-template-columns: 1fr; }
  .stack-divider { display: none; }
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .manifesto, .stack, .features, .outcomes, .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .dash-stat-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .dash-num { font-size: 1.4rem; }
  .dash-lab { font-size: 0.55rem; }
}