:root {
  --navy: #0f1629;
  --navy-mid: #1a2744;
  --amber: #f59e0b;
  --amber-light: #fcd34d;
  --cream: #f8f7f4;
  --white: #ffffff;
  --text-muted: #9aa3b2;
  --border: rgba(255,255,255,0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,22,41,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-lockup { display: flex; align-items: center; gap: 10px; }
.logo-mark { flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 600; color: var(--cream); letter-spacing: 0.01em; }
.site-nav { display: flex; gap: 28px; }
.site-nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: var(--cream); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}
.trust-item svg { flex-shrink: 0; }

/* HERO VISUAL */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.funding-meter {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}
.meter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.meter-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-bottom: 10px; }
.meter-fill { height: 100%; background: linear-gradient(90deg, #f59e0b, #fcd34d); border-radius: 3px; }
.meter-detail { font-size: 12px; color: var(--text-muted); }
.amount-card {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1f3055 100%);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
}
.amount-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); font-weight: 600; margin-bottom: 4px; }
.amount-value { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; margin-bottom: 6px; }
.amount-sub { font-size: 13px; color: var(--text-muted); }

/* STATS ROW */
.stats-row {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
}
.stats-row .stat { flex: 1; text-align: center; padding: 40px 24px; }
.stat-value { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); color: var(--white); margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* PROCESS */
.process { max-width: 1100px; margin: 0 auto; padding: 96px 24px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.section-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 480px; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; }
.step-number { font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 0.06em; margin-bottom: 20px; }
.step-icon { margin-bottom: 18px; }
.step-card h3 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.timeline-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ADVANTAGE */
.advantage { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); padding: 96px 24px; }
.advantage .section-headline { margin-bottom: 56px; }
.advantage-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.advantage-card { padding: 40px 36px; border: 1px solid var(--border); }
.advantage-icon { margin-bottom: 18px; }
.advantage-card h3 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.advantage-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* CLOSING */
.closing { max-width: 1100px; margin: 0 auto; padding: 100px 24px; }
.closing-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--amber); padding: 5px 14px; border-radius: 100px; margin-bottom: 24px; }
.closing-headline { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.closing-sub { font-size: 17px; color: var(--text-muted); max-width: 580px; line-height: 1.7; margin-bottom: 40px; }
.closing-stats { border-left: 2px solid var(--amber); padding-left: 24px; }
.c-stat-value { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.c-stat-label { font-size: 14px; color: var(--text-muted); }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--cream); }
.footer-links { display: flex; gap: 20px; margin-left: auto; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 12px; color: var(--text-muted); width: 100%; }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 56px; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stats-row .stat { flex: 1 1 45%; }
  .stat-divider { display: none; }
  .site-nav { display: none; }
  .footer-links { margin-left: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .amount-value { font-size: 40px; }
  .section-headline { font-size: 26px; }
}