/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --lime: #c8f736;
  --lime-dim: rgba(200, 247, 54, 0.12);
  --white: #ffffff;
}

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

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

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,247,54,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(200,247,54,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline .lime { color: var(--lime); }

.hero-sub {
  font-size: 1.15rem;
  color: #aaaaaa;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* === THE GAP === */
.thegap {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.thegap-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.thegap-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 48px;
}

.thegap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gap-item {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid;
}

.gap-wrong {
  background: rgba(255,80,80,0.05);
  border-color: rgba(255,80,80,0.15);
}

.gap-right {
  background: rgba(200,247,54,0.05);
  border-color: rgba(200,247,54,0.2);
}

.gap-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.gap-wrong .gap-icon {
  background: rgba(255,80,80,0.15);
  color: #ff5050;
}

.gap-right .gap-icon {
  background: rgba(200,247,54,0.15);
  color: var(--lime);
}

.gap-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.gap-item p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.65;
}

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

.hiw-inner { max-width: 900px; margin: 0 auto; }

.hiw-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.hiw-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 56px;
}

.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(200,247,54,0.2);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.88rem;
  color: #888888;
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 16px;
}

/* === WHO FOR === */
.whoforit {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wf-inner { max-width: 900px; margin: 0 auto; }

.wf-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.wf-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 48px;
}

.wf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.wf-card {
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: border-color 0.2s;
}

.wf-card:hover {
  border-color: rgba(200,247,54,0.25);
}

.wf-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.wf-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.wf-card p {
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.6;
}

.wf-note {
  font-size: 0.9rem;
  color: #666666;
  text-align: center;
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  text-align: center;
}

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: #777777;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 0.78rem;
  color: #555555;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .thegap { padding: 70px 24px; }
  .howitworks { padding: 70px 24px; }
  .whoforit { padding: 70px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }

  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  .thegap-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .wf-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .nav-tagline { display: none; }
  .stat-num { font-size: 1.6rem; }
}