:root {
  --bg: #0B1220;
  --surface: #121D30;
  --surface-2: #1A2740;
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --text: #F0EDE6;
  --text-dim: #8896A8;
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAVBAR */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--amber);
  border-radius: 2px 0 0 2px;
}
.hero-card--dim { opacity: 0.65; }
.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.hero-card-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stat { padding: 48px 32px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

/* SECTION SHARED */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

/* HOW */
.how { max-width: 1140px; margin: 0 auto; padding: 96px 24px; }
.how-header { margin-bottom: 64px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--amber-dim);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* COMMISSIONS */
.commissions { background: var(--surface); }
.comm-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.comm-desc {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}
.comm-table {
  background: var(--surface-2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.comm-row:last-child { border-bottom: none; }
.comm-row--head {
  background: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.comm-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  font-size: 16px;
}
.comm-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  font-style: italic;
}
.comm-quote {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  position: relative;
}
.comm-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--amber-dim);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.comm-quote p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  padding-top: 24px;
}
.comm-quote-attr {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  font-weight: 500;
}
.comm-quote--alt { opacity: 0.7; }

/* COLLATERALS */
.collaterals { max-width: 1140px; margin: 0 auto; padding: 96px 24px; }
.coll-sub {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 56px;
  line-height: 1.7;
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.coll-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.coll-item:hover { border-color: var(--amber); }
.coll-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 16px;
}
.coll-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.coll-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* CLOSER */
.closer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.1;
}
.closer-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.footer-desc, .footer-meta {
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px 40px;
    gap: 40px;
  }
  .hero-headline { font-size: 36px; }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat { padding: 32px 20px; }
  .stat-divider { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .comm-inner { grid-template-columns: 1fr; gap: 48px; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .closer-inner { padding: 64px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .coll-grid { grid-template-columns: 1fr; }
  .hero-visual { gap: 12px; }
  .stat-number { font-size: 26px; }
  .hero-card-amount { font-size: 32px; }
}