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

:root {
  --bg: #0a0a0f;
  --bg-surface: #111118;
  --bg-card: #16161e;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --border: rgba(255,255,255,0.07);
  --positive: #22c55e;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,166,35,0.04) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* PORTFOLIO WIDGET */
.portfolio-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.widget-title { font-size: 0.8rem; font-weight: 500; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.widget-live {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--positive);
  background: rgba(34,197,94,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.widget-metric { margin-bottom: 1.5rem; }
.metric-label { display: block; font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 0.25rem; }
.metric-value { display: block; font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; color: var(--fg); letter-spacing: -0.02em; }
.metric-change { font-size: 0.85rem; font-weight: 500; color: var(--positive); }
.widget-allocation { margin-bottom: 1.25rem; }
.allocation-bar { height: 8px; border-radius: 4px; display: flex; overflow: hidden; gap: 2px; margin-bottom: 0.75rem; background: var(--bg-surface); }
.allocation-seg.stocks { background: var(--accent); }
.allocation-seg.bonds { background: #4a4a6a; }
.allocation-seg.cash { background: #2a2a3a; }
.allocation-legend { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--fg-muted); }
.legend-item { display: flex; align-items: center; gap: 0.35rem; }
.legend-dot { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.legend-dot.stocks { background: var(--accent); }
.legend-dot.bonds { background: #4a4a6a; }
.legend-dot.cash { background: #2a2a3a; }
.widget-actions { margin-bottom: 1rem; }
.action-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--fg-muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.action-item:last-child { border-bottom: none; }
.action-icon { width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.action-item.completed .action-icon { background: rgba(34,197,94,0.2); }
.action-item.completed .action-icon::after { content: ''; width: 6px; height: 6px; background: var(--positive); border-radius: 50%; }
.action-item .action-icon.pending { background: rgba(245,166,35,0.2); }
.action-item .action-icon.pending::after { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.widget-agent { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--accent); font-weight: 500; }
.agent-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* HERO TICKER */
.hero-ticker { margin-top: 4rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 0.75rem 0; }
.ticker-scroll { display: flex; gap: 2.5rem; animation: scroll 30s linear infinite; white-space: nowrap; }
.ticker-scroll span { font-size: 0.8rem; color: var(--fg-muted); }
.ticker-scroll span strong { color: var(--fg); font-weight: 500; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PHILOSOPHY */
.philosophy { padding: 7rem 2rem; background: var(--bg-surface); }
.philosophy-inner { max-width: 1100px; margin: 0 auto; }
.philosophy-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 2rem; }
.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 640px;
}
.philosophy-body { max-width: 600px; }
.philosophy-body p { color: var(--fg-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.philosophy-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.stat-value { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--fg); letter-spacing: -0.02em; }
.stat-label { display: block; font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.35rem; }

/* OUTCOMES */
.outcomes { padding: 7rem 2rem; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  max-width: 500px;
}
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.outcome-card:hover { border-color: rgba(245,166,35,0.3); }
.outcome-icon { margin-bottom: 1.25rem; }
.outcome-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.outcome-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* HOW IT WORKS */
.how-it-works { padding: 7rem 2rem; background: var(--bg-surface); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
  max-width: 480px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--accent); opacity: 0.6; line-height: 1; padding-top: 0.25rem; }
.step-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.step-content p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; }

/* PRICING */
.pricing { padding: 7rem 2rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing-header { margin-bottom: 3.5rem; }
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.pricing-header p { color: var(--fg-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.pricing-card { display: flex; justify-content: center; margin-bottom: 3rem; }
.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  text-align: left;
}
.tier-name { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1rem; display: block; }
.tier-price { margin-bottom: 2rem; }
.price-amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; letter-spacing: -0.03em; }
.price-note { font-size: 0.9rem; color: var(--fg-muted); margin-left: 0.5rem; }
.tier-features { list-style: none; margin-bottom: 2rem; }
.tier-features li { font-size: 0.9rem; color: var(--fg-muted); padding: 0.6rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.tier-features li::before { content: ''; width: 16px; height: 16px; background: var(--accent-dim); border-radius: 50%; flex-shrink: 0; }
.tier-features li::before { background: rgba(34,197,94,0.15); }
.tier-features li::before { content: ''; width: 8px; height: 8px; background: var(--positive); border-radius: 50%; }
.tier-note { font-size: 0.8rem; color: var(--fg-muted); }
.pricing-compare { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.compare-item { text-align: center; }
.compare-label { display: block; font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem; }
.compare-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--fg-muted); }
.compare-item.featured .compare-value { color: var(--accent); }

/* MANIFESTO */
.manifesto { padding: 7rem 2rem; background: var(--bg-surface); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.manifesto-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 1.25rem; }

/* CLOSING */
.closing { padding: 8rem 2rem; text-align: center; background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(245,166,35,0.05) 0%, transparent 60%); }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-sub { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 4rem; line-height: 1.7; }
.closing-orb { display: flex; justify-content: center; margin-top: 2rem; }
.closing-orb svg { width: 180px; height: 180px; }

/* FOOTER */
.site-footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer-note { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.footer-legal { font-size: 0.72rem; color: rgba(136,136,160,0.5); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .philosophy-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-value { font-size: 1.8rem; }
  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .pricing-compare { gap: 1.5rem; }
  .hero { padding-top: 6rem; }
}
@media (max-width: 480px) {
  .philosophy-stats { grid-template-columns: 1fr; }
  .hero-ticker { display: none; }
}