@font-face {
  font-family: "MotionSans";
  src: url("./assets/font.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #000;
  --white: #fff;
  --muted: #9ca3af;
  --soft: #d1d5db;
  --line: rgba(255, 255, 255, .10);
  --panel: rgba(255, 255, 255, .02);
  --purple: #9333ea;
  --purple-soft: rgba(216, 180, 254, .62);
  --coach-rgb: 168, 85, 247;
  --coach-soft-rgb: 216, 180, 254;
  --coach-contrast-rgb: 147, 51, 234;
  --cursor-rgb: 168, 85, 247;
}

.theme-ventura {
  --coach-rgb: 168, 85, 247;
  --coach-soft-rgb: 216, 180, 254;
  --coach-contrast-rgb: 147, 51, 234;
  --cursor-rgb: 168, 85, 247;
}

.theme-vey {
  --coach-rgb: 192, 132, 252;
  --coach-soft-rgb: 237, 221, 255;
  --coach-contrast-rgb: 168, 85, 247;
  --cursor-rgb: 192, 132, 252;
}

.theme-gordie {
  --coach-rgb: 96, 190, 255;
  --coach-soft-rgb: 255, 218, 92;
  --coach-contrast-rgb: 30, 144, 255;
  --cursor-rgb: 96, 190, 255;
}

.theme-isaiha {
  --coach-rgb: 239, 68, 68;
  --coach-soft-rgb: 248, 113, 113;
  --coach-contrast-rgb: 185, 28, 28;
  --cursor-rgb: 239, 68, 68;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: MotionSans, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 15%, rgba(88, 28, 135, .19), transparent 30rem),
    radial-gradient(circle at 52% 38%, rgba(30, 64, 175, .10), transparent 34rem),
    radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    #000;
  background-size: auto, auto, 24px 24px, auto;
  color: var(--white);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(var(--cursor-rgb), .085), transparent 18rem);
  opacity: .7;
  mix-blend-mode: screen;
}

body.theme-gordie {
  background:
    radial-gradient(circle at 44% 15%, rgba(96, 190, 255, .18), transparent 30rem),
    radial-gradient(circle at 68% 40%, rgba(255, 218, 92, .10), transparent 34rem),
    radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    #000;
  background-size: auto, auto, 24px 24px, auto;
}

body.theme-isaiha {
  background:
    radial-gradient(circle at 48% 14%, rgba(239, 68, 68, .18), transparent 30rem),
    radial-gradient(circle at 60% 42%, rgba(185, 28, 28, .12), transparent 34rem),
    radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    #000;
  background-size: auto, auto, 24px 24px, auto;
}

body.theme-vey {
  background:
    radial-gradient(circle at 48% 14%, rgba(192, 132, 252, .18), transparent 30rem),
    radial-gradient(circle at 58% 42%, rgba(237, 221, 255, .07), transparent 34rem),
    radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    #000;
  background-size: auto, auto, 24px 24px, auto;
}

body.theme-ventura::before,
body.theme-vey::before,
body.theme-gordie::before,
body.theme-isaiha::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(var(--cursor-rgb), .10), transparent 18rem);
}

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

.site {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav {
  padding: 20px 24px;
}

.nav-inner,
.container,
.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 16px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -.01em;
}

.brand img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 7px;
  box-shadow: 0 0 22px rgba(168,85,247,.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #9ca3af;
  font-size: 14px;
}

.nav-links a:not(.pill):hover,
.footer a:hover { color: #fff; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 7px 14px;
  font-size: 12px;
  transition: .2s ease;
}

.pill:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 92px 0 96px;
  text-align: center;
}

.hero::before,
.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(860px, 82vw);
  height: min(520px, 58vw);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(126, 34, 206, .18), rgba(88, 28, 135, .08) 38%, transparent 72%);
  filter: blur(34px);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.cta::before {
  height: min(620px, 68vw);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(126, 34, 206, .16), rgba(30, 64, 175, .055) 42%, transparent 74%);
}

.eyebrow {
  margin: 0;
  color: var(--purple-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
}

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

.motion-title {
  margin-top: 24px;
  font-size: clamp(72px, 13vw, 160px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.025em;
}

.text-purple-grad {
  background: linear-gradient(180deg, #fff 0%, rgb(var(--coach-soft-rgb)) 52%, rgb(var(--coach-rgb)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  width: min(100%, 576px);
  margin: 32px auto 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.65;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  border-radius: 999px;
  background: #9333ea;
  color: white;
  padding: 11px 20px;
  font-size: 14px;
  transition: .2s ease;
}

.primary:hover { background: #a855f7; }

section {
  padding: 80px 0;
}

.video-section {
  padding: 0 0 96px;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: min(100%, 960px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 28px 90px rgba(88, 28, 135, .18);
}

.video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.10), transparent 28%, transparent 72%, rgba(168,85,247,.12));
  z-index: 1;
}

.vsl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.025em;
}

.section-head span {
  flex-shrink: 0;
  color: var(--purple-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.section-copy {
  max-width: 680px;
  margin-top: -28px;
  margin-bottom: 36px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.65;
}

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

.card,
.proof,
.quote,
.fit-card,
.plan {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.card {
  padding: 24px;
  transition: .25s ease;
}

.card:hover,
.plan:hover {
  border-color: rgba(168, 85, 247, .50);
  background: rgba(168,85,247,.055);
  transform: translateY(-3px);
}

.num {
  color: var(--purple-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.card h3,
.fit-card h3 {
  margin-top: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.01em;
}

.card p {
  margin-top: 8px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.65;
}

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

.proof {
  overflow: hidden;
  min-height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s ease, filter .35s ease;
}

.proof:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.quote {
  max-width: 768px;
  overflow: hidden;
  border-color: rgba(168,85,247,.28);
  background: linear-gradient(180deg, rgba(168,85,247,.055), rgba(255,255,255,.01));
}

.quote-inner {
  padding: 48px;
}

.mark {
  display: block;
  color: rgba(192, 132, 252, .42);
  font-size: 92px;
  line-height: .65;
  user-select: none;
}

.quote article {
  margin-top: 12px;
  display: grid;
  gap: 24px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.7;
}

.quote article p:first-child {
  color: #fff;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.35;
}

.quote article p:last-child {
  color: #fff;
  font-weight: 650;
}

.founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.founder img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.founder p:first-child { color: #fff; }
.founder p:last-child {
  margin-top: 4px;
  color: rgba(216, 180, 254, .75);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

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

.coach-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.coach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 42%, rgba(0,0,0,.38) 100%),
    radial-gradient(circle at 50% 28%, rgba(216,180,254,.20), transparent 12rem);
  z-index: 1;
}

.coach-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(var(--coach-rgb),.28), rgba(var(--coach-soft-rgb),.20), transparent 34%);
  opacity: 0;
  transform: rotate(-35deg);
  transition: opacity .35s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.coach-card:hover,
.coach-card:focus-visible {
  border-color: rgba(var(--coach-rgb),.58);
  background: rgba(var(--coach-rgb),.055);
  box-shadow: 0 24px 80px rgba(var(--coach-contrast-rgb),.26);
  transform: translateY(-8px);
  outline: none;
}

.coach-card:hover::after,
.coach-card:focus-visible::after {
  opacity: 1;
  transform: rotate(18deg);
}

.coach-photo {
  position: absolute;
  left: 50%;
  top: 62px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(var(--coach-soft-rgb),.36);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  box-shadow: 0 18px 60px rgba(var(--coach-contrast-rgb),.26);
  transform: translateX(-50%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, box-shadow .3s ease;
}

.coach-photo img {
  width: 96px;
  height: 96px;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  filter: saturate(.95) brightness(.92);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.coach-card:hover .coach-photo,
.coach-card:focus-visible .coach-photo {
  border-color: rgba(var(--coach-soft-rgb),.70);
  box-shadow: 0 24px 78px rgba(var(--coach-rgb),.34);
  transform: translateX(-50%) translateY(-8px) scale(1.04);
}

.coach-card:hover .coach-photo img,
.coach-card:focus-visible .coach-photo img {
  filter: saturate(1.08) brightness(1);
  transform: scale(1.08) rotate(2deg);
}

.coach-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 6px;
  text-align: center;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.coach-card:hover .coach-info,
.coach-card:focus-visible .coach-info {
  transform: translateY(-4px);
}

.coach-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.coach-role {
  color: rgba(var(--coach-soft-rgb),.82);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.coach-page {
  min-height: auto;
  padding: 52px 0 12px;
}

.coach-profile {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 44px;
  align-items: center;
}

.coach-portrait {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(var(--coach-rgb),.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--coach-soft-rgb),.20), transparent 13rem),
    radial-gradient(circle at 52% 62%, rgba(var(--coach-rgb),.10), transparent 15rem),
    rgba(255,255,255,.02);
  box-shadow: 0 28px 100px rgba(var(--coach-contrast-rgb),.24);
}

.coach-portrait img {
  width: min(190px, 46%);
  height: auto;
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(var(--coach-soft-rgb),.42);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 22px 80px rgba(0,0,0,.42), 0 0 48px rgba(var(--coach-rgb),.20);
}

.face-focus-vey {
  object-position: 63% 30%;
}

.face-focus-isaiha {
  object-position: 50% 62%;
}

.coach-detail-copy .eyebrow {
  margin-bottom: 18px;
}

.coach-detail-copy h1 {
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
  padding-bottom: .06em;
}

.coach-detail-copy p {
  max-width: 640px;
  margin-top: 18px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
}

.coach-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.back-link {
  display: inline-flex;
  color: rgba(var(--coach-soft-rgb),.92);
  font-size: 14px;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(var(--coach-soft-rgb),.28);
  border-radius: 999px;
  background: rgba(var(--coach-rgb),.07);
  color: #fff;
  padding: 8px 13px;
  font-size: 13px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.back-link:hover,
.scroll-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.scroll-link:hover {
  border-color: rgba(var(--coach-soft-rgb),.50);
  background: rgba(var(--coach-rgb),.13);
  transform: translateY(-2px);
  text-decoration: none;
}

.coach-section {
  padding: 18px 0 64px;
}

.coach-section .section-head {
  margin-bottom: 30px;
}

.coach-story {
  padding-bottom: 34px;
}

.story-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 28px;
  align-items: center;
  max-width: 1060px;
  border: 1px solid rgba(var(--coach-rgb),.26);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--coach-soft-rgb),.13), transparent 16rem),
    radial-gradient(circle at 88% 100%, rgba(var(--coach-rgb),.09), transparent 15rem),
    rgba(255,255,255,.02);
  padding: 34px;
}

.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.045), transparent 46%);
  opacity: .75;
}

.story-copy,
.story-photo {
  position: relative;
  z-index: 1;
}

.story-panel p {
  position: relative;
  max-width: 780px;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.75;
}

.story-photo {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(var(--coach-soft-rgb),.28);
  border-radius: 14px;
  background: #050505;
  box-shadow: 0 22px 80px rgba(0,0,0,.35);
}

.story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.story-panel:hover .story-photo img {
  filter: brightness(1.06) saturate(1.05);
  transform: scale(1.045);
}

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

.channel-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 680px;
}

.channel-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  border: 1px solid rgba(var(--coach-rgb),.18);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  padding: 18px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 50%, rgba(var(--coach-soft-rgb),.20), transparent 13rem),
    linear-gradient(110deg, transparent 28%, rgba(255,255,255,.045), transparent 55%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.channel-card:hover,
.channel-card:focus-visible {
  border-color: rgba(var(--coach-rgb),.58);
  background: rgba(var(--coach-rgb),.05);
  box-shadow: 0 18px 70px rgba(var(--coach-contrast-rgb),.20);
  transform: translateY(-5px);
  outline: none;
}

.channel-card:hover::before,
.channel-card:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.channel-card img {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(var(--coach-soft-rgb),.38);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 42px rgba(0,0,0,.34);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), filter .3s ease;
}

.channel-card:hover img,
.channel-card:focus-visible img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.08) rotate(-2deg);
}

.channel-copy,
.channel-count {
  position: relative;
  z-index: 1;
}

.channel-copy {
  display: grid;
  gap: 4px;
}

.channel-name {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.channel-handle {
  color: rgba(var(--coach-soft-rgb),.76);
  font-size: 13px;
}

.channel-count {
  justify-self: end;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d1d5db;
  padding: 8px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.photo-board-section {
  padding-top: 18px;
}

.photo-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

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

.photo-board-two {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 2px dashed rgba(var(--coach-rgb),.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--coach-soft-rgb),.11), transparent 14rem),
    rgba(255,255,255,.02);
  color: rgba(229,231,235,.78);
  font-size: 18px;
}

.board-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
  border: 3px solid rgba(var(--coach-rgb),.46);
  border-radius: 10px;
  background: #050505;
  box-shadow: 0 22px 70px rgba(0,0,0,.46), 0 0 0 1px rgba(var(--coach-soft-rgb),.14);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, filter .35s ease;
}

.board-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%, transparent 70%, rgba(var(--coach-rgb),.15));
  z-index: 1;
}

.board-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.photo-focus-isaiha-close {
  object-position: 52% 38%;
}

.photo-focus-isaiha-horse {
  object-position: 50% 38%;
}

.board-photo-wide {
  grid-column: span 2;
}

.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }
.tilt-left-soft { transform: rotate(-1.8deg); }
.tilt-right-soft { transform: rotate(1.8deg); }

.board-photo:hover {
  z-index: 2;
  filter: brightness(1.04);
  box-shadow: 0 30px 90px rgba(var(--coach-contrast-rgb),.34), 0 0 0 1px rgba(var(--coach-soft-rgb),.24);
  transform: rotate(0deg) translateY(-8px) scale(1.025);
}

.board-photo:hover img {
  transform: scale(1.045);
}

.fit-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: border-color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.fit-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 180, 254, .13), transparent 12rem),
    linear-gradient(120deg, transparent 15%, rgba(255,255,255,.045), transparent 42%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.fit-card:hover {
  border-color: rgba(168, 85, 247, .42);
  background: rgba(168, 85, 247, .045);
  box-shadow: 0 18px 60px rgba(88, 28, 135, .16);
  transform: translateY(-4px);
}

.fit-card:hover::before,
.fit-card.is-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.fit-card h3 {
  position: relative;
  margin-top: 0;
  transition: color .3s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
}

.fit-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
}

.fit-card li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .55s cubic-bezier(.2, .8, .2, 1), transform .55s cubic-bezier(.2, .8, .2, 1), color .25s ease;
}

.fit-card.is-visible h3 {
  transform: translateY(0);
}

.fit-card.is-visible li {
  opacity: 1;
  transform: translateX(0);
}

.fit-card:hover h3 {
  color: #f5e8ff;
  transform: translateX(2px);
}

.fit-card:hover li {
  color: #fff;
}

.fit-card li span:first-child {
  flex: 0 0 auto;
  color: #d8b4fe;
}

.fit-card.muted li { color: #9ca3af; }
.fit-card.muted li span:first-child { color: #6b7280; }
.fit-card.muted:hover li { color: #d1d5db; }

.cta {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding-bottom: 104px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168,85,247,.32);
  border-radius: 999px;
  background: rgba(168,85,247,.05);
  color: #e9d5ff;
  padding: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.cta h2 {
  max-width: 920px;
  margin: 40px auto 0;
  padding-bottom: 8px;
  font-size: clamp(54px, 8.3vw, 96px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.cta p {
  max-width: 576px;
  margin: 20px auto 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.65;
}

.big-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 72px;
  margin-top: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 18px;
  transition: transform .2s ease;
}

.big-button::before {
  content: "";
  position: absolute;
  inset: -80%;
  background: conic-gradient(from 90deg, #4c1d95, #a855f7, #fff, #7e22ce, #4c1d95);
  animation: spin 4s linear infinite;
  z-index: -2;
}

.big-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #09020f;
  z-index: -1;
}

.big-button:hover { transform: scale(1.03); }

.pricing-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: #9ca3af;
  font-size: 14px;
}

.pricing-link:hover {
  color: #d8b4fe;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pricing-hero {
  padding: 92px 0 96px;
  text-align: center;
}

.pricing-hero h1 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 760;
  letter-spacing: -.025em;
}

.pricing-hero p {
  max-width: 448px;
  margin: 16px auto 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.55;
}

.plans {
  width: min(100%, 704px);
  margin: 72px auto 0;
  display: grid;
  gap: 16px;
}

.plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  text-align: left;
  transition: .25s ease;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price strong {
  color: #fff;
  font-size: 32px;
  font-weight: 450;
}

.price span {
  color: #9ca3af;
  font-size: 16px;
}

.discount {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, .15);
  color: #6ee7b7;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.plan p {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 14px;
}

.arrow {
  color: #d8b4fe;
  font-size: 24px;
  transition: transform .2s ease;
}

.plan:hover .arrow { transform: translateX(4px); }

.pricing-note {
  margin-top: 40px;
  color: #6b7280;
  font-size: 14px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  color: #6b7280;
  font-size: 14px;
  padding: 40px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer .brand { color: #d1d5db; }
.footer-links {
  display: flex;
  gap: 20px;
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

@keyframes glowPulse {
  from {
    opacity: .55;
    transform: translate(-50%, -50%) scale(.96);
  }
  to {
    opacity: .9;
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero .container,
.pricing-hero .container {
  animation: heroIn .9s cubic-bezier(.2, .8, .2, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}

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

.reveal-stagger > * {
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

@media (max-width: 760px) {
  .nav-links a:not(.pill) { display: none; }
  .hero { padding-top: 80px; }
  .video-section { padding-bottom: 48px; }
  .section-head {
    display: block;
  }
  .section-head span {
    display: block;
    margin-top: 12px;
  }
  .grid-two,
  .proof-grid,
  .coach-grid {
    grid-template-columns: 1fr;
  }
  .coach-card { min-height: 360px; }
  .coach-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .channel-grid {
    grid-template-columns: 1fr;
  }
  .story-panel {
    grid-template-columns: 1fr;
  }
  .story-photo {
    max-width: 360px;
  }
  .channel-card {
    grid-template-columns: auto 1fr;
  }
  .channel-count {
    grid-column: 2;
    justify-self: start;
    width: fit-content;
  }
  .photo-board {
    grid-template-columns: 1fr;
  }
  .board-photo,
  .board-photo-wide {
    grid-column: auto;
    min-height: 300px;
  }
  .quote-inner { padding: 32px; }
  .cta h2 { font-size: 48px; }
  .big-button {
    width: 280px;
    height: 64px;
    font-size: 16px;
  }
  .plan { padding: 24px; }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
