:root {
  --bg: #0D0D0D;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --fg: #F5F0E8;
  --fg-muted: #9A9590;
  --accent: #FF5A1F;
  --accent-dim: rgba(255, 90, 31, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.card-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}
.flow-step--outcome {
  background: var(--accent-dim);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 4px;
}
.flow-step--outcome .step-num { color: var(--accent); }
.flow-step--outcome .step-text { color: var(--fg); font-weight: 500; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-muted);
  min-width: 24px;
  padding-top: 1px;
}
.step-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.flow-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  color: var(--border);
}

/* How section */
.how {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.how-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.how-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* Earnings */
.earnings {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}
.earnings-inner {
  max-width: 900px;
  margin: 0 auto;
}
.earnings-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.earnings-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
}
.earnings-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.earn-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.earn-row:last-child { border-bottom: none; }
.earn-service {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.earn-calc {
  font-size: 14px;
  color: var(--fg-muted);
}
.earn-total {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.earnings-note {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-muted);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

/* Industries */
.industries {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.industries-header {
  margin-bottom: 56px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ind-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.ind-card:hover {
  background: var(--bg-card-hover);
}
.ind-mark {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.ind-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.ind-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.ind-stat {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Closing */
.closing {
  padding: 100px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-tagline {
  font-size: 16px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    gap: 40px;
  }
  .hero-headline { font-size: 34px; }
  .hero-proof { gap: 20px; flex-wrap: wrap; }
  .how-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .earn-row { grid-template-columns: 1fr; gap: 4px; }
  .earn-total { font-size: 18px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .closing { padding: 60px 20px 50px; }
}