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

:root {
  --navy: #100f21;
  --navy-mid: #181630;
  --navy-light: #211e44;
  --purple: #6b72cc;
  --purple-light: #8b92e0;
  --teal: #3dbfb8;
  --teal-dark: #2aa09a;
  --white: #f0f2ff;
  --gray: #8a92b2;
  --text: #c8cef0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(16,15,33,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,114,204,0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-text {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-brand-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta-btn {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta-btn:hover { background: var(--teal-dark) !important; color: var(--navy) !important; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(61,191,184,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(107,114,204,0.13) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,114,204,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,114,204,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,191,184,0.1);
  border: 1px solid rgba(61,191,184,0.3);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(50px, 7.5vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-title .c-teal { color: var(--teal); }
.hero-title .c-purple { color: var(--purple-light); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 300;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,191,184,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--purple-light); color: var(--purple-light); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(107,114,204,0.15);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num .c-teal { color: var(--teal); }

.hero-stat-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* SECTION BASE */
.section { padding: 100px 48px; }
.container { max-width: 1140px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-sub {
  font-size: 16px;
  color: var(--text);
  max-width: 520px;
  font-weight: 300;
  text-wrap: pretty;
  line-height: 1.7;
}

/* WHY JOIN */
.why-section { background: var(--navy-mid); }

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,114,204,0.15);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover { border-color: rgba(61,191,184,0.35); transform: translateY(-4px); }

.why-card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: 0;
  transition: opacity 0.2s;
}

.why-card:hover .why-card-top-bar { opacity: 1; }

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(61,191,184,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.why-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card-body {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.65;
}

/* EARNINGS */
.earnings-section { background: var(--navy); position: relative; overflow: hidden; }

.earnings-glow {
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,191,184,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.earnings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.earnings-tiers { display: flex; flex-direction: column; gap: 14px; }

.tier {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(107,114,204,0.14);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.2s, background 0.2s;
}

.tier:hover { border-color: rgba(61,191,184,0.3); background: rgba(61,191,184,0.03); }

.tier.featured { border-color: rgba(61,191,184,0.4); background: rgba(61,191,184,0.05); }

.tier-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-badge.s { background: rgba(107,114,204,0.2); color: var(--purple-light); }
.tier-badge.b { background: rgba(61,191,184,0.15); color: var(--teal); }
.tier-badge.l { background: rgba(61,191,184,0.22); color: var(--teal); border: 1px solid rgba(61,191,184,0.4); }

.tier-info { flex: 1; }

.tier-label { font-size: 12px; color: var(--gray); margin-bottom: 2px; }

.tier-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.tier-amount span { color: var(--teal); font-size: 14px; font-weight: 500; }

.no-lead-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(61,191,184,0.07);
  border: 1px solid rgba(61,191,184,0.25);
  border-radius: 12px;
  padding: 22px;
  margin-top: 20px;
}

.no-lead-icon { font-size: 26px; }

.no-lead-text strong { display: block; color: var(--teal); font-size: 14.5px; margin-bottom: 3px; }
.no-lead-text p { font-size: 13px; color: var(--text); line-height: 1.5; }

.earnings-points { display: flex; flex-direction: column; gap: 28px; }

.ep {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(107,114,204,0.12);
}

.ep:last-child { border-bottom: none; }

.ep-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(107,114,204,0.2);
  line-height: 1;
  min-width: 44px;
}

.ep-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.ep-body { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* STEPS */
.steps-section { background: var(--navy-mid); text-align: center; }

.steps-header { max-width: 540px; margin: 0 auto 64px; }

.steps-wrap { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 860px; margin: 0 auto; }

.steps-line {
  position: absolute;
  top: 40px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
}

.step { padding: 0 36px; position: relative; z-index: 1; }

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #181630;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}

.step-title { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step-body { font-size: 13.5px; color: var(--text); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials-section { background: var(--navy); }
.testimonials-header { text-align: center; margin-bottom: 56px; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,114,204,0.14);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s;
}

.testi-card:hover { border-color: rgba(107,114,204,0.35); }

.testi-stars { color: var(--teal); font-size: 14px; letter-spacing: 2px; }

.testi-quote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: 13.5px; color: var(--white); }
.testi-role { font-size: 11.5px; color: var(--gray); }

/* APPLY */
.apply-section { background: var(--navy-mid); }

.apply-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.apply-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }

.apply-perks li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); }

.perk-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(61,191,184,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,114,204,0.2);
  border-radius: 16px;
  padding: 40px;
}

.form-title { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 600; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,114,204,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-group select { appearance: none; cursor: pointer; }

.form-group select option { background: var(--navy-mid); color: var(--white); }

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 14px;
}

/* FOOTER */
footer {
  background: #0b0a18;
  padding: 48px;
  border-top: 1px solid rgba(107,114,204,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.footer-brand span { display: block; font-size: 10px; color: var(--teal); letter-spacing: 0.18em; font-family: 'DM Sans', sans-serif; font-weight: 400; }

.footer-links { display: flex; gap: 28px; }

.footer-links a { color: var(--gray); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

.footer-copy { font-size: 12px; color: var(--gray); }

/* ─── HAMBURGER + MOBILE MENU ─── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
}

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(16,15,33,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,114,204,0.2);
  display: flex;
  flex-direction: column;
  padding: 8px 0 20px;
}

.mobile-menu-link {
  padding: 16px 24px;
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(107,114,204,0.1);
  transition: color 0.2s;
}

.mobile-menu-link:hover { color: var(--teal); }

.mobile-menu-cta {
  margin: 16px 24px 0;
  background: var(--teal);
  color: var(--navy);
  text-decoration: none;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand-text { font-size: 15px; }

  /* HERO */
  .hero { padding: 100px 24px 60px; min-height: 100svh; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(36px, 10vw, 54px); line-height: 1.05; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; }
  .hero-stats { gap: 24px; margin-top: 40px; padding-top: 32px; justify-content: flex-start; flex-wrap: wrap; }
  .hero-stat-num { font-size: 30px; }

  /* SECTIONS */
  .section { padding: 64px 24px; }
  .section-title { font-size: clamp(28px, 7vw, 42px); }

  /* WHY JOIN */
  .why-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .why-cards { grid-template-columns: 1fr; gap: 14px; }

  /* EARNINGS */
  .earnings-layout { grid-template-columns: 1fr; gap: 40px; }
  .tier { flex-wrap: wrap; gap: 10px; }
  .tier-amount { font-size: 20px; }

  /* STEPS */
  .steps-wrap { grid-template-columns: 1fr; gap: 36px; }
  .steps-line { display: none; }
  .step { padding: 0; }

  /* TESTIMONIALS */
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }

  /* APPLY */
  .apply-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* FOOTER */
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .hero-pill { font-size: 10px; letter-spacing: 0.12em; }
  .hero-stat-num { font-size: 26px; }
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-brand-text {
    font-size: 16px;
  }

  /* Hamburger menu button */
  .nav-mobile-cta {
    display: flex !important;
  }

  /* HERO */
  .hero {
    padding: 100px 24px 60px;
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-outline {
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 40px;
    padding-top: 32px;
    justify-content: flex-start;
  }

  .hero-stat-num { font-size: 32px; }

  /* SECTIONS */
  .section { padding: 64px 24px; }

  /* WHY JOIN */
  .why-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* EARNINGS */
  .earnings-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tier {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tier-amount { font-size: 20px; }

  /* STEPS */
  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-line { display: none; }

  .step { padding: 0; }

  /* TESTIMONIALS */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* APPLY */
  .apply-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card { padding: 28px 20px; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* FOOTER */
  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 28px; }
}
