:root {
  --haiti: #161032;
  --java: #14CFBC;
  --bright-sun: #FFE830;
  --butterfly: #5C51A2;
  --alabaster: #FAFAFA;
  --glass-1: rgba(255, 255, 255, .10);
  --glass-2: rgba(255, 255, 255, .06);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, .25);
  --shadow-2: 0 18px 60px rgba(20, 207, 188, .18);
}

* { box-sizing: border-box; }

body {
  color: var(--alabaster);
  background:
    radial-gradient(1100px 760px at 8% -10%, rgba(92, 81, 162, .36), transparent 60%) no-repeat,
    radial-gradient(900px 620px at 92% 2%, rgba(255, 232, 48, .20), transparent 58%) no-repeat,
    var(--haiti);
}

.one-page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 20px 56px;
}

.eyebrow {
  color: var(--java);
  font-family: var(--font-heading);
  font-size: var(--fs-micro);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  background: var(--java);
  color: #041d1a;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  font-size: var(--fs-btn);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(20, 207, 188, .35);
}

.btn.secondary {
  background: transparent;
  color: var(--alabaster);
  border-color: var(--glass-1);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(20, 207, 188, .35);
}

.one-hero {
  min-height: min(720px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 36px;
  align-items: center;
  padding: 56px 0 32px;
}

.one-hero__copy {
  max-width: 680px;
}

.one-hero h1 {
  max-width: 11ch;
  margin: 10px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 58ch;
  color: #e7e7f5;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  opacity: .95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #e9e7fb;
  font-size: var(--fs-small);
  font-weight: 700;
}

.mentor-showcase {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.mentor-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 8%;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(20, 207, 188, .18), rgba(92, 81, 162, .42)),
    rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: var(--shadow-1);
  transform: rotate(-2deg);
}

.mentor-showcase::after {
  content: "</>";
  position: absolute;
  top: 18%;
  right: 6%;
  z-index: -1;
  color: rgba(255, 232, 48, .28);
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 700;
}

.mentor-photo {
  width: min(340px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 232, 48, .22), transparent 45%),
    linear-gradient(180deg, rgba(20, 207, 188, .14), rgba(92, 81, 162, .18));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.mentor-photo img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .30));
}

.lesson-panel {
  position: absolute;
  left: 2%;
  bottom: 12%;
  max-width: 300px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: rgba(22, 16, 50, .88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
}

.lesson-panel span,
.lesson-panel small {
  display: block;
  color: var(--java);
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lesson-panel strong {
  display: block;
  margin: 6px 0;
  color: var(--alabaster);
  font-size: var(--fs-body);
  line-height: 1.35;
}

.lesson-panel small {
  color: rgba(250, 250, 250, .72);
  text-transform: none;
  letter-spacing: 0;
}

.local-band,
.method-section,
.closing-cta {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  margin: 28px 0;
  padding: 28px;
  border: 1px solid var(--glass-1);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(26, 21, 64, .92), rgba(26, 21, 64, .72));
  box-shadow: var(--shadow-1);
}

.local-band h2,
.method-section h2,
.closing-cta h2,
.section-head h2 {
  margin: 6px 0 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading-2);
}

.local-band p,
.method-section p,
.closing-cta p,
.section-head p {
  color: #e1def6;
  line-height: var(--lh-body);
  opacity: .92;
}

.coverage-card {
  padding: 20px;
  border: 1px solid rgba(20, 207, 188, .22);
  border-radius: var(--radius-lg);
  background: rgba(20, 207, 188, .08);
}

.coverage-card strong {
  display: block;
  color: var(--java);
  font-size: var(--fs-body-lg);
  margin-bottom: 6px;
}

.coverage-card p {
  margin: 0 0 10px;
}

.coverage-card span {
  display: block;
  color: rgba(250, 250, 250, .72);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.path-section,
.topics-section,
.faq {
  margin: 48px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.support-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-card,
.faq-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--glass-1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(92, 81, 162, .24), rgba(92, 81, 162, .10));
  box-shadow: var(--shadow-1);
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--bright-sun);
  color: #1a1400;
  font-weight: 900;
}

.support-card h3,
.faq-grid h3 {
  margin: 0 0 8px;
  color: var(--alabaster);
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  line-height: var(--lh-heading-2);
}

.support-card p,
.faq-grid p {
  margin: 0;
  color: #dddaf2;
  line-height: var(--lh-body);
}

.method-section {
  align-items: start;
}

.method-copy {
  align-self: center;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--java);
  color: #041d1a;
  font-weight: 900;
}

.timeline strong {
  display: block;
  color: var(--alabaster);
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
}

.timeline p {
  margin: 2px 0 0;
  color: #dddaf2;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 207, 188, .28);
  border-radius: 999px;
  background: rgba(20, 207, 188, .08);
  color: #ecfbf9;
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.closing-cta {
  grid-template-columns: 1fr auto;
  margin-top: 52px;
}

.closing-cta h2 {
  max-width: 720px;
}

.closing-cta .btn {
  white-space: nowrap;
}

@media (max-width: 960px) {
  .one-hero,
  .local-band,
  .method-section,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .one-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .one-hero h1 {
    max-width: 14ch;
  }

  .mentor-showcase {
    min-height: 420px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .closing-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .one-page {
    padding-inline: 16px;
  }

  .one-hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .closing-cta .btn {
    width: 100%;
  }

  .local-band,
  .method-section,
  .closing-cta {
    padding: 20px;
  }

  .mentor-showcase {
    min-height: 360px;
  }

  .mentor-showcase::after {
    top: 8%;
    right: 2%;
    font-size: 3.6rem;
  }

  .lesson-panel {
    left: 0;
    right: 0;
    bottom: 2%;
    max-width: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
