:root {
  --black: #050505;
  --ink: #101010;
  --charcoal: #171717;
  --graphite: #252525;
  --smoke: #343434;
  --muted: #808080;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --line-dark: rgba(5, 5, 5, 0.14);
  --white: #ffffff;
  --paper: #f4f4f0;
  --mist: #e7e7e2;
  --soft: #d7d7d2;
  --max: 1180px;
  --header: 76px;
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.06), transparent 24rem),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section {
  scroll-margin-top: calc(var(--header) + 18px);
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 6px clamp(18px, 4vw, 52px);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--header) + 28px);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 255, 255, 0.08), transparent 26rem),
    radial-gradient(ellipse at 88% 0%, rgba(255, 255, 255, 0.065), transparent 24rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.7) 24%, rgba(5, 5, 5, 0.68) 76%, rgba(5, 5, 5, 0.46));
  -webkit-mask-image: linear-gradient(180deg, black 0, black var(--header), transparent 100%);
  mask-image: linear-gradient(180deg, black 0, black var(--header), transparent 100%);
  backdrop-filter: blur(24px) saturate(140%);
}

.site-header::after {
  z-index: -2;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--header) + 58px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.28) 54%, transparent 100%);
}

.brand,
.nav-links,
.nav-cta,
.menu-toggle {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
  height: 64px;
  overflow: hidden;
  font-weight: 850;
  white-space: nowrap;
}

.brand-logo {
  width: 168px;
  height: 64px;
  object-fit: contain;
  border: 0;
  filter: grayscale(1) contrast(1.12) brightness(1.28);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--white);
}

.nav-cta,
.button,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-light {
  color: var(--black);
  background: linear-gradient(180deg, var(--white), #deded9);
  border: 1px solid var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.nav-cta:hover,
.button:hover,
.mobile-cta a:hover {
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.button.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 4.5vw, 66px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    calc(var(--header) + 54px)
    max(clamp(18px, 4vw, 56px), calc((100vw - 1640px) / 2 + 56px))
    54px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #111 0%, #050505 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  left: -60px;
  top: -60px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  animation: gridDrift 22s linear infinite;
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at var(--glow-x, 66%) var(--glow-y, 34%), rgba(255, 255, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 14% 78%, rgba(255, 255, 255, 0.08), transparent 22rem);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: glowFloat 11s ease-in-out infinite alternate;
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(68px, 68px, 0);
  }
}

@keyframes glowFloat {
  0% {
    opacity: 0.48;
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  100% {
    opacity: 0.86;
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
}

.hero-copy {
  min-width: 0;
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 5vw, 5.45rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.06rem;
  line-height: 1.22;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 22px;
}

.trust-line {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-video-card,
.testimonial-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #111;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-video-card {
  width: 100%;
  min-width: 0;
  height: clamp(390px, 45vw, 600px);
  transition:
    width 220ms ease,
    height 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 180ms ease;
}

.hero-video,
.testimonial-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.video-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, transparent 48%);
}

.sound-toggle {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.pip-close {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.opener-video-placeholder {
  display: none;
  min-width: 0;
}

.opener-video-placeholder.is-active {
  display: block;
}

.opener-pip-shell {
  position: fixed;
  z-index: 118;
  right: 18px;
  bottom: 110px;
  width: 360px;
  max-width: calc(100vw - 36px);
  aspect-ratio: 16 / 9;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease, transform 220ms ease;
}

.opener-pip-shell.is-active {
  opacity: 1;
  pointer-events: auto;
}

.opener-pip-shell .hero-video-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.opener-pip-shell .hero-video-card .video-caption {
  display: none;
}

.opener-pip-shell .hero-video-card .sound-toggle {
  top: 10px;
  right: 10px;
  min-height: 34px;
  padding: 8px 10px;
  font-size: 0.74rem;
}

.opener-pip-shell .hero-video-card .pip-close {
  display: grid;
}

.video-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}

.video-caption span,
.feature-grid span,
.price-row span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-caption strong {
  max-width: 440px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #111, var(--black));
}

.value-strip p {
  display: grid;
  place-items: center;
  min-height: 78px;
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.value-strip p:last-child {
  border-right: 0;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px clamp(18px, 4vw, 34px);
}

.aspiration {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  align-items: center;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
}

.aspiration h2 {
  max-width: 10.8ch;
}

.aspiration::before,
.aspiration::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aspiration::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.55) 45%, rgba(5, 5, 5, 0.9) 100%),
    url("assets/photos/Junior_Hip Hop_ATLB8714_Phil__edited.jpg") center / cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.38;
  transform: scale(1.04);
}

.aspiration::after {
  z-index: -1;
  background:
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.88));
}

.aspiration,
.section-heading,
.mentor-section,
.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
}

.aspiration {
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  gap: clamp(32px, 4vw, 56px);
}

.aspiration-copy {
  align-self: end;
  justify-self: end;
  max-width: 560px;
  padding-top: clamp(120px, 15vw, 230px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  line-height: 1.78;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.features,
.testimonials,
.audience-section,
.faq {
  color: var(--black);
  background:
    radial-gradient(circle at 82% 12%, rgba(5, 5, 5, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--paper), var(--mist));
}

.audience-section {
  position: relative;
  isolation: isolate;
  max-width: none;
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.92), transparent 22rem),
    radial-gradient(circle at 78% 14%, rgba(5, 5, 5, 0.1), transparent 25rem),
    linear-gradient(90deg, rgba(244, 244, 240, 0.96), rgba(244, 244, 240, 0.74) 52%, rgba(244, 244, 240, 0.95)),
    url("assets/photos/Screenshot 2026-04-20 at 7.57_edited.jpg") center / cover;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
}

.audience-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-section::after {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(244, 244, 240, 0.1), rgba(244, 244, 240, 0.72)),
    repeating-linear-gradient(90deg, rgba(5, 5, 5, 0.075) 0 1px, transparent 1px 16.66%);
  mix-blend-mode: multiply;
  opacity: 0.42;
}

.audience-section > * {
  position: relative;
  z-index: 1;
}

.features {
  position: relative;
  isolation: isolate;
  max-width: none;
  overflow: hidden;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 18rem),
    radial-gradient(circle at 82% 22%, rgba(5, 5, 5, 0.14), transparent 24rem),
    radial-gradient(circle at 45% 88%, rgba(5, 5, 5, 0.08), transparent 28rem),
    linear-gradient(135deg, rgba(244, 244, 240, 0.96), rgba(232, 232, 226, 0.82) 48%, rgba(248, 248, 245, 0.94));
}

.features::before,
.features::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(244, 244, 240, 0.78), rgba(244, 244, 240, 0.52)),
    url("assets/photos/Screenshot 2026-04-20 at 7.57_edited.jpg") center 54% / cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.2;
  transform: scale(1.03);
}

.features::after {
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(5, 5, 5, 0.055) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(5, 5, 5, 0.038) 0 1px, transparent 1px 86px),
    radial-gradient(circle at 32% 34%, rgba(255, 255, 255, 0.76), transparent 20rem),
    radial-gradient(circle at 76% 62%, rgba(5, 5, 5, 0.08), transparent 22rem);
  mix-blend-mode: multiply;
  opacity: 0.72;
}

.features .eyebrow,
.testimonials .eyebrow,
.audience-section .eyebrow,
.faq .eyebrow,
.pricing-section .eyebrow {
  color: rgba(5, 5, 5, 0.56);
}

.section-heading {
  align-items: end;
  margin-bottom: 48px;
}

.feature-heading {
  align-items: end;
}

.feature-heading-media {
  padding-top: clamp(48px, 5.2vw, 86px);
}

.feature-heading-media .eyebrow {
  margin-top: calc(clamp(48px, 5.2vw, 86px) * -1);
}

.feature-heading-media,
.audience-heading-media {
  display: grid;
  gap: 24px;
  align-self: end;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.features-photo,
.audience-photo {
  position: relative;
  height: clamp(250px, 30vw, 390px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--black);
}

.features-photo {
  height: clamp(240px, 25vw, 360px);
}

.features-photo::before,
.features-photo::after,
.audience-photo::before,
.audience-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features-photo::before,
.audience-photo::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.1) 48%, rgba(5, 5, 5, 0.58)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.68));
}

.features-photo::after,
.audience-photo::after {
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0.2;
}

.features-photo img,
.audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.features-photo figcaption,
.audience-photo figcaption {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  max-width: 390px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: blur(16px);
}

.audience-heading {
  align-items: end;
}

.audience-photo img {
  object-position: 52% center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 110px rgba(5, 5, 5, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(28px) saturate(1.28);
}

.feature-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12) 52%, rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.86),
    inset -1px -1px 0 rgba(5, 5, 5, 0.035),
    0 14px 38px rgba(5, 5, 5, 0.05);
  backdrop-filter: blur(24px) saturate(1.24);
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.18) 24%, transparent 46%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.58), transparent 7rem),
    radial-gradient(circle at 12% 88%, rgba(5, 5, 5, 0.045), transparent 8rem);
  opacity: 0.58;
}

.feature-grid span,
.price-row span {
  color: rgba(5, 5, 5, 0.46);
}

.feature-grid p,
.mentor-copy p,
.pricing-copy p,
.faq-list p,
.final-cta p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.features .feature-grid p,
.testimonials p,
.audience-section p,
.faq-list p {
  color: rgba(5, 5, 5, 0.66);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.mentor-section {
  position: relative;
  isolation: isolate;
  max-width: none;
  overflow: hidden;
  margin: 0;
  align-items: center;
  padding: 116px max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.08), transparent 22rem),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.055), transparent 28rem),
    linear-gradient(180deg, #050505, #030303);
}

.mentor-section::before,
.mentor-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mentor-section::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.62) 44%, rgba(5, 5, 5, 0.9)),
    url("assets/photos/Junior_Hip Hop_ATLB8714_Phil__edited.jpg") center 46% / cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.18;
  transform: scale(1.04);
}

.mentor-section::after {
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.052) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 35% 46%, rgba(255, 255, 255, 0.075), transparent 20rem);
  opacity: 0.68;
}

.mentor-photo {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite), var(--black));
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(1) contrast(1.12);
}

.mentor-copy {
  max-width: 620px;
}

.mentor-copy h2 {
  margin-bottom: 22px;
  line-height: 1;
}

.mentor-copy p {
  font-size: 1.04rem;
}

.mentor-copy .button {
  margin-top: 14px;
}

.testimonials {
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
  align-items: start;
}

.testimonial-video-card {
  aspect-ratio: 16 / 9;
}

.testimonial-video-card video {
  position: static;
}

.quote-stack {
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--header) + 22px);
}

.testimonial-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.testimonial-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.8rem, 5.4vw, 6.4rem);
}

.testimonial-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 1.04rem;
  line-height: 1.65;
}

blockquote {
  margin: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, var(--white), #e9e9e4);
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.08);
}

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.12;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
}

.audience-grid article {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px 16px;
  color: rgba(5, 5, 5, 0.92);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(5, 5, 5, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.08);
  font-weight: 850;
  line-height: 1.15;
}

.not-for {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 24px;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.not-for ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-section {
  max-width: none;
  margin: 0;
  align-items: center;
  padding: 116px max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  color: var(--black);
  background:
    radial-gradient(circle at 72% 28%, rgba(5, 5, 5, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--paper), #efefeb);
}

.pricing-copy {
  align-self: center;
  transform: translateY(10px);
}

.pricing-copy p {
  max-width: 620px;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 650;
}

.pricing-card {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(5, 5, 5, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 20px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-row span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-row s {
  justify-self: end;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 950;
  letter-spacing: 0;
  text-decoration-thickness: 0.12em;
  text-decoration-color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.price {
  margin: 18px 0 28px;
  text-align: center;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.88;
  font-weight: 950;
}

.price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  padding-right: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.pricing-card .button-light {
  color: var(--black);
}

.faq {
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
  margin-top: 36px;
}

details {
  background: linear-gradient(180deg, var(--white), #eaeae6);
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.05);
}

summary {
  padding: 24px;
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.inline-faq-cta {
  margin: 0 24px 24px;
}

.final-cta {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 100px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.88)),
    url("assets/photos/Junior_Hip Hop_ATLB8714_Phil__edited.jpg") center 42% / cover;
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta p {
  max-width: 640px;
  margin: 24px auto 34px;
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 52px) 96px;
  color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(180deg, #111, var(--black));
  border-top: 1px solid var(--line-strong);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 120;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: rgba(5, 5, 5, 0.84);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  width: 100%;
  color: var(--black);
  background: var(--white);
}

.sticky-join {
  position: fixed;
  z-index: 115;
  left: 50%;
  bottom: 18px;
  width: min(760px, calc(100vw - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 12px 12px 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(135%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 26px, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-join div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.sticky-join span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticky-join strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sticky-join .button {
  flex: 0 0 auto;
  min-height: 46px;
}

body.sticky-join-visible .sticky-join {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.legal-page {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.08), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--black);
  background-size: auto, auto, 76px 76px, 76px 76px, auto;
}

.legal-main {
  padding-top: var(--header);
}

.legal-hero {
  display: grid;
  align-content: end;
  min-height: 58vh;
  padding:
    clamp(86px, 12vw, 150px)
    max(clamp(18px, 5vw, 64px), calc((100vw - var(--max)) / 2 + 34px))
    clamp(48px, 8vw, 86px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.8)),
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.14), transparent 32rem);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.6rem);
  line-height: 0.88;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.legal-hero .button {
  width: fit-content;
}

.legal-content {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 34px) clamp(72px, 9vw, 120px);
}

.legal-content article,
.legal-note {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(5, 5, 5, 0.42);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px) saturate(120%);
}

.legal-content article {
  padding: clamp(22px, 3vw, 34px);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.legal-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-note {
  padding: 20px 24px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .aspiration,
  .section-heading,
  .mentor-section,
  .pricing-section,
  .testimonial-layout,
  .not-for {
    grid-template-columns: 1fr;
  }

  .aspiration h2 {
    max-width: 8.5ch;
  }

  .aspiration-copy {
    justify-self: stretch;
    max-width: none;
    padding-top: 0;
  }

  .hero {
    min-height: auto;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    display: flex;
    position: static;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .sticky-join {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding: 4px 14px;
    gap: 12px;
  }

  .brand {
    width: 138px;
    height: 60px;
  }

  .brand-logo {
    width: 138px;
    height: 60px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header) + 24px) 16px 34px;
    gap: 20px;
    background-size: auto;
  }

  .legal-page .site-header {
    grid-template-columns: auto auto;
  }

  .legal-nav {
    display: none;
  }

  .legal-hero {
    min-height: auto;
    padding: calc(var(--header) + 54px) 16px 48px;
  }

  .legal-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .legal-hero .button {
    width: 100%;
  }

  .legal-content {
    padding: 34px 16px 68px;
  }

  .hero-copy {
    order: 2;
    padding: 4px 0 0;
  }

  .hero-video-card {
    order: 1;
  }

  .opener-pip-shell {
    right: 12px;
    bottom: 76px;
    width: 300px;
    max-width: calc(100vw - 24px);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
    line-height: 0.92;
    margin-bottom: 14px;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero-text {
    max-width: 34rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions,
  .center-cta {
    display: grid;
  }

  .hero-actions {
    margin: 18px 0 12px;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .button {
    width: 100%;
  }

  .inline-faq-cta {
    width: calc(100% - 48px);
  }

  .hero-video-card {
    min-height: auto;
    aspect-ratio: 4 / 4.7;
    margin-top: 0;
  }

  .sound-toggle {
    top: 12px;
    right: 12px;
    font-size: 0.8rem;
  }

  .opener-pip-shell .hero-video-card .sound-toggle {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .video-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

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

  .value-strip p {
    min-height: 70px;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .features,
  .testimonials,
  .faq,
  .audience-section,
  .mentor-section,
  .pricing-section {
    padding: 64px 16px;
  }

  .aspiration {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .aspiration::before {
    opacity: 0.46;
    background-position: center;
  }

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

  .feature-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(278px, 84vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 16px 18px;
    margin-left: -16px;
    margin-right: -16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-heading-media {
    padding-top: 0;
  }

  .feature-heading-media .eyebrow {
    margin-top: 0;
  }

  .audience-grid {
    gap: 8px;
  }

  .audience-grid article {
    min-height: 74px;
    padding: 14px 16px;
  }

  .feature-grid article {
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: var(--radius);
    scroll-snap-align: start;
  }

  .features-photo,
  .audience-photo {
    min-height: 320px;
  }

  .features-photo img,
  .audience-photo img {
    object-position: 45% center;
  }

  .features-photo figcaption,
  .audience-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    font-size: 0.86rem;
  }

  .mentor-photo img {
    min-height: 360px;
  }

  .mentor-copy h2 {
    margin-bottom: 18px;
    line-height: 1.02;
  }

  .testimonial-video-card {
    aspect-ratio: 4 / 4.6;
  }

  .testimonial-heading {
    text-align: left;
  }

  .testimonial-heading h2 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .quote-stack {
    position: static;
  }

  .not-for {
    padding: 24px;
  }

  .pricing-card {
    padding: 24px;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
  }

  .price-row s {
    justify-self: end;
  }

  .pricing-copy {
    transform: none;
  }

  .final-cta {
    min-height: 560px;
    padding: 80px 16px 110px;
  }

  .site-footer {
    padding: 30px 16px 92px;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.2rem);
  }

  .trust-line {
    font-size: 0.84rem;
  }

  .hero-video-card {
    aspect-ratio: 4 / 4.4;
  }

  .feature-grid {
    grid-auto-columns: minmax(264px, 86vw);
  }

  .mobile-cta {
    padding: 9px;
  }

  summary {
    padding: 22px 20px;
  }

  details p {
    padding: 0 20px 22px;
  }

  .inline-faq-cta {
    width: calc(100% - 40px);
    margin: 0 20px 22px;
  }
}
