:root {
  --orange: #ff5600;
  --orange-soft: #ff7a38;
  --light: #f0f1f2;
  --white: #ffffff;
  --black: #000000;
  --ink: #080808;
  --charcoal: #111111;
  --surface: #161616;
  --line: rgba(240, 241, 242, 0.14);
  --muted: #a4a4a4;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.logo-horizontal {
  display: block;
  aspect-ratio: 5 / 1;
  object-fit: contain;
  object-position: left center;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--black);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand img {
  width: 214px;
  height: 42.8px;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a,
.footer-links a {
  color: #bcbcbc;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-primary:hover {
  background: var(--orange-soft);
}

.button-outline {
  border-color: rgba(255, 86, 0, 0.6);
  color: var(--orange);
}

.button-outline:hover {
  background: var(--orange);
  color: var(--black);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-full {
  width: 100%;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 0.73rem;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 850px;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 78% 45%, rgba(255, 86, 0, 0.12), transparent 28%),
    var(--black);
}

.hero-lines,
.final-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: repeating-linear-gradient(to bottom, transparent 0 37px,
    rgba(240, 241, 242, 0.18) 38px 39px);
  mask-image: linear-gradient(90deg, transparent 0, black 38%, black 88%,
    transparent 100%);
  transform: rotate(-7deg) scale(1.15);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--black);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(3.4rem, 6vw, 6.3rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero h1 em,
.founder-copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: #b9b9b9;
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  color: #d5d5d5;
  font-size: 0.86rem;
  border-bottom: 1px solid #555;
  padding-block: 8px;
}

.text-link span {
  margin-left: 6px;
  color: var(--orange);
}

.hero-notes {
  display: flex;
  gap: 22px;
  margin: 48px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-notes li {
  flex: 1;
  color: #aaa;
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-notes span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 700;
}

.hero-visual {
  min-height: 530px;
  position: relative;
  display: grid;
  place-items: center;
}

.live-card {
  width: min(100%, 420px);
  min-height: 490px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(35, 35, 35, 0.98), rgba(11, 11, 11,
    0.98));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6);
  transform: rotate(2.5deg);
}

.live-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  pointer-events: none;
}

.live-card-top,
.live-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.live-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 86, 0, 0.13);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 86, 0, 0);
  }
}

.live-number {
  color: #656565;
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.live-card-main {
  margin: 70px 0 30px;
}

.live-card-main p {
  color: #898989;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.live-card-main h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.12;
}

.waveform {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: auto;
}

.waveform i {
  flex: 1;
  height: 16%;
  border-radius: 99px;
  background: var(--orange);
  opacity: 0.4;
}

.waveform i:nth-child(2n) {
  height: 36%;
  opacity: 0.55;
}
.waveform i:nth-child(3n) {
  height: 72%;
  opacity: 0.82;
}
.waveform i:nth-child(5n) {
  height: 100%;
  opacity: 1;
}
.waveform i:nth-child(7n) {
  height: 55%;
}

.live-card-footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.live-card-footer span,
.live-card-footer strong {
  display: block;
}

.live-card-footer span {
  color: #797979;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-card-footer strong {
  margin-top: 5px;
  font-size: 0.9rem;
}

.play-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 0.7rem;
}

.orbit-note {
  position: absolute;
  z-index: 3;
  background: var(--light);
  color: var(--black);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.orbit-note-one {
  right: -8px;
  top: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  transform: rotate(-5deg);
}

.orbit-note-one b {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 2rem;
}

.orbit-note-one span {
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.orbit-note-two {
  left: -34px;
  bottom: 52px;
  padding: 11px 16px;
  border-radius: 99px;
  background: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  transform: rotate(4deg);
}

.hero-marquee {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 86, 0, 0.45);
  background: rgba(255, 86, 0, 0.09);
  color: var(--orange);
  white-space: nowrap;
}

.hero-marquee div {
  width: max-content;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  animation: marquee 30s linear infinite;
}

.hero-marquee span {
  padding-inline: 25px;
  font-size: 0.48rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 130px 0;
}

.story-section {
  background: var(--light);
  color: var(--black);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 80px;
}

.story-content h2 {
  max-width: 860px;
  margin-bottom: 70px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.06;
}

.story-content h2 span {
  color: var(--orange);
}

.story-sequence {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: sequence;
  border-block: 1px solid rgba(0, 0, 0, 0.17);
}

.story-sequence p {
  min-height: 145px;
  position: relative;
  margin: 0;
  padding: 56px 18px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.17);
  font-size: 0.9rem;
  counter-increment: sequence;
}

.story-sequence p:first-child {
  padding-left: 0;
}

.story-sequence p:last-child {
  padding-right: 0;
  border-right: 0;
}

.story-sequence p::before {
  content: "0" counter(sequence);
  position: absolute;
  top: 18px;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
}

.story-sequence .muted {
  color: #858585;
}

.story-turn {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  max-width: 810px;
  margin-top: 62px;
}

.story-turn > span {
  color: var(--orange);
  font-size: 2.7rem;
}

.story-turn p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

.contrast-section {
  background: var(--black);
}

.section-heading.centered {
  max-width: 900px;
  margin: 0 auto 75px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.weekly-intro h2,
.path-header h2,
.music-copy h2,
.community-heading h2,
.teacher-copy h2,
.faq-intro h2,
.proof-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 1.05;
}

.section-heading > p:last-child,
.community-heading > p:last-child,
.proof-heading > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
}

.comparison-card {
  min-height: 430px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-title span,
.comparison-title small {
  display: block;
}

.comparison-title span {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.comparison-title small {
  margin-top: 5px;
  color: #707070;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card ul,
.comparison-card ol {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  margin-bottom: 13px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #a3a3a3;
  font-size: 0.93rem;
}

.scattered li:nth-child(1) {
  transform: translateX(8px) rotate(1deg);
}
.scattered li:nth-child(2) {
  transform: translateX(-5px) rotate(-0.5deg);
}
.scattered li:nth-child(3) {
  transform: translateX(13px) rotate(0.8deg);
}

.guided {
  border-color: rgba(255, 86, 0, 0.55);
  background: linear-gradient(145deg, rgba(255, 86, 0, 0.13), rgba(255, 86, 0,
    0.02));
}

.guided .comparison-title span {
  color: var(--orange);
}

.guided li {
  border-color: rgba(255, 86, 0, 0.23);
  color: var(--light);
}

.guided li b {
  margin-right: 14px;
  color: var(--orange);
  font-size: 0.7rem;
}

.comparison-arrow {
  position: relative;
  z-index: 2;
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 1.6rem;
}

.comparison-result {
  margin: 55px 0 0;
  text-align: center;
  color: #858585;
  font-size: 1.12rem;
}

.comparison-result strong {
  color: var(--light);
}

.weekly-section {
  background: var(--light);
  color: var(--black);
}

.weekly-intro {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 80px;
}

.weekly-intro h2 {
  margin: 0;
}

.weekly-intro h2 span,
.music-copy h2 span {
  color: var(--orange);
}

.weekly-intro > p {
  margin: 0 0 8px;
  color: #555;
  font-size: 1.06rem;
  line-height: 1.7;
}

.session-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(0, 0, 0, 0.17);
}

.session-step {
  min-height: 300px;
  padding: 30px 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.17);
}

.session-step:first-child {
  padding-left: 0;
}
.session-step:last-child {
  border-right: 0;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-top span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
}

.step-top i {
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.15);
}

.session-step h3 {
  margin: 82px 0 15px;
  font-size: 1.45rem;
}

.session-step p {
  color: #686868;
  font-size: 0.9rem;
}

.session-step.featured {
  background: var(--orange);
}

.session-step.featured .step-top span,
.session-step.featured p {
  color: var(--black);
}

.session-step.featured .step-top i {
  background: rgba(0, 0, 0, 0.3);
}

.between-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px 100px;
  margin-top: 90px;
  padding: 60px;
  border-radius: 24px;
  background: var(--black);
  color: var(--light);
}

.between-heading > span,
.card-label {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.between-heading h3 {
  margin: 28px 0 0;
  font-size: 2.3rem;
  line-height: 1.15;
}

.between-list > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.between-list span {
  color: var(--orange);
  font-size: 0.65rem;
}

.between-list p {
  margin: 0;
  font-size: 0.9rem;
}

.between-note {
  grid-column: 1 / -1;
  max-width: 790px;
  margin: 0;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  color: #868686;
  font-size: 1.1rem;
}

.between-note strong {
  color: var(--light);
}

.path-section {
  overflow: hidden;
}

.path-header {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 20px 100px;
  margin-bottom: 90px;
}

.path-header .section-kicker {
  grid-column: 1 / -1;
}

.path-header h2 {
  margin: 0;
}

.path-header > p:last-child {
  align-self: end;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.path-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.path-line {
  position: absolute;
  top: 75px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: #373737;
}

.path-line span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--orange);
}

.path-stage {
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.stage-number {
  display: block;
  color: #585858;
  font-size: 0.7rem;
}

.stage-dot {
  width: 17px;
  height: 17px;
  margin: 48px 0 50px;
  border: 4px solid var(--black);
  border-radius: 50%;
  background: #555;
  box-shadow: 0 0 0 1px #555;
}

.path-stage.active .stage-dot {
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 0 0 8px rgba(255, 86, 0, 0.1);
}

.path-stage h3 {
  margin-bottom: 15px;
  font-size: 1.75rem;
}

.path-stage p {
  min-height: 90px;
  color: #8b8b8b;
  font-size: 0.88rem;
  line-height: 1.6;
}

.stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.stage-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #aaa;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.path-disclaimer {
  margin: 65px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6e6e6e;
  font-size: 0.76rem;
}

.music-section {
  background: var(--light);
  color: var(--black);
}

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

.music-copy > p:not(.section-kicker) {
  color: #5f5f5f;
  font-size: 1.05rem;
  line-height: 1.7;
}

.check-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 0.9rem;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.setlist-card {
  padding: 18px;
  border-radius: 24px;
  background: var(--black);
  color: var(--light);
  box-shadow: 22px 22px 0 var(--orange);
}

.setlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 30px;
}

.setlist-head span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.setlist-head small {
  color: #626262;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.song-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 19px 16px;
  border-top: 1px solid var(--line);
}

.song-row.playing {
  border-radius: 12px;
  background: #161616;
}

.song-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #333;
  border-radius: 50%;
  color: #747474;
  font-size: 0.62rem;
}

.playing .song-icon {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.song-row strong,
.song-row small {
  display: block;
}

.song-row strong {
  font-size: 0.86rem;
}

.song-row small {
  margin-top: 3px;
  color: #6d6d6d;
}

.status {
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status.ghost {
  color: #555;
}

.setlist-progress {
  height: 3px;
  margin: 28px 16px 14px;
  background: #242424;
}

.setlist-progress span {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--orange);
}

.community-heading,
.proof-heading {
  max-width: 750px;
  margin-bottom: 70px;
}

.community-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.95fr;
  gap: 18px;
}

.community-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.progress-ring {
  width: 170px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  margin: 40px auto 25px;
  border: 10px solid #292929;
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  border-radius: 50%;
  text-align: center;
  transform: rotate(14deg);
}

.progress-ring > * {
  transform: rotate(-14deg);
}

.progress-ring strong {
  color: var(--light);
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.progress-ring span {
  color: #777;
  font-size: 0.6rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-card > p {
  margin-top: auto;
  color: #858585;
  font-size: 0.83rem;
}

.win-card {
  background: var(--orange);
  color: var(--black);
}

.win-card .card-label {
  color: var(--black);
}

.win-card blockquote {
  margin: auto 0;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.reaction-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.24);
  font-size: 0.7rem;
}

.stage-visual {
  position: relative;
  height: 170px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  margin: 35px 0 25px;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 80%, rgba(255, 86, 0, 0.27),
    transparent 46%), #090909;
}

.stage-visual span {
  position: absolute;
  inset: 42px auto auto 50%;
  color: var(--orange);
  font-size: 2.6rem;
  transform: translateX(-50%);
}

.stage-visual i {
  width: 30px;
  height: 40%;
  border: 1px solid #313131;
  border-radius: 20px 20px 0 0;
}

.stage-visual i:nth-of-type(2) {
  height: 52%;
}

.prototype-note {
  margin: 24px 0 0;
  color: #5b5b5b;
  font-size: 0.7rem;
  text-align: right;
}

.teacher-section {
  border-top: 1px solid var(--line);
}

.teacher-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 110px;
}

.teacher-mark {
  min-height: 490px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #090909;
}

.teacher-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(120deg, rgba(255, 86, 0, 0.14), transparent 52%);
  pointer-events: none;
}

.teacher-mark img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: 67% center;
  filter: grayscale(0.76) saturate(0.72) contrast(1.12);
  transition: filter 0.45s ease, transform 0.65s ease;
}

.teacher-mark:hover img {
  filter: grayscale(0.25) saturate(0.9) contrast(1.08);
  transform: scale(1.025);
}

.teacher-year {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 48px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 86, 0, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.teacher-mark figcaption {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 30px;
  margin: 0;
  color: #a8a8a8;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.teacher-copy h2 {
  max-width: 700px;
}

.teacher-highlight {
  margin-bottom: 38px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
}

.teacher-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  color: #919191;
  font-size: 0.9rem;
}

.signature {
  display: block;
  margin-top: 35px;
  color: var(--light);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-style: italic;
}

.founder-section {
  background: var(--orange);
  color: var(--black);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 110px;
}

.founder-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5.3vw, 5.7rem);
  line-height: 0.98;
}

.founder-copy h2 em {
  color: var(--black);
  -webkit-text-stroke: 1px var(--black);
  -webkit-text-fill-color: transparent;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.06rem;
  line-height: 1.7;
}

.founder-benefits {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.founder-benefits li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

.founder-benefits span {
  margin-right: 12px;
}

.price-card {
  padding: 42px;
  border-radius: 25px;
  background: var(--light);
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.12);
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-top span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.price-top small {
  padding: 6px 9px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 99px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 45px 0 0;
}

.price sup {
  margin: 19px 7px 0 0;
  font-weight: 700;
}

.price strong {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.price > span {
  align-self: flex-end;
  margin: 0 0 12px 9px;
  color: #686868;
  font-size: 0.85rem;
}

.price-caption,
.price-legal {
  color: #6c6c6c;
  font-size: 0.68rem;
}

.price-divider {
  height: 1px;
  margin: 30px 0;
  background: rgba(0, 0, 0, 0.15);
}

.price-card ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.86rem;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.price-legal {
  margin: 15px 0 0;
  text-align: center;
}

.proof-section {
  background: #0a0a0a;
}

.proof-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-slot {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 26px;
  border: 1px dashed #303030;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(255,
    255, 255, 0.015) 10px 20px);
  color: #777;
}

.proof-slot > span {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #383838;
  border-radius: 50%;
  font-size: 0.6rem;
}

.proof-slot p {
  margin: 0;
  font-size: 0.85rem;
}

.proof-slot small {
  color: #4f4f4f;
  text-transform: uppercase;
}

.faq-section {
  background: var(--light);
  color: var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p:last-child {
  color: #686868;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.17);
}

.faq-item button {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
}

.faq-item button i {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: var(--orange);
  transition: transform 0.2s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 660px;
  margin: -5px 0 26px;
  color: #5f5f5f;
  font-size: 0.92rem;
  line-height: 1.65;
}

.pending-label {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255, 86, 0, 0.12);
  color: #a63800;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.final-cta {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 86, 0, 0.14), transparent 45%);
}

.final-lines {
  opacity: 0.12;
  transform: rotate(7deg) scale(1.2);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
  color: var(--orange);
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.05;
}

.final-cta-inner > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 65px 0 30px;
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-main img {
  width: 190px;
  height: 38px;
}

.footer-main > p {
  margin: 0;
  color: #777;
  text-align: center;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #494949;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-sticky-cta {
  display: none;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100% - 32px));
  display: grid;
  gap: 5px;
  padding: 22px 50px 22px 22px;
  border: 1px solid rgba(255, 86, 0, 0.4);
  border-radius: 14px;
  background: #171717;
  box-shadow: 0 20px 60px #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(140%);
  transition: opacity 0.25s ease, transform 0.35s ease, visibility 0.35s ease;
}

.toast.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.toast button {
  position: absolute;
  top: 11px;
  right: 13px;
  border: 0;
  background: transparent;
  color: #888;
  font-size: 1.3rem;
  cursor: pointer;
}

.toast strong {
  color: var(--orange);
  font-size: 0.88rem;
}

.toast span {
  color: #a0a0a0;
  font-size: 0.78rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.16s;
}

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

/* Member welcome and onboarding */
.welcome-page {
  background: var(--black);
}

.welcome-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
}

.welcome-header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.welcome-header img {
  width: 214px;
  height: 42.8px;
}

.welcome-header span {
  color: #6f6f6f;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welcome-hero {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, rgba(255, 86, 0, 0.15),
    transparent 35%);
}

.welcome-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  text-align: center;
}

.welcome-hero .eyebrow {
  justify-content: center;
}

.welcome-hero h1 {
  max-width: 980px;
  margin: 0 auto 25px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.95;
}

.welcome-hero h1 span {
  display: inline-block;
  font-size: 0.55em;
  transform: rotate(-10deg);
}

.welcome-hero-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 28px;
  color: #999;
  font-size: 1.05rem;
}

.welcome-steps {
  background: var(--light);
  color: var(--black);
}

.welcome-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
}

.welcome-section-heading .section-kicker {
  align-self: start;
}

.welcome-section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  text-align: right;
}

.onboarding-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.17);
  list-style: none;
}

.onboarding-steps li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 25px;
  min-height: 115px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.onboarding-steps li > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
}

.onboarding-steps strong,
.onboarding-steps p {
  display: block;
}

.onboarding-steps strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.onboarding-steps p {
  margin: 5px 0 0;
  color: #6a6a6a;
  font-size: 0.84rem;
}

.onboarding-steps button,
.onboarding-steps a {
  min-width: 120px;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.onboarding-steps button:hover,
.onboarding-steps a:hover,
.onboarding-steps button.done {
  border-color: var(--orange);
  background: var(--orange);
}

.onboarding-steps i {
  margin-left: 6px;
  font-style: normal;
}

.diagnosis-section {
  background: #080808;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
}

.diagnosis-copy {
  position: sticky;
  top: 80px;
  align-self: start;
}

.diagnosis-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  line-height: 1.05;
}

.diagnosis-copy > p:not(.section-kicker) {
  color: #8b8b8b;
  line-height: 1.7;
}

.form-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
}

.form-progress > span {
  height: 3px;
  overflow: hidden;
  background: #242424;
}

.form-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--orange);
  transition: width 0.25s ease;
}

.form-progress small {
  color: #777;
}

.form-progress b {
  color: var(--orange);
}

.diagnosis-form {
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--charcoal);
}

.diagnosis-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.diagnosis-form legend {
  width: 100%;
  margin-bottom: 35px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.diagnosis-form label:not(.choice),
.choice-group > span {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
  color: #aeaeae;
  font-size: 0.78rem;
  font-weight: 600;
}

.diagnosis-form input[type="text"],
.diagnosis-form select,
.diagnosis-form textarea {
  width: 100%;
  border: 1px solid #333;
  border-radius: 9px;
  outline: 0;
  background: #090909;
  color: var(--light);
  transition: border-color 0.2s ease;
}

.diagnosis-form input[type="text"],
.diagnosis-form select {
  height: 52px;
  padding-inline: 15px;
}

.diagnosis-form textarea {
  resize: vertical;
  padding: 15px;
}

.diagnosis-form input:focus,
.diagnosis-form select:focus,
.diagnosis-form textarea:focus {
  border-color: var(--orange);
}

.choice-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-group > span {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid #333;
  border-radius: 9px;
  color: #8d8d8d;
  font-size: 0.76rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.choice input:checked + span {
  border-color: var(--orange);
  background: rgba(255, 86, 0, 0.09);
  color: var(--orange);
}

.form-summary {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 86, 0, 0.3);
  border-radius: 10px;
  background: rgba(255, 86, 0, 0.06);
}

.form-summary > span {
  color: var(--orange);
}

.form-summary p {
  margin: 0;
  color: #848484;
  font-size: 0.76rem;
}

.form-summary strong {
  color: var(--light);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.form-back {
  border-color: #333;
  background: transparent;
  color: #888;
}

.welcome-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.welcome-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #616161;
  font-size: 0.75rem;
}

.welcome-footer p {
  margin: 0;
}

.welcome-footer a {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    flex: 0 0 44px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--light);
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    padding: 25px 20px 35px;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.97);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .weekly-intro,
  .path-header,
  .music-grid,
  .teacher-grid,
  .founder-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 80px 0 110px;
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 10vw, 5.6rem);
  }
  .hero-visual {
    min-height: 500px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .story-sequence {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-sequence p:nth-child(3) {
    border-right: 0;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .comparison-arrow {
    transform: rotate(90deg);
  }
  .weekly-intro,
  .path-header {
    gap: 25px;
  }
  .session-track {
    grid-template-columns: 1fr 1fr;
  }
  .session-step:nth-child(2) {
    border-right: 0;
  }
  .session-step:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
  }
  .session-step:first-child {
    padding-left: 28px;
  }
  .path-header .section-kicker {
    grid-column: auto;
  }
  .path-map {
    grid-template-columns: 1fr 1fr;
    gap: 65px 25px;
  }
  .path-line {
    display: none;
  }
  .stage-dot {
    margin: 20px 0 30px;
  }
  .music-grid,
  .teacher-grid,
  .founder-grid {
    gap: 70px;
  }
  .teacher-mark {
    max-width: 580px;
    width: 100%;
    margin-inline: auto;
  }
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }
  .community-card:last-child {
    grid-column: 1 / -1;
  }
  .faq-intro {
    position: static;
  }
  .diagnosis-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .diagnosis-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    text-align: center;
  }
  .container {
    width: min(calc(100% - 30px), var(--container));
  }
  .header-inner {
    position: relative;
    justify-content: center;
    height: 70px;
  }
  .menu-toggle {
    position: absolute;
    right: 0;
  }
  .brand img {
    width: 180px;
    height: 36px;
    object-position: center;
  }
  .mobile-nav {
    inset: 70px 0 auto;
    text-align: center;
  }
  .hero {
    padding-top: 70px;
    min-height: auto;
  }
  .hero-grid {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }
  .hero-copy {
    min-width: 0;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .button {
    max-width: 100%;
    min-height: 52px;
    gap: 14px;
    padding: 10px 16px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .text-link {
    align-self: center;
  }
  .eyebrow,
  .section-heading .eyebrow {
    justify-content: center;
  }
  .hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-notes li {
    text-align: center;
  }
  .hero-visual {
    min-height: 450px;
  }
  .live-card {
    min-height: 430px;
    padding: 24px;
  }
  .live-card-main {
    margin-top: 58px;
  }
  .live-card-main h2 {
    font-size: 1.8rem;
  }
  .live-card-top,
  .live-card-footer {
    justify-content: center;
    gap: 28px;
  }
  .orbit-note-one {
    right: -6px;
    top: 30px;
  }
  .orbit-note-two {
    left: -3px;
    bottom: 15px;
  }
  .section {
    padding: 90px 0;
  }
  .story-content h2 {
    margin-bottom: 45px;
    font-size: 2.75rem;
  }
  .story-sequence {
    grid-template-columns: 1fr;
  }
  .story-sequence p {
    min-height: auto;
    padding: 48px 10px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .story-sequence p::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .story-turn {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    margin-top: 40px;
  }
  .story-turn p {
    font-size: 1.05rem;
  }
  .section-heading.centered {
    margin-bottom: 45px;
    text-align: center;
  }
  .section-heading h2,
  .weekly-intro h2,
  .path-header h2,
  .music-copy h2,
  .community-heading h2,
  .teacher-copy h2,
  .faq-intro h2,
  .proof-heading h2 {
    font-size: 2.65rem;
  }
  .comparison-card {
    min-height: auto;
    padding: 25px 20px;
  }
  .comparison-card ul,
  .comparison-card ol {
    margin-top: 35px;
  }
  .comparison-card li {
    text-align: center;
    transform: none !important;
  }
  .comparison-arrow {
    width: 46px;
  }
  .session-track {
    grid-template-columns: 1fr;
  }
  .session-step {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
    padding: 25px 20px;
  }
  .session-step:first-child {
    padding-left: 20px;
  }
  .session-step h3 {
    margin-top: 50px;
  }
  .step-top {
    justify-content: center;
  }
  .step-top i {
    display: none;
  }
  .between-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 30px 22px;
  }
  .between-note {
    grid-column: auto;
  }
  .between-list > div {
    grid-template-columns: 35px auto;
    justify-content: center;
    text-align: center;
  }
  .path-map {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .path-stage {
    padding: 0;
  }
  .path-stage p {
    min-height: auto;
  }
  .stage-dot {
    margin-inline: auto;
  }
  .stage-tags {
    justify-content: center;
  }
  .path-disclaimer,
  .prototype-note {
    text-align: center;
  }
  .check-list li {
    padding-inline: 0;
  }
  .check-list li::before {
    position: static;
    margin-right: 8px;
  }
  .setlist-card {
    box-shadow: 9px 9px 0 var(--orange);
  }
  .setlist-head {
    align-items: center;
    gap: 15px;
    flex-direction: column;
  }
  .song-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .song-row .status {
    display: none;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .community-card:last-child {
    grid-column: auto;
  }
  .community-card {
    align-items: center;
  }
  .win-card blockquote {
    text-align: center;
  }
  .reaction-row {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
  .teacher-mark {
    min-height: 380px;
  }
  .teacher-mark img {
    height: 380px;
  }
  .teacher-body {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .teacher-mark figcaption {
    right: 30px;
    left: 30px;
    text-align: center;
  }
  .founder-copy h2 {
    font-size: 3.2rem;
  }
  .price-card {
    padding: 30px 22px;
  }
  .price-top {
    align-items: center;
    gap: 15px;
    flex-direction: column;
  }
  .price {
    justify-content: center;
  }
  .founder-benefits li,
  .price-card li {
    padding-inline: 0;
    text-align: center;
  }
  .price-card li::before {
    position: static;
    margin-right: 8px;
  }
  .price strong {
    font-size: 4.8rem;
  }
  .proof-slots {
    grid-template-columns: 1fr;
  }
  .proof-slot {
    min-height: 150px;
    align-items: center;
    justify-content: center;
  }
  .faq-grid {
    gap: 45px;
  }
  .faq-item button {
    position: relative;
    justify-content: center;
    padding-inline: 34px;
    text-align: center;
  }
  .faq-item button i {
    position: absolute;
    right: 4px;
  }
  .faq-answer p {
    margin-inline: auto;
  }
  .final-cta {
    min-height: 580px;
    padding: 90px 0 130px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }
  .footer-main > p {
    order: 3;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 70px;
  }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: block;
    padding: 10px 15px;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(14px);
    transform: translateY(110%);
    transition: transform 0.3s ease;
  }
  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
  .mobile-sticky-cta .button {
    min-height: 48px;
  }
  .toast {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 78px;
    text-align: center;
  }
  .welcome-header-inner {
    justify-content: center;
    height: 70px;
  }
  .welcome-header img {
    width: 175px;
    height: 35px;
    object-position: center;
  }
  .welcome-header span {
    display: none;
  }
  .welcome-hero {
    min-height: 570px;
  }
  .welcome-hero h1 {
    font-size: 3.6rem;
  }
  .welcome-section-heading {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .welcome-section-heading h2 {
    text-align: center;
    font-size: 2.7rem;
  }
  .onboarding-steps li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 25px 0;
  }
  .onboarding-steps li > button,
  .onboarding-steps li > a {
    grid-column: 1;
    justify-self: center;
  }
  .diagnosis-form {
    padding: 30px 20px;
  }
  .choice-group {
    grid-template-columns: 1fr;
  }
  .choice-group > span {
    grid-column: auto;
  }
  .diagnosis-form label:not(.choice),
  .choice-group > span {
    text-align: center;
  }
  .diagnosis-form input[type="text"],
  .diagnosis-form select,
  .diagnosis-form textarea {
    text-align: center;
  }
  .choice span,
  .form-summary {
    justify-content: center;
    text-align: center;
  }
  .form-actions {
    justify-content: center;
  }
  .form-actions .button {
    flex: 1;
    padding-inline: 15px;
  }
  .welcome-footer .container {
    align-items: center;
    flex-direction: column;
  }
}
