:root {
  --bg: #10100f;
  --bg-deep: #090909;
  --panel: #171716;
  --panel-soft: #20201e;
  --line: #33322d;
  --text: #f5f1e8;
  --muted: #b9b3a8;
  --subtle: #7f796e;
  --gold: #ffd400;
  --gold-deep: #c5a300;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #050505;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 212, 0, 0.1);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  background: #050505;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 212, 0, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(255, 212, 0, 0.08);
  color: var(--gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-cta {
  padding: 0.85rem 1.25rem;
  background: var(--gold);
  color: #050505 !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 118px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.96), rgba(16, 16, 15, 0.84) 45%, rgba(16, 16, 15, 0.5));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: 5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  background: var(--gold);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.accent-word {
  position: relative;
  display: inline-block;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255, 212, 0, 0.18);
  animation: gold-glow 2400ms ease-in-out infinite;
}

.accent-word::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.08em;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0.88;
  animation: gold-underline 2400ms ease-in-out infinite;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #070707;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.hero-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 310px;
  display: grid;
  place-items: center;
}

.hero-video {
  display: block;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border: 1px solid #222;
  background: #050505;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--gold);
  border-style: solid;
}

.corner-one {
  top: 24px;
  left: 0;
  border-width: 2px 0 0 2px;
}

.corner-two {
  right: 0;
  bottom: 24px;
  border-width: 0 2px 2px 0;
}

.player-strip {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto 180px minmax(180px, 420px);
  align-items: center;
  gap: 1.6rem;
  padding: 1rem max(20px, calc((100vw - var(--max)) / 2));
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.player-info small,
.section-heading p,
.feature-copy p,
.about-copy p,
.contact-box p,
.benefit-card p,
.episode-body span,
.site-footer p {
  color: var(--muted);
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.08);
}

.play-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #050505;
  cursor: pointer;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.play-button.is-playing::before {
  width: 12px;
  height: 15px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.wave {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wave span {
  width: 4px;
  height: 16px;
  background: var(--gold);
  opacity: 0.42;
  animation: pulse 900ms ease-in-out infinite;
}

.wave span:nth-child(2) { animation-delay: 80ms; }
.wave span:nth-child(3) { animation-delay: 160ms; }
.wave span:nth-child(4) { animation-delay: 240ms; }
.wave span:nth-child(5) { animation-delay: 320ms; }
.wave span:nth-child(6) { animation-delay: 400ms; }

.progress {
  height: 4px;
  background: #2b2b29;
  overflow: hidden;
}

.progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--gold);
}

.section {
  padding: 110px max(20px, calc((100vw - var(--max)) / 2));
}

.section:nth-of-type(odd) {
  background: #121211;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.text-link {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 4rem;
  align-items: center;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  aspect-ratio: 16 / 9;
  border: 1px solid #262520;
  background: #050505;
}

.video-card img,
.youtube-frame {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  object-fit: cover;
  opacity: 0.82;
}

.youtube-frame {
  display: block;
  opacity: 1;
}

.video-meta {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.benefit-grid,
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1.4rem;
}

.benefit-card,
.episode-card,
.contact-box {
  border: 1px solid var(--line);
  background: var(--panel);
}

.benefit-card {
  min-height: 260px;
  padding: 2rem;
}

.benefit-card span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
}

.episode-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.episode-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
}

.episode-card img,
.episode-video {
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.episode-video {
  display: block;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.episode-body {
  padding: 1.25rem;
}

.episode-body p {
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.episode-body h3 {
  min-height: 3.3rem;
  margin-bottom: 1rem;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 5rem;
  align-items: center;
}

.portrait {
  position: relative;
}

.portrait::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 70%;
  height: 70%;
  background: rgba(255, 212, 0, 0.25);
}

.portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.75);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact {
  display: grid;
  place-items: center;
}

.contact-box {
  width: min(860px, 100%);
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 3rem;
  align-items: start;
}

.site-footer p {
  max-width: 330px;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.copyright {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1.35);
  }
}

@keyframes gold-glow {
  0%, 100% {
    text-shadow: 0 0 18px rgba(255, 212, 0, 0.14);
  }
  50% {
    text-shadow: 0 0 34px rgba(255, 212, 0, 0.34);
  }
}

@keyframes gold-underline {
  0%, 100% {
    transform: scaleX(0.2);
    opacity: 0.45;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 170px 20px auto;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    background: #090909;
  }

  .nav-links.is-open {
    display: grid;
  }

  .header-social {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .feature-grid,
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-inner {
    padding: 4rem 0;
  }

  .hero-card {
    min-height: 280px;
  }

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

  .player-strip {
    grid-template-columns: 1fr auto;
  }

  .wave,
  .progress {
    grid-column: 1 / -1;
  }

  .benefit-grid,
  .episode-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  .site-footer {
    display: grid;
  }

  .footer-social {
    justify-content: start;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .site-footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding-top: 86px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .btn {
    width: 100%;
  }

  .video-card,
  .video-card img,
  .youtube-frame {
    min-height: 300px;
  }

  .hero-card {
    min-height: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .accent-word,
  .accent-word::after {
    animation: none;
  }
}
