:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --amber: #F5A623;
  --amber-dim: #F5A62322;
  --text: #FAFAF8;
  --text-muted: #A0A09A;
  --border: #2A2A2A;
  --red: #E85555;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid #F5A62344;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F5A62315 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
}

/* SECTION HEADINGS */
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* THE GAP */
.thegap {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.thegap-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.thegap .section-heading {
  margin-bottom: 56px;
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.gap-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.gap-item--lost {
  border-color: var(--red);
  background: #E8555510;
}

.gap-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border: 1px solid #F5A62333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--amber);
}

.gap-icon--lost {
  background: #E8555510;
  border-color: #E8555533;
  color: var(--red);
}

.gap-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

.gap-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.gap-arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  opacity: 0.5;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 24px;
}

.howitworks-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.howitworks .section-heading {
  margin-bottom: 8px;
}

.howitworks .section-sub {
  margin-bottom: 64px;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.3;
}

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: #F5A62344;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border: 1px solid #F5A62333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* NUMBERS */
.numbers {
  padding: 100px 24px;
  background: var(--bg);
}

.numbers-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.numbers .section-heading {
  margin-bottom: 48px;
}

.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.num-item {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.num-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1;
}

.num-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* WHO'S FOR */
.whosfor {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whosfor-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.who-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 32px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
}

.who-check {
  width: 22px;
  height: 22px;
  background: var(--amber-dim);
  border: 1px solid #F5A62344;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.who-note {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
}

.closing-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 40px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
}

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gap-arrow {
    display: none;
  }
  .steps {
    flex-direction: column;
  }
  .step-connector {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .num-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .num-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gap-grid {
    grid-template-columns: 1fr;
  }
  .thegap, .howitworks, .features, .numbers, .whosfor, .closing {
    padding: 64px 20px;
  }
}