/* ── Reset & Custom Properties ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #251F4F;
  --navy-light:  #342A6B;
  --amber:       #F3920D;
  --amber-light: #FAB84C;
  --orange:      #EB5E36;
  --cream:       #FAF8F3;
  --white:       #FFFFFF;
  --text:        #1C1B2E;
  --muted:       #6B6882;
  --border:      #E4E1F0;
  --success:     #2E7D32;

  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(37,31,79,.08), 0 1px 2px rgba(37,31,79,.06);
  --shadow-md: 0 4px 16px rgba(37,31,79,.12);
  --shadow-lg: 0 12px 40px rgba(37,31,79,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .12s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 4px 16px rgba(243,146,13,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--nav {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  padding: 9px 20px;
  font-size: .875rem;
}
.btn--nav:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.btn--full { width: 100%; }

/* ── Labels ────────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-label--light { color: var(--amber-light); }

/* ── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.logo-mark {
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .875rem;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.logo-mark--sm { font-size: .75rem; padding: 4px 7px; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-dot { color: var(--amber); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 500;
  transition: color .15s;
}
.nav__links a:not(.btn):hover { color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-light);
  padding: 16px 24px 20px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--amber); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
}
.hero__bg-shape {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,146,13,.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}
.hero__bg-shape--2 {
  background: radial-gradient(circle, rgba(235,94,54,.12) 0%, transparent 70%);
  top: auto;
  bottom: -160px;
  right: auto;
  left: -120px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__badge {
  display: inline-block;
  background: rgba(243,146,13,.15);
  border: 1px solid rgba(243,146,13,.4);
  color: var(--amber-light);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero__headline--accent { color: var(--amber); }
.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero__note {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.hero__graphic {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  pointer-events: none;
  overflow: hidden;
}
.facet {
  position: absolute;
  opacity: .12;
}
.facet--1 {
  width: 380px; height: 380px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 10%; right: 5%;
  transform: rotate(15deg);
}
.facet--2 {
  width: 260px; height: 260px;
  background: var(--orange);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  top: 45%; right: 28%;
  transform: rotate(-10deg);
  opacity: .08;
}
.facet--3 {
  width: 180px; height: 180px;
  background: #73CAEA;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  top: 60%; right: 8%;
  opacity: .15;
}

/* ── Why ───────────────────────────────────────────────────────────────── */
.why {
  background: var(--cream);
  padding: 96px 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.why__copy p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .9875rem;
  line-height: 1.75;
}
.why__copy p:last-child { margin-bottom: 0; }
.why__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card--accent {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.stat-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card--accent .stat-card__label { color: rgba(255,255,255,.75); }
.stat-card__label {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Pathways ──────────────────────────────────────────────────────────── */
.pathways {
  background: var(--white);
  padding: 96px 0;
  text-align: center;
}
.pathways__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.pathways__sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1rem;
  line-height: 1.7;
}
.pathway-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.pathway-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow .2s, transform .2s;
}
.pathway-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pathway-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pathway-card--featured .pathway-card__desc { color: rgba(255,255,255,.72); }
.pathway-card--featured .pathway-card__link { color: var(--amber-light); }
.pathway-card--featured .pathway-card__icon { color: var(--amber); }

.pathway-card__badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.pathway-card__icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 20px;
}
.pathway-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.pathway-card--featured .pathway-card__title { color: var(--white); }
.pathway-card__desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.pathway-card__link {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .15s;
}
.pathway-card__link:hover { color: var(--amber); }

/* ── Waitlist ──────────────────────────────────────────────────────────── */
.waitlist {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.waitlist__bg-shape {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(243,146,13,.08) 0%, transparent 70%);
  pointer-events: none;
}
.waitlist__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.waitlist__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.waitlist__copy p {
  color: rgba(255,255,255,.7);
  font-size: .9875rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.waitlist__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waitlist__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .9375rem;
}
.waitlist__perks svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amber);
}

/* Form */
.waitlist__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form__required { color: var(--orange); }
.form__optional {
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6882' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form__textarea { resize: vertical; min-height: 80px; }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(37,31,79,.1);
  background: var(--white);
}
.form__input.has-error,
.form__select.has-error,
.form__textarea.has-error {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(235,94,54,.1);
}
.form__error {
  display: block;
  font-size: .8rem;
  color: var(--orange);
  margin-top: 5px;
  font-weight: 600;
  min-height: 1em;
}
.form__privacy {
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form__privacy a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success state */
.form__success {
  text-align: center;
  padding: 24px 0 8px;
}
.form__success svg {
  width: 56px;
  height: 56px;
  color: var(--success);
  margin: 0 auto 16px;
}
.form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.form__success p {
  color: var(--muted);
  font-size: .9375rem;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: #181427;
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-left: 2px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .875rem;
  transition: color .15s;
}
.footer__links a:hover { color: var(--amber); }
.footer__copy {
  width: 100%;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 72px 0 88px; }
  .hero__graphic { display: none; }

  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 200px; }

  .pathway-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .waitlist__inner { grid-template-columns: 1fr; }
  .waitlist__form-wrap { padding: 32px 24px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__copy { text-align: left; }
}

@media (max-width: 560px) {
  .hero { padding: 56px 0 72px; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; text-align: center; justify-content: center; }
  .why { padding: 64px 0; }
  .pathways { padding: 64px 0; }
  .waitlist { padding: 64px 0; }
}
