:root {
  --bg: #0f0f1a;
  --bg-card: #161625;
  --bg-accent: #1a1a2e;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text-primary: #f0ede8;
  --text-secondary: #8a8a9a;
  --text-muted: #5a5a6a;
  --border: rgba(240, 237, 232, 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; }

html { scroll-behavior: smooth; }

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo {
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.5px;
}
.nav__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
}
.nav__tagline {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  min-height: 72vh;
  overflow: hidden;
}

.hero__inner {
  padding: 100px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  max-width: 800px;
}

.hero__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.hero__stat { display: flex; flex-direction: column; gap: 4px; }

.hero__stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero__accent-block {
  width: 260px;
  background: linear-gradient(160deg, var(--accent) 0%, #c47d10 100%);
  position: relative;
  overflow: hidden;
}

.hero__accent-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.06) 20px,
    rgba(0,0,0,0.06) 40px
  );
}

/* ── Differentiators ── */
.diff {
  padding: 100px 80px;
  background: var(--bg);
}

.diff__header { margin-bottom: 60px; }
.diff__eyebrow {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.diff__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  max-width: 600px;
}

.diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.diff__card {
  background: var(--bg-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.diff__card:hover { background: var(--bg-accent); }

.diff__card--wide { grid-column: span 1; }

.diff__card-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  letter-spacing: -2px;
}

.diff__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.3;
}

.diff__card-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Process ── */
.process {
  padding: 100px 80px;
  background: var(--bg-accent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__header { margin-bottom: 60px; }
.process__eyebrow {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.process__steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process__step-num {
  width: 48px; height: 48px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
}

.process__step-content { padding-right: 24px; }
.process__step:last-child .process__step-content { padding-right: 0; }

.process__step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.process__step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process__step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--accent);
  opacity: 0.3;
  align-self: flex-start;
  margin-top: 22px;
}

.process__fees {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}
.process__fees-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}
.process__fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process__fee { display: flex; flex-direction: column; gap: 8px; }
.process__fee-type {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
}
.process__fee-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Manifesto ── */
.manifesto {
  padding: 100px 80px;
  background: var(--bg);
}
.manifesto__inner { max-width: 720px; }
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.5px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 40px;
}
.manifesto__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto__body:last-child {
  margin-bottom: 0;
}

/* ── Footer ── */
.footer {
  padding: 48px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo {
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 16px;
}
.footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer__legal {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero__accent-block { display: none; }
  .hero__inner { padding: 64px 24px 56px; }
  .hero__headline { font-size: 44px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat-divider { display: none; }
  .diff { padding: 64px 24px; }
  .diff__grid { grid-template-columns: 1fr; }
  .diff__card--wide { grid-column: span 1; }
  .process { padding: 64px 24px; }
  .process__steps { flex-direction: column; gap: 24px; }
  .process__step-connector { display: none; }
  .process__fees-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
  .manifesto__quote { font-size: 22px; }
  .footer { padding: 40px 24px; flex-wrap: wrap; gap: 12px; }
  .footer__legal { margin-left: 0; }
}