:root {
  color-scheme: light;
  --ink: #071634;
  --navy: #071f57;
  --night: #041331;
  --gold: #ffd84d;
  --sun: #ff8a1f;
  --mint: #3fc37b;
  --violet: #7156d9;
  --rose: #e85d75;
  --paper: #fffaf0;
  --mist: #f3f8f6;
  --line: rgba(7, 22, 52, 0.12);
  --soft-line: rgba(7, 22, 52, 0.08);
  --shadow: 0 24px 70px rgba(7, 22, 52, 0.13);
  --content: min(1160px, calc(100vw - 40px));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f5fbf8 42%, #fff4dc 100%);
  color: var(--ink);
}

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

p,
h1,
h2,
h3,
li,
span {
  overflow-wrap: anywhere;
}

.coach-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
}

.coach-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(7, 22, 52, 0.12);
  border-radius: 50%;
  background: var(--navy);
}

.brand-logo img {
  width: 100%;
  height: 100%;
}

.privacy-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(7, 22, 52, 0.1);
  border-radius: 999px;
  padding: 0 14px;
  background: white;
  color: rgba(7, 22, 52, 0.68);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(7, 22, 52, 0.06);
}

.subscribe-link {
  color: var(--night);
  text-decoration: none;
}

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

.page-actions span {
  color: rgba(7, 22, 52, 0.64);
  font-size: 0.92rem;
  font-weight: 800;
}

.cta-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--night);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(7, 22, 52, 0.12);
}

.coach-hero,
.selector-section,
.practice-board,
.fundamentals,
.lesson-lab,
.progress-path,
.subscribe-band,
.coach-footer {
  width: var(--content);
  margin: 0 auto;
}

.coach-hero {
  display: grid;
  min-height: min(760px, calc(100svh - 72px));
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.46fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 48px 0 64px;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 7.6vw, 6.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.hero-copy > p:last-child,
.section-heading > p:last-child,
.today-panel p,
.selected-coach-note {
  color: rgba(7, 22, 52, 0.7);
  line-height: 1.62;
}

.hero-copy > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.coach-stage {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(7, 22, 52, 0.1);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.coach-frame {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  place-items: end center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 216, 77, 0.42), transparent 34%),
    linear-gradient(180deg, #fff8e7 0%, #eef9f6 100%);
}

.coach-portrait {
  width: min(96%, 390px);
  max-height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(7, 22, 52, 0.18));
}

.stage-label {
  margin: 0 0 6px;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-coach-name {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

.selected-coach-note {
  margin: 12px 0 0;
}

.selector-section,
.fundamentals,
.lesson-lab,
.progress-path {
  padding: 78px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
}

.coach-selector {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.coach-card {
  display: grid;
  min-height: 270px;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 16px 42px rgba(7, 22, 52, 0.06);
}

.coach-card.active {
  border-color: rgba(255, 138, 31, 0.52);
  background: var(--paper);
}

.coach-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.coach-card span {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
}

.coach-card small {
  display: block;
  margin-top: 12px;
  color: rgba(7, 22, 52, 0.62);
  font-size: 0.96rem;
  font-weight: 750;
}

.practice-board {
  display: grid;
  margin-top: 86px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
  border-radius: 8px;
}

.today-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.today-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.today-panel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.level-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.level-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.level-button.active {
  background: var(--gold);
  color: var(--night);
}

.workout-list {
  display: grid;
  gap: 10px;
}

.workout-list label {
  display: grid;
  min-height: 76px;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.workout-list input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--mint);
}

.workout-list span {
  color: rgba(7, 22, 52, 0.72);
  line-height: 1.48;
}

.workout-list strong {
  display: block;
  color: var(--ink);
}

.practice-status {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--mint);
  color: var(--night);
  font-weight: 950;
}

.fundamental-grid,
.lesson-grid {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fundamental-grid article,
.lesson-card {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(7, 22, 52, 0.06);
}

.fundamental-grid article {
  min-height: 235px;
  padding: 22px;
}

.fundamental-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.fundamental-grid article:nth-child(3n + 2) span {
  background: var(--sun);
  color: var(--night);
}

.fundamental-grid article:nth-child(3n + 3) span {
  background: var(--mint);
  color: var(--night);
}

.fundamental-grid h3,
.lesson-copy h3,
.week-rail strong {
  margin-top: 30px;
  font-size: 1.28rem;
  line-height: 1.08;
}

.fundamental-grid p,
.lesson-copy li,
.week-rail span {
  color: rgba(7, 22, 52, 0.68);
  line-height: 1.58;
}

.fundamental-grid p {
  margin: 12px 0 0;
}

.lesson-card {
  overflow: hidden;
}

.demo-stage {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 216, 77, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    var(--night);
}

.demo-stage::before {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.count-strip {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}

.count-strip span {
  display: grid;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
}

.count-strip span.active {
  background: var(--gold);
  color: var(--night);
}

.coach-video {
  position: absolute;
  inset: 54px 0 48px;
  display: grid;
  place-items: end center;
}

.motion-rings {
  position: absolute;
  bottom: 16px;
  width: 230px;
  height: 56px;
  border: 1px solid rgba(255, 216, 77, 0.24);
  border-radius: 50%;
  animation: ringPulse 1.2s ease-in-out infinite;
}

.demo-coach {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  width: min(72%, 260px);
  max-height: 285px;
  object-fit: contain;
  transform-origin: 50% 92%;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.28));
}

.sprite-dancer {
  position: absolute;
  bottom: 14px;
  z-index: 3;
  width: min(82%, 286px);
  height: 286px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 400% 100%;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.28));
  animation: spriteDance 1.15s steps(1, end) infinite;
}

.sprite-chand-beat {
  background-image: url("assets/chand-beat-bounce-sheet.png?v=1");
}

.sprite-chand-side {
  background-image: url("assets/chand-side-step-sheet.png?v=1");
}

.sprite-chand-arm {
  background-image: url("assets/chand-arm-flow-sheet.png?v=1");
}

.sprite-dristi-shoulder {
  background-image: url("assets/dristi-shoulder-sheet.png?v=1");
}

.sprite-dristi-hip {
  background-image: url("assets/dristi-hip-shift-sheet.png?v=1");
}

.sprite-dristi-routine {
  background-image: url("assets/dristi-routine-sheet.png?v=1");
}

.sprite-dancer + .demo-coach {
  display: none;
}

.coach-video::before,
.coach-video::after {
  position: absolute;
  z-index: 1;
  color: rgba(255, 216, 77, 0.64);
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
  animation: arrowPulse 1.2s ease-in-out infinite;
}

.coach-video::before {
  left: 18px;
  top: 44%;
  content: "<";
}

.coach-video::after {
  right: 18px;
  top: 44%;
  animation-delay: 0.45s;
  content: ">";
}

.body-cue,
.foot-cue {
  position: absolute;
  z-index: 3;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 216, 77, 0.12);
  pointer-events: none;
}

.body-cue {
  border-radius: 999px;
}

.cue-head {
  bottom: 238px;
  left: calc(50% - 11px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.cue-shoulders {
  bottom: 188px;
  left: calc(50% - 48px);
  width: 96px;
  height: 12px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(63, 195, 123, 0.12);
}

.cue-hips {
  bottom: 112px;
  left: calc(50% - 34px);
  width: 68px;
  height: 14px;
  background: var(--sun);
  box-shadow: 0 0 0 6px rgba(255, 138, 31, 0.12);
}

.foot-cue {
  bottom: 22px;
  width: 32px;
  height: 10px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(232, 93, 117, 0.12);
}

.foot-left {
  left: calc(50% - 48px);
}

.foot-right {
  left: calc(50% + 16px);
}

.move-beat .demo-coach,
.move-beat .cue-head,
.move-beat .cue-shoulders,
.move-beat .cue-hips {
  animation: beatBounce 1.05s ease-in-out infinite;
}

.move-beat .foot-cue {
  animation: footPress 1.05s ease-in-out infinite;
}

.move-shoulder .demo-coach,
.move-shoulder .cue-shoulders {
  animation: shoulderGroove 1.35s ease-in-out infinite;
}

.move-shoulder .cue-hips,
.move-shoulder .foot-cue {
  animation: quietPulse 1.35s ease-in-out infinite;
}

.move-side .demo-coach,
.move-side .cue-head,
.move-side .cue-shoulders,
.move-side .cue-hips {
  animation: sideStep 1.45s ease-in-out infinite;
}

.move-side .foot-left {
  animation: stepLeft 1.45s ease-in-out infinite;
}

.move-side .foot-right {
  animation: stepRight 1.45s ease-in-out infinite;
}

.move-hip .demo-coach,
.move-hip .cue-hips {
  animation: hipShift 1.35s ease-in-out infinite;
}

.move-hip .cue-shoulders {
  animation: quietPulse 1.35s ease-in-out infinite;
}

.move-arm .demo-coach {
  animation: armFlowCoach 1.55s ease-in-out infinite;
}

.move-arm .cue-shoulders {
  animation: armWave 1.55s ease-in-out infinite;
}

.move-arm .cue-head,
.move-arm .cue-hips {
  animation: beatBounce 1.55s ease-in-out infinite;
}

.move-routine .demo-coach,
.move-routine .cue-head,
.move-routine .cue-shoulders,
.move-routine .cue-hips {
  animation: miniRoutine 2.4s ease-in-out infinite;
}

.move-routine .foot-left {
  animation: stepLeft 2.4s ease-in-out infinite;
}

.move-routine .foot-right {
  animation: stepRight 2.4s ease-in-out infinite;
}

.lesson-card.paused .demo-coach,
.lesson-card.paused .sprite-dancer,
.lesson-card.paused .body-cue,
.lesson-card.paused .foot-cue,
.lesson-card.paused .motion-rings,
.lesson-card.paused .coach-video::before,
.lesson-card.paused .coach-video::after {
  animation-play-state: paused;
}

.lesson-card.slow .demo-coach,
.lesson-card.slow .sprite-dancer,
.lesson-card.slow .body-cue,
.lesson-card.slow .foot-cue,
.lesson-card.slow .motion-rings,
.lesson-card.slow .coach-video::before,
.lesson-card.slow .coach-video::after {
  animation-duration: 2.1s;
}

.lesson-card.slow.move-routine .demo-coach,
.lesson-card.slow.move-routine .sprite-dancer,
.lesson-card.slow.move-routine .body-cue,
.lesson-card.slow.move-routine .foot-cue,
.lesson-card.slow.move-routine .motion-rings,
.lesson-card.slow.move-routine .coach-video::before,
.lesson-card.slow.move-routine .coach-video::after {
  animation-duration: 4.2s;
}

.video-controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.video-controls button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.video-controls button:hover {
  background: var(--mint);
  color: var(--night);
}

.lesson-copy {
  padding: 22px;
}

.lesson-copy p {
  margin: 0 0 8px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-copy h3 {
  margin-top: 0;
}

.move-cue {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  line-height: 1.35;
}

.lesson-copy ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0 0 0 18px;
}

.week-rail {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(7, 22, 52, 0.06);
}

.week-rail article {
  min-width: 0;
  min-height: 148px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.week-rail article:last-child {
  border-right: 0;
}

.week-rail strong,
.week-rail span {
  display: block;
}

.week-rail strong {
  margin-top: 0;
}

.week-rail span {
  margin-top: 34px;
}

.subscribe-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 8px;
  background: var(--night);
  color: white;
}

.subscribe-band .eyebrow {
  color: var(--gold);
}

.subscribe-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.subscribe-band p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.subscribe-band .cta-button {
  white-space: nowrap;
}

.coach-footer {
  display: flex;
  padding: 64px 0 46px;
  align-items: center;
  justify-content: space-between;
  color: rgba(7, 22, 52, 0.68);
}

.coach-footer p {
  margin: 0;
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.88);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1.08);
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.16);
  }
}

@keyframes spriteDance {
  0%,
  24.9% {
    background-position: 0 50%;
  }
  25%,
  49.9% {
    background-position: 33.333% 50%;
  }
  50%,
  74.9% {
    background-position: 66.666% 50%;
  }
  75%,
  100% {
    background-position: 100% 50%;
  }
}

@keyframes beatBounce {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(34px) scaleY(0.91) rotate(-1deg);
  }
}

@keyframes footPress {
  0%,
  100% {
    transform: scaleX(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1.25);
    opacity: 1;
  }
}

@keyframes shoulderGroove {
  0%,
  100% {
    transform: translateX(-34px) rotate(-7deg);
  }
  50% {
    transform: translateX(34px) rotate(7deg);
  }
}

@keyframes quietPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(0);
  }
  50% {
    opacity: 0.58;
    transform: translateX(0);
  }
}

@keyframes sideStep {
  0%,
  100% {
    transform: translateX(-58px) translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateX(58px) translateY(-18px) rotate(5deg);
  }
}

@keyframes stepLeft {
  0%,
  100% {
    transform: translateX(-44px) scaleX(1.55);
    opacity: 1;
  }
  50% {
    transform: translateX(24px) scaleX(0.72);
    opacity: 0.48;
  }
}

@keyframes stepRight {
  0%,
  100% {
    transform: translateX(-24px) scaleX(0.72);
    opacity: 0.48;
  }
  50% {
    transform: translateX(44px) scaleX(1.55);
    opacity: 1;
  }
}

@keyframes hipShift {
  0%,
  100% {
    transform: translateX(-38px) rotate(-6deg);
  }
  50% {
    transform: translateX(38px) rotate(6deg);
  }
}

@keyframes armFlowCoach {
  0%,
  100% {
    transform: translateY(0) translateX(-26px) rotate(-9deg);
  }
  50% {
    transform: translateY(-28px) translateX(26px) rotate(11deg);
  }
}

@keyframes armWave {
  0%,
  100% {
    transform: translateX(-18px) rotate(-14deg) scaleX(0.92);
  }
  50% {
    transform: translateX(18px) rotate(14deg) scaleX(1.08);
  }
}

@keyframes miniRoutine {
  0% {
    transform: translateY(26px) translateX(0) rotate(0deg);
  }
  18% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  36% {
    transform: translateY(-16px) translateX(62px) rotate(7deg);
  }
  54% {
    transform: translateY(-12px) translateX(-58px) rotate(-8deg);
  }
  76% {
    transform: translateY(-34px) translateX(18px) rotate(14deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

@media (max-width: 980px) {
  :root {
    --content: min(100vw - 28px, 820px);
  }

  .coach-hero,
  .practice-board,
  .subscribe-band {
    grid-template-columns: 1fr;
  }

  .coach-selector,
  .fundamental-grid,
  .lesson-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .week-rail article:nth-child(3n) {
    border-right: 0;
  }

  .week-rail article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .coach-header {
    min-height: 64px;
  }

  .coach-brand span:last-child {
    display: none;
  }

  .privacy-pill {
    font-size: 0.78rem;
  }

  .page-actions,
  .page-actions .cta-button,
  .subscribe-band .cta-button {
    width: 100%;
  }

  .page-actions span {
    line-height: 1.45;
  }

  .coach-hero {
    min-height: auto;
    padding: 42px 0 46px;
  }

  h1 {
    font-size: clamp(2.45rem, 13.5vw, 4rem);
  }

  .coach-frame {
    min-height: 410px;
  }

  .coach-selector,
  .fundamental-grid,
  .lesson-grid,
  .week-rail {
    grid-template-columns: 1fr;
  }

  .coach-card {
    min-height: 230px;
    grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
    padding: 16px;
  }

  .coach-card img {
    max-height: 190px;
  }

  .today-panel {
    padding: 26px;
  }

  .week-rail article,
  .week-rail article:nth-child(3n),
  .week-rail article:nth-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .week-rail article:last-child {
    border-bottom: 0;
  }

  .coach-footer {
    display: grid;
    gap: 8px;
  }
}
