:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffd400;
  --line: rgba(255, 255, 255, 0.16);
  --muted: rgba(255, 255, 255, 0.76);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 20%, #fff 0.5px, transparent 1px);
  background-size: 3px 3px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-dark {
  background: #060606;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5.8vw, 5.1rem);
  line-height: 1.02;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin-bottom: 24px;
}

p {
  color: var(--muted);
}

.text-yellow {
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-audio-mark {
  position: absolute;
  left: -3%;
  top: 9%;
  width: 106%;
  height: min(52vh, 440px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260'%3E%3Cpath d='M0 130 C60 44 140 216 210 130 C280 44 360 216 430 130 C500 44 580 216 650 130 C720 44 800 216 870 130 C940 44 1020 216 1090 130 C1140 70 1180 100 1200 130' stroke='rgba(255,212,0,0.42)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260'%3E%3Cpath d='M0 150 C80 246 140 54 220 150 C300 246 360 54 440 150 C520 246 580 54 660 150 C740 246 800 54 880 150 C960 246 1020 54 1100 150 C1140 182 1180 170 1200 150' stroke='rgba(255,255,255,0.22)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 980px 46%, 1160px 46%;
  background-position: 0 28%, 0 72%;
  filter: blur(0.4px);
  animation: watermarkWaveShift 20s linear infinite;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.eyebrow-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 2px;
}

.eyebrow-link:hover {
  text-decoration-color: rgba(255, 212, 0, 0.9);
}

.trainer {
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 64ch;
  margin: 22px 0 24px;
}

.hero-price {
  margin-bottom: 10px;
}

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

.amount {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
}

.urgency {
  margin: 0 0 24px;
  color: var(--white);
}

.urgency strong {
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 212, 0, 0.25);
  background: #ffe14f;
}

.register-wrap {
  max-width: 760px;
}

.register-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  max-width: 18ch;
}

.register-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
}

.form-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 12px 13px;
  font: inherit;
}

.form-field:focus {
  outline: none;
  border-color: rgba(255, 212, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.14);
}

textarea.form-field {
  resize: vertical;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.consent-row input {
  margin-top: 3px;
}

.register-btn {
  width: fit-content;
}

.form-status {
  margin-top: 12px;
  color: var(--muted);
}

.register-note {
  margin-top: 18px;
  margin-bottom: 0;
}

.back-link-wrap {
  margin-top: 18px;
}

.back-link {
  color: var(--yellow);
  text-decoration: none;
}

.wavefield {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0.16;
  z-index: 1;
}

.wavefield span {
  width: 3px;
  border-radius: 999px;
  background: var(--yellow);
  animation: wave 2.1s ease-in-out infinite;
}

.wavefield span:nth-child(1) { height: 42px; }
.wavefield span:nth-child(2) { height: 86px; animation-delay: 0.12s; }
.wavefield span:nth-child(3) { height: 140px; animation-delay: 0.24s; }
.wavefield span:nth-child(4) { height: 190px; animation-delay: 0.36s; }
.wavefield span:nth-child(5) { height: 140px; animation-delay: 0.48s; }
.wavefield span:nth-child(6) { height: 86px; animation-delay: 0.6s; }
.wavefield span:nth-child(7) { height: 42px; animation-delay: 0.72s; }

.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.strip-grid p {
  color: var(--white);
  font-weight: 600;
  text-align: center;
}

.brand-links {
  padding: 32px 0 18px;
}

.brand-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brand-links-title {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.brand-link-card {
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 212, 0, 0.12), transparent 44%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.brand-link-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.brand-link-card p {
  color: var(--muted);
}

.brand-link-card .kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.brand-link-card span {
  margin-top: 2px;
  color: var(--yellow);
  font-weight: 700;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  display: grid;
}

.map-card iframe {
  width: 100%;
  min-height: 318px;
  border: 0;
  display: block;
  filter: grayscale(0.08) saturate(0.88) contrast(1.02);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.map-link:hover {
  background: rgba(255, 212, 0, 0.08);
}

.audience-block {
  padding-top: 34px;
  padding-bottom: 34px;
}

.audience-card {
  border: 1px solid rgba(255, 212, 0, 0.9);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--yellow);
  color: #111;
  box-shadow: 0 18px 36px rgba(255, 212, 0, 0.2);
}

.audience-card h2 {
  margin-bottom: 12px;
  color: #111;
}

.audience-card p + p {
  margin-top: 10px;
}

.audience-card p {
  color: rgba(17, 17, 17, 0.86);
}

.grid {
  display: grid;
  gap: 16px;
}

.learn-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.include-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, 0.55);
}

.icon {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.timeline-item h3 {
  margin-bottom: 12px;
}

.timeline-item ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.timeline-item li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.timeline-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.split-top {
  align-items: start;
}

.bio-copy p + p {
  margin-top: 12px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 16px 0;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.highlight {
  color: var(--white);
  font-weight: 700;
}

.photo {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}

.studio-carousel {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #101010, #050505);
}

.carousel-track {
  position: relative;
  min-height: 340px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.carousel-slide img[src=""],
.carousel-slide img:not([src]) {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1.4rem;
  line-height: 1;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-btn:hover {
  border-color: rgba(255, 212, 0, 0.7);
  color: var(--yellow);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.dot.is-active {
  background: var(--yellow);
}

.studio-placeholder {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 212, 0, 0.2), transparent 34%),
    linear-gradient(135deg, #0f0f0f, #040404);
}

.story-photo {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #070707;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center 62%;
  filter: brightness(0.58) saturate(0.52) contrast(1.08);
}

.story-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--yellow);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.milestone-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.milestone-list li {
  color: var(--muted);
  position: relative;
  padding-left: 16px;
}

.milestone-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.career-block {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.career-block h3 {
  margin-bottom: 10px;
}

.price-section {
  text-align: center;
}

.price-card {
  max-width: 470px;
  margin: 22px auto 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.08), rgba(255, 255, 255, 0.02));
}

.normal {
  margin-top: 6px;
  text-decoration: line-through;
}

.limited {
  margin-top: 7px;
  color: var(--yellow);
  font-weight: 700;
}

.streaming-note {
  margin-top: 10px;
}

.streaming-note a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.streaming-note a:hover {
  text-decoration: underline;
}

.final-cta {
  text-align: center;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.76;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@keyframes watermarkWaveShift {
  from {
    background-position: 0 28%, 0 72%;
  }
  to {
    background-position: 980px 28%, -1160px 72%;
  }
}

@media (max-width: 1080px) {
  .learn-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .include-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 76px 0;
  }

  .strip-grid,
  .timeline,
  .split {
    grid-template-columns: 1fr;
  }

  .learn-grid,
  .include-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-links-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-audio-mark {
    left: -7%;
    top: 12%;
    width: 114%;
    height: min(38vh, 290px);
    opacity: 0.16;
  }
}

@media (max-width: 560px) {
  .learn-grid,
  .include-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .story-photo figcaption {
    font-size: 0.62rem;
  }

  .milestone-list {
    grid-template-columns: 1fr;
  }

  .hero-audio-mark {
    top: 16%;
    height: 210px;
    opacity: 0.13;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-audio-mark {
    animation: none;
  }
}
