:root {
  --wine-950: #24101d;
  --wine-900: #331526;
  --wine-800: #4a1832;
  --wine-700: #682447;
  --cloud: #fffcf7;
  --paper: #f6f2eb;
  --olive: #52663e;
  --olive-dark: #35452a;
  --gold: #d6a43a;
  --gold-light: #f3d78c;
  --blue: #294c5a;
  --rose: #e8c8d1;
  --ink: #231c20;
  --muted: #685e63;
  --border: #ded6cf;
  --white: #ffffff;
  --display: "Newsreader", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --content: 1180px;
  --shadow: 0 18px 50px rgba(36, 16, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input {
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
a,
input {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--wine-900);
  padding: 12px 16px;
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100% - 40px, var(--content));
  height: 88px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.member-link {
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  padding: 13px 22px;
  font-family: var(--body);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--compact {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.button--light {
  background: var(--white);
  color: var(--wine-900);
}

.button--gold {
  background: var(--gold);
  color: var(--wine-950);
}

.button--gold:hover {
  background: var(--gold-light);
}

.button--wine {
  width: 100%;
  background: var(--wine-800);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 91dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wine-950);
  color: var(--white);
  isolation: isolate;
}

.hero-backdrops,
.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrops {
  z-index: -2;
}

.hero-backdrop {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 850ms ease, transform 7s ease;
}

.hero-backdrop.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(16, 9, 14, 0.42);
}

.hero-content {
  width: min(100% - 40px, var(--content));
  margin: 68px auto 198px;
}

.hero-content > * {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--wine-700);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 68px;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.24);
}

.hero-copy {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.72;
}

.hero-story-detail {
  min-height: 67px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 19px;
}

.hero-story-detail span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-story-detail q {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
}

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

.text-link {
  font-weight: 700;
  text-underline-offset: 6px;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-story-nav {
  position: absolute;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 122px;
  left: max(20px, calc((100vw - var(--content)) / 2));
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.hero-story-nav::-webkit-scrollbar,
.sample-tabs::-webkit-scrollbar {
  display: none;
}

.hero-story-button {
  position: relative;
  min-width: 104px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(36, 16, 29, 0.64);
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero-story-button::after {
  position: absolute;
  right: 7px;
  bottom: 4px;
  left: 7px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.hero.is-auto-rotating .hero-story-button.is-active::after {
  animation: story-progress 8s linear forwards;
  opacity: 0.58;
}

@keyframes story-progress {
  to { transform: scaleX(1); }
}

.hero-story-button:hover,
.hero-story-button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--wine-950);
}

.hero-player {
  position: absolute;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 30px;
  left: max(20px, calc((100vw - var(--content)) / 2));
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 280px auto;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(36, 16, 29, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-play,
.main-play {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--wine-950);
  font-size: 17px;
  cursor: pointer;
}

.hero-player-copy {
  min-width: 0;
}

.hero-player-copy span,
.hero-player-copy strong {
  display: block;
}

.hero-player-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-player-copy strong {
  overflow: hidden;
  margin-top: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-wave {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-wave i {
  width: 3px;
  height: 12px;
  display: block;
  border-radius: 3px;
  background: var(--rose);
}

.hero-wave i:nth-child(2n) { height: 24px; }
.hero-wave i:nth-child(3n) { height: 31px; }
.hero-wave i:nth-child(5n) { height: 18px; }

.hero-player.is-playing .hero-wave i {
  animation: wave 700ms ease-in-out infinite alternate;
}

.hero-player.is-playing .hero-wave i:nth-child(2n) { animation-delay: 120ms; }
.hero-player.is-playing .hero-wave i:nth-child(3n) { animation-delay: 240ms; }

@keyframes wave {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

.hero-time {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  white-space: nowrap;
}

.trust-strip {
  min-height: 9dvh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--border);
  background: var(--cloud);
}

.trust-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.trust-strip span {
  margin-right: 7px;
  color: var(--olive);
}

.section {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 104px 0;
}

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

.section-heading h2,
.listen-intro h2,
.intentions-heading h2,
.process-copy h2,
.offer-copy h2,
.faq-heading h2,
.closing-content h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p:last-child,
.listen-intro > p:last-child,
.process-copy > p:last-child,
.faq-heading > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.story-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 54px;
}

.story-step {
  min-width: 0;
  padding: 26px 0;
  border-top: 3px solid var(--wine-800);
}

.story-step--result {
  border-color: var(--gold);
}

.story-label,
.sample-kicker,
.sample-verse span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-step blockquote,
.story-step .verse {
  margin: 18px 0;
  font-size: 24px;
  line-height: 1.3;
}

.story-step strong {
  color: var(--olive-dark);
  font-size: 13px;
}

.flow-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 30px;
}

.inline-listen {
  min-height: 44px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine-800);
  font: 700 13px var(--body);
  cursor: pointer;
}

.creative-studio-section {
  width: 100%;
  padding: 104px 20px;
  background: var(--wine-900);
  color: var(--white);
}

.creative-studio-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.creative-studio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.creative-studio-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 54px;
  line-height: 1.04;
}

.creative-studio-heading > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.creative-studio-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.creative-studio-flow li {
  min-height: 330px;
  padding: 26px 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.creative-studio-flow li:first-child {
  padding-left: 0;
}

.creative-studio-flow li:last-child {
  padding-right: 0;
  border-right: 0;
}

.creative-stage-number {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 18px;
}

.creative-stage-role {
  margin: 38px 0 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.creative-studio-flow h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.12;
}

.creative-studio-flow li > p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.creative-studio-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 34px;
}

.creative-studio-closing p {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.35;
}

.creative-studio-closing .button {
  flex: 0 0 auto;
}

.listen-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--content)) / 2));
  padding-left: max(20px, calc((100vw - var(--content)) / 2));
  background: var(--blue);
  color: var(--white);
}

.listen-intro {
  max-width: 800px;
}

.listen-intro > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.sample-tabs {
  display: flex;
  gap: 8px;
  margin-top: 38px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.sample-tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font: 600 14px var(--body);
  cursor: pointer;
}

.sample-tab.is-active {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--wine-950);
}

.featured-sample {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 70px;
  align-items: center;
  margin-top: 46px;
}

.sample-copy h3 {
  margin: 6px 0 0;
  font-size: 38px;
  line-height: 1.08;
}

.sample-copy .sample-kicker {
  color: var(--gold-light);
}

.sample-copy > p:not(.sample-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.sample-verse {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-top: 24px;
}

.sample-verse span {
  color: var(--gold-light);
}

.sample-copy blockquote {
  margin: 24px 0 0;
  color: var(--gold-light);
  font-size: 27px;
  line-height: 1.3;
}

.audio-console {
  min-width: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 270px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(22, 42, 50, 0.72);
}

.disc {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine-800);
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.04), inset 0 0 0 36px rgba(255, 255, 255, 0.1), var(--shadow);
}

.disc span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--wine-950);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.audio-controls {
  min-width: 0;
}

.audio-controls > p {
  min-height: 48px;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
}

.main-play {
  width: 56px;
  height: 56px;
}

.timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.timeline input {
  width: 100%;
  accent-color: var(--gold);
}

.intentions-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
}

.intentions-heading {
  position: sticky;
  top: 32px;
  align-self: start;
}

.intentions-list {
  border-top: 1px solid var(--border);
}

.intention-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) minmax(180px, 0.9fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.intention-row:hover {
  color: var(--wine-700);
  background: var(--paper);
}

.intention-row span {
  color: var(--muted);
  font-size: 12px;
}

.intention-row strong {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.2;
}

.intention-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.intention-row b {
  color: var(--gold);
  font-size: 24px;
}

.process-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  padding-right: max(20px, calc((100vw - var(--content)) / 2));
  padding-left: max(20px, calc((100vw - var(--content)) / 2));
  background: var(--olive-dark);
  color: var(--white);
}

.process-copy > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 700;
}

.process-list h3 {
  margin: 0;
  font-size: 24px;
}

.process-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.member-preview-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--content)) / 2));
  padding-left: max(20px, calc((100vw - var(--content)) / 2));
  background: #f3ece7;
}

.member-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.member-preview-heading h2 {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--wine-900);
  font-family: var(--display);
  font-size: 54px;
  line-height: 1.04;
}

.member-preview-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.member-preview-window {
  overflow: hidden;
  margin: 0;
  border: 1px solid #d8ccc4;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(51, 21, 38, 0.16);
}

.member-preview-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid #e5ddd7;
  background: #fffdf9;
}

.member-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdbfba;
}

.member-preview-bar span:nth-child(2) {
  background: #d6a43a;
}

.member-preview-bar span:nth-child(3) {
  background: #73865f;
}

.member-preview-bar p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.member-preview-window img {
  width: 100%;
  height: auto;
  display: block;
}

.member-preview-window picture {
  display: block;
}

.member-preview-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid #d8ccc4;
  border-bottom: 1px solid #d8ccc4;
}

.member-preview-benefits p {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin: 0;
  padding: 20px 26px;
  border-right: 1px solid #d8ccc4;
}

.member-preview-benefits p:last-child {
  border-right: 0;
}

.member-preview-benefits strong {
  color: var(--wine-900);
}

.member-preview-benefits span {
  color: var(--muted);
  font-size: 13px;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 90px;
  align-items: center;
}

.offer-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.offer-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.offer-copy li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--olive);
  font-weight: 700;
}

.price-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-panel > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.price strong {
  color: var(--wine-800);
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}

.price span,
.price-panel small {
  color: var(--muted);
  font-size: 12px;
}

.price-panel hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.price-panel small {
  display: block;
  margin: 10px 0 22px;
}

.security-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  padding: 0 max(20px, calc((100vw - var(--content)) / 2));
}

.security-section > div {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--border);
}

.security-section > div:first-child {
  border-left: 1px solid var(--border);
}

.security-section strong,
.security-section span {
  display: block;
}

.security-section strong {
  font-family: var(--display);
  font-size: 21px;
}

.security-section span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--wine-900);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 14px;
}

.closing-section {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 100px 20px;
  background: var(--wine-900);
  color: var(--white);
  text-align: center;
}

.closing-content {
  max-width: 820px;
}

.closing-content h2 {
  font-size: 54px;
}

.closing-content > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.site-footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px max(20px, calc((100vw - var(--content)) / 2));
  background: var(--wine-950);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer img {
  width: 40px;
  height: 40px;
}

.site-footer p {
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
  text-underline-offset: 4px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 450ms ease;
}

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

@media (max-width: 980px) {
  h1 { font-size: 54px; }
  .hero-backdrop { background-position: 57% center; }
  .hero-content > * { max-width: 570px; }
  .hero-story-nav { justify-content: flex-start; }
  .hero-wave { display: none; }
  .hero-player { grid-template-columns: auto minmax(0, 1fr) auto; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .story-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .creative-studio-heading { grid-template-columns: 1fr; gap: 28px; }
  .creative-studio-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creative-studio-flow li,
  .creative-studio-flow li:first-child,
  .creative-studio-flow li:last-child {
    min-height: 280px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .creative-studio-flow li:nth-child(2n) { border-right: 0; }
  .creative-studio-flow li:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .featured-sample { grid-template-columns: 1fr; gap: 42px; }
  .audio-console { max-width: 650px; }
  .intentions-section,
  .process-section,
  .member-preview-heading,
  .offer-section,
  .faq-section { grid-template-columns: 1fr; gap: 48px; }
  .intentions-heading { position: static; }
  .offer-section { max-width: 760px; }
  .price-panel { max-width: 440px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 74px; }
  .site-header { width: calc(100% - 32px); height: 72px; }
  .brand span { font-size: 14px; }
  .brand img { width: 42px; height: 42px; }
  .member-link,
  .header-actions .button { display: none; }
  .hero {
    min-height: 92dvh;
    align-items: end;
  }
  .hero-backdrop { background-position: 72% center; }
  .hero-overlay { background: rgba(16, 9, 14, 0.54); }
  .hero-content {
    width: calc(100% - 36px);
    margin: 108px auto 186px;
  }
  h1 { font-size: 43px; line-height: 1.02; }
  .hero-copy { margin-top: 20px; font-size: 16px; line-height: 1.58; }
  .hero-story-detail { min-height: 52px; gap: 9px; margin-top: 12px; }
  .hero-story-detail span { padding: 4px 6px; font-size: 9px; }
  .hero-story-detail q { font-size: 16px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { display: none; }
  .hero-note { font-size: 12px; }
  .hero-story-nav {
    right: 18px;
    bottom: 108px;
    left: 18px;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
  }
  .hero-story-button { min-width: 88px; height: 36px; padding: 0 8px; font-size: 10px; scroll-snap-align: center; }
  .hero-player {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-height: 80px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .hero-time { display: none; }
  .hero-play { width: 48px; height: 48px; }
  .trust-strip {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }
  .section { width: calc(100% - 36px); padding: 76px 0; }
  .section-heading h2,
  .listen-intro h2,
  .intentions-heading h2,
  .process-copy h2,
  .offer-copy h2,
  .faq-heading h2,
  .closing-content h2 { font-size: 38px; }
  .story-flow { margin-top: 38px; gap: 5px; }
  .story-step { padding: 22px 0; }
  .story-step blockquote,
  .story-step .verse { font-size: 22px; }
  .creative-studio-section { padding: 76px 18px; }
  .creative-studio-heading h2 { font-size: 38px; }
  .creative-studio-heading > p { font-size: 15px; }
  .creative-studio-flow { grid-template-columns: 1fr; margin-top: 42px; }
  .creative-studio-flow li,
  .creative-studio-flow li:first-child,
  .creative-studio-flow li:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .creative-studio-flow li:last-child { grid-column: auto; border-bottom: 0; }
  .creative-stage-role { margin-top: 20px; }
  .creative-studio-closing {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding-top: 28px;
  }
  .creative-studio-closing p { font-size: 21px; }
  .creative-studio-closing .button { width: 100%; }
  .listen-section,
  .process-section,
  .member-preview-section { width: 100%; padding: 76px 18px; }
  .member-preview-heading { gap: 18px; margin-bottom: 28px; }
  .member-preview-heading h2 { font-size: 38px; }
  .member-preview-heading > p { font-size: 15px; }
  .member-preview-window {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .member-preview-window img { width: 100%; }
  .member-preview-benefits { grid-template-columns: 1fr; }
  .member-preview-benefits p { min-height: auto; padding: 18px 4px; border-right: 0; border-bottom: 1px solid #d8ccc4; }
  .member-preview-benefits p:last-child { border-bottom: 0; }
  .sample-tabs { display: flex; scroll-snap-type: x proximity; }
  .sample-tab { min-width: 104px; padding: 10px 12px; font-size: 12px; scroll-snap-align: center; }
  .sample-copy h3 { font-size: 32px; }
  .sample-copy blockquote { font-size: 24px; }
  .audio-console {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    padding: 26px 20px;
  }
  .disc { width: 150px; height: 150px; }
  .audio-controls { width: 100%; text-align: center; }
  .intention-row {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 94px;
  }
  .intention-row em { display: none; }
  .intention-row strong { font-size: 21px; }
  .offer-copy ul { grid-template-columns: 1fr; }
  .price-panel { padding: 24px; }
  .security-section { grid-template-columns: 1fr; padding: 0 18px; }
  .security-section > div,
  .security-section > div:first-child { min-height: auto; padding: 24px 0; border-right: 0; border-left: 0; border-bottom: 1px solid var(--border); }
  .security-section > div:last-child { border-bottom: 0; }
  .faq-list summary { min-height: 82px; }
  .closing-section { min-height: 500px; padding: 80px 20px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; padding: 36px 20px; text-align: center; }
  .site-footer > a:last-child { justify-self: center; }
  .site-footer p { margin: 0; }
  .mobile-cta {
    position: fixed;
    z-index: 100;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    background: var(--gold);
    box-shadow: 0 12px 32px rgba(36, 16, 29, 0.28);
    color: var(--wine-950);
    font-weight: 800;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

@media (max-width: 680px) and (max-height: 760px) {
  .hero-content { margin-top: 92px; }
  .hero-copy { display: none; }
  .hero-story-detail { margin-top: 16px; }
  .hero-note { display: none; }
}
