:root {
  --bg: #080C14;
  --surface: #0D1421;
  --surface-2: #111827;
  --gold: #D4A853;
  --gold-dim: #C4A265;
  --gold-faint: #8B7340;
  --text: #EDE8DF;
  --text-muted: #8A8075;
  --text-dim: #5A564F;
  --divider: rgba(212, 168, 83, 0.15);
  --divider-strong: rgba(212, 168, 83, 0.3);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--divider);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}

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

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero */
.hero {
  padding: 5rem 3rem 4rem;
  position: relative;
}

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

.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

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

.hero-lede {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  max-width: 80px;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--divider);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.market-grid {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  margin-bottom: 2rem;
}

.market-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--gold-faint), rgba(212, 168, 83, 0.3));
  border-radius: 2px 2px 0 0;
  animation: barRise 1.5s ease-out var(--delay) both;
}

@keyframes barRise {
  from { height: 0; opacity: 0; }
  to { opacity: 1; }
}

.market-lines {
  margin-bottom: 1.5rem;
}

.market-lines svg {
  width: 100%;
  height: 120px;
}

.line-gold {
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s ease-out 0.5s forwards;
  fill: none;
}

.line-blue {
  stroke: rgba(212, 168, 83, 0.35);
  stroke-width: 1;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s ease-out 0.8s forwards;
  fill: none;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.market-labels {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-pulse {
  color: var(--gold);
  font-size: 0.5rem;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Rule */
.hero-rule {
  max-width: 1200px;
  margin: 4rem auto 0;
  height: 1px;
  background: var(--divider);
}

/* Manifesto */
.manifesto {
  padding: 5rem 3rem;
  background: var(--surface);
}

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

.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.manifesto-emphasis {
  font-size: 1.8rem;
  color: var(--text);
}

/* Features */
.features {
  padding: 6rem 3rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}

.feature-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
  width: 24px;
  height: 24px;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

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

/* How */
.how {
  padding: 6rem 3rem;
  background: var(--surface);
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-steps {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
}

.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-faint);
  font-weight: 300;
}

.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.how-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-connector {
  width: 60px;
  height: 1px;
  background: var(--divider-strong);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2.2rem;
}

/* Risk */
.risk {
  padding: 6rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--divider);
}

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

.risk-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-faint);
  margin-bottom: 1.5rem;
}

.risk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.risk-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risk-text em {
  font-style: italic;
  color: var(--gold-dim);
}

.risk-rule {
  width: 40px;
  height: 1px;
  background: var(--gold-faint);
  margin: 2rem auto;
}

.risk-note {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Closing */
.closing {
  padding: 8rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--divider);
}

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

.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 3rem;
}

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Footer */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--divider);
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  color: var(--gold-faint);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal span {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-headline { font-size: 3.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 2rem; }
  .how-connector { width: 40px; height: 1px; margin: 0; }
  .closing-title { font-size: 2.5rem; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .risk { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .footer-legal { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat-divider { display: none; }
}