:root {
  --bg: #0D1B2A;
  --bg-alt: #0A1520;
  --bg-card: #112035;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --silver: #B8C4D4;
  --text: #E8ECF4;
  --text-dim: #7A8A9E;
  --positive: #4ADE80;
  --navy-card: #0F2035;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ───────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 196, 212, 0.07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 64px 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 196, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 196, 212, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-metrics-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

.hero-metric:first-child { padding-left: 0; }

.metric-val {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 196, 212, 0.15);
  margin: 0 32px;
}

/* ── Art Cards ────────────────────────── */
.hero-art {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.art-card {
  background: var(--bg-card);
  border: 1px solid rgba(184, 196, 212, 0.1);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.08);
}

.art-card-investor { width: 280px; }

.art-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.art-card-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
}

.art-card-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(74, 222, 128, 0.15);
  color: var(--positive);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.art-card-badge-green { background: var(--gold-dim); color: var(--gold); }

.art-card-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.art-card-strategy {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.art-card-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.art-stat { display: flex; flex-direction: column; gap: 2px; }

.art-stat-val {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.art-stat-val.positive { color: var(--positive); }

.art-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.art-card-risk {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.risk-label {
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
}

.risk-bar {
  flex: 1;
  height: 4px;
  background: rgba(184, 196, 212, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.risk-fill {
  height: 100%;
  background: var(--positive);
  border-radius: 2px;
}

.risk-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--positive);
}

/* Investor card */
.art-card-allocation {}

.alloc-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.alloc-fill { transition: width 0.3s; }
.alloc-1 { background: var(--gold); }
.alloc-2 { background: rgba(201, 168, 76, 0.4); }
.alloc-3 { background: rgba(201, 168, 76, 0.2); }

.alloc-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alloc-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--silver);
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-1 { background: var(--gold); }
.dot-2 { background: rgba(201, 168, 76, 0.4); }
.dot-3 { background: rgba(201, 168, 76, 0.2); }

/* ── Section commons ─────────────────── */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 600px;
}

.section-headline.light { color: var(--text); }

.section-body {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 480px;
}

.section-body-light {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 580px;
}

/* ── How It Works ────────────────────── */
.how-it-works {
  padding: 100px 64px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(184, 196, 212, 0.06);
}

.how-it-works .section-headline { max-width: 100%; text-align: center; margin: 0 auto 72px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(184, 196, 212, 0.08);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-body {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 24px;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-list li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}

.step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Trader Profiles ─────────────────── */
.trader-profiles {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(184, 196, 212, 0.06);
}

.tp-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.tp-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--silver);
  line-height: 1.5;
}

.tp-feature svg { flex-shrink: 0; margin-top: 2px; }

.profile-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.05);
}

.profile-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #9a7a32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.profile-meta { flex: 1; }

.profile-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.profile-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.profile-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(184, 196, 212, 0.1);
  color: var(--silver);
}

.profile-badge-gold {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.profile-tags {
  font-size: 12px;
  color: var(--text-dim);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
}

.pm { display: flex; flex-direction: column; gap: 2px; }

.pm-val {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pm-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-chart {
  height: 60px;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.profile-chart svg {
  width: 100%;
  height: 100%;
}

.profile-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}

.profile-funded {
  color: var(--gold);
  font-weight: 600;
}

/* ── Investor Edge ───────────────────── */
.investor-edge {
  padding: 100px 64px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(184, 196, 212, 0.06);
}

.ie-top { margin-bottom: 64px; }

.ie-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.ie-card {
  background: var(--bg-card);
  border: 1px solid rgba(184, 196, 212, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s;
}

.ie-card:hover { border-color: rgba(201, 168, 76, 0.2); }

.ie-card-icon {
  margin-bottom: 20px;
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ie-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.ie-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.65;
}

/* Split diagram */
.ie-split-diagram {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.split-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.split-bar-row {
  display: flex;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.split-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.split-investor { flex: 50; background: var(--gold); }
.split-trader { flex: 30; background: rgba(201, 168, 76, 0.45); }
.split-company { flex: 20; background: rgba(201, 168, 76, 0.18); }

.split-pct {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.03em;
}

.split-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.6);
}

.split-note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Performance Metrics ─────────────── */
.performance-metrics {
  padding: 80px 64px;
  border-top: 1px solid rgba(184, 196, 212, 0.06);
}

.pm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.pm-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-big-val {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pm-big-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pm-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 4px;
}

/* ── Closing ─────────────────────────── */
.closing {
  padding: 120px 64px;
  border-top: 1px solid rgba(184, 196, 212, 0.06);
}

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

.closing-icon {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Footer ──────────────────────────── */
.footer {
  padding: 48px 64px;
  border-top: 1px solid rgba(184, 196, 212, 0.06);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-art { align-items: flex-start; }
  .art-card { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .trader-profiles { grid-template-columns: 1fr; }
  .ie-cards { grid-template-columns: 1fr; }
  .pm-grid { grid-template-columns: 1fr 1fr; }
  .how-it-works,
  .investor-edge,
  .performance-metrics,
  .closing { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .pm-grid { grid-template-columns: 1fr; }
  .hero-metrics-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-metric-divider { display: none; }
  .nav-links { display: none; }
}