:root {
  --bg: #0f0f12;
  --surface: #16161a;
  --surface-raised: #1e1e24;
  --border: #2a2a32;
  --fg: #f0eeea;
  --fg-muted: #9a9aaa;
  --accent: #f0a500;
  --accent-dim: rgba(240, 165, 0, 0.12);
  --red: #ff5f57;
  --yellow: #febc2e;
  --green: #28c840;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navigation */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}
.proof-item {
  font-size: 14px;
  color: var(--fg-muted);
}
.proof-item strong {
  color: var(--fg);
  font-weight: 600;
}
.proof-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Cap table widget */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  padding-left: 60px;
}
.cap-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 380px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,165,0,0.05);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
}
.widget-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: var(--red); }
.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }
.widget-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  flex: 1;
}
.widget-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(40, 200, 64, 0.15);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 20px;
}
.widget-table {
  padding: 8px 0;
}
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
  padding: 8px 18px;
  font-size: 12px;
  align-items: center;
}
.table-head {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.table-row {
  border-bottom: 1px solid rgba(42,42,50,0.5);
  transition: background 0.15s;
}
.table-row:hover { background: var(--surface-raised); }
.row-name {
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-val {
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.row-pct {
  color: var(--fg);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.row-vest {
  color: var(--fg-muted);
  font-size: 11px;
}
.tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}
.tag.founder { background: rgba(240,165,0,0.15); color: var(--accent); }
.tag.pool { background: rgba(154,154,170,0.15); color: var(--fg-muted); }
.tag.safe { background: rgba(40,200,64,0.12); color: #28c840; }
.row-shaded { background: rgba(30,30,36,0.4); }
.widget-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--surface-raised);
}
.footer-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 2px;
}
.footer-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

/* Underwrite */
.underwrite {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.underwrite-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.underwrite-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}
.underwrite-stat {
  flex: 1;
}
.stat-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Features */
.features {
  padding: 100px 40px;
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--surface-raised); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.manifesto-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 400;
}
.manifesto-quote p:last-child {
  font-size: 18px;
  color: var(--fg-muted);
  font-family: var(--sans);
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 0;
}

/* Pricing */
.pricing {
  padding: 100px 40px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing .section-title {
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.pricing-card-featured {
  background: var(--surface-raised);
  border-color: rgba(240, 165, 0, 0.3);
}
.card-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-badge {
  font-size: 10px;
  background: var(--accent);
  color: #0f0f12;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}
.card-price {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.per-mo {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23f0a500' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep { color: var(--border); }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-card:nth-child(3) { border-right: none; border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; padding: 60px 24px; }
  .hero-visual { display: none; }
  .underwrite-inner { flex-direction: column; gap: 0; }
  .underwrite-divider { display: none; }
  .underwrite-stat { border-bottom: 1px solid var(--border); padding-bottom: 32px; margin-bottom: 32px; }
  .underwrite-stat:last-child { border-bottom: none; margin-bottom: 0; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav { padding: 16px 24px; }
  .manifesto { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }
  .underwrite { padding: 48px 24px; }
}