@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&display=swap");


:root {
  --paper: #f4f0e6;
  --paper-deep: #e9e1d2;
  --ink: #252620;
  --asphalt: #666761;
  --olive: #344638;
  --olive-soft: #526454;
  --amber: #c4873d;
  --amber-pale: #e8d1ab;
  --line: rgba(37, 38, 32, 0.18);
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.6), transparent 28%),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 31px,
      rgba(52, 70, 56, 0.055) 32px
    ),
    var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

::selection {
  background: var(--amber-pale);
  color: var(--ink);
}

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

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

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(100% - 96px, 1440px);
  min-height: 82px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand span {
  color: var(--amber);
}

.site-header nav {
  display: flex;
  align-items: center;
}

.site-header nav a {
  position: relative;
  padding: 13px 27px;
}

.site-header nav a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.site-header nav a::after {
  position: absolute;
  right: 27px;
  bottom: 5px;
  left: 27px;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  width: min(100% - 96px, 1440px);
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  padding: 54px 0 70px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding: 12px 0;
  animation: rise-in 520ms ease both;
}

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

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(4.9rem, 7.25vw, 7.3rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.amber-rule {
  width: 242px;
  height: 3px;
  margin: 42px 0 24px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero-deck {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(52, 70, 56, 0.16);
}

.button-primary:hover {
  background: #26382c;
  box-shadow: 0 16px 30px rgba(52, 70, 56, 0.21);
}

.button-secondary {
  border-color: var(--amber);
  color: #875720;
}

.button-secondary:hover {
  background: rgba(196, 135, 61, 0.09);
}

.status {
  display: flex;
  margin: 17px 0 0 11px;
  align-items: center;
  gap: 9px;
  color: #875720;
  font-size: 0.78rem;
  font-weight: 600;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(196, 135, 61, 0.11);
}

.hero-figure {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  border-radius: 52px;
  background: var(--paper-deep);
  box-shadow: 0 32px 70px rgba(37, 38, 32, 0.15);
  animation: image-in 620ms 90ms ease both;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.hero-figure:hover img {
  transform: scale(1.015);
}

.move-section {
  display: grid;
  padding: 122px max(48px, calc((100vw - 1280px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(196, 135, 61, 0.2), transparent 29%),
    linear-gradient(rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    var(--olive);
  background-size: auto, 42px 42px, 42px 42px, auto;
  color: var(--white);
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 92px;
}

.move-intro {
  position: sticky;
  top: 42px;
}

.move-intro .section-kicker {
  color: var(--amber-pale);
}

.move-intro h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 5.9rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.move-intro > p:last-child {
  max-width: 520px;
  margin: 31px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.move-demo {
  min-width: 0;
}

.move-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) 44px minmax(0, 1.16fr);
  align-items: stretch;
  gap: 14px;
}

.move-card {
  display: flex;
  min-height: 330px;
  padding: 31px;
  flex-direction: column;
  border-radius: 25px;
}

.move-card > span,
.question-lab-body span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.move-card > p {
  margin: auto 0 28px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.move-card small {
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 0.72rem;
  line-height: 1.55;
  opacity: 0.65;
}

.move-card-topic {
  border: 1px dashed rgba(255, 253, 248, 0.34);
  background: rgba(255, 253, 248, 0.045);
  color: rgba(255, 253, 248, 0.72);
}

.move-card-episode {
  background: var(--amber-pale);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  transform: rotate(0.5deg);
}

.move-card-episode > span {
  color: #8b5b24;
}

.move-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-pale);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
}

.question-lab {
  margin-top: 24px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.08);
}

.question-lab summary {
  position: relative;
  padding: 23px 58px 23px 25px;
  color: rgba(255, 253, 248, 0.75);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.55;
  list-style: none;
}

.question-lab summary::-webkit-details-marker {
  display: none;
}

.question-lab summary::after {
  position: absolute;
  top: 50%;
  right: 25px;
  color: var(--amber-pale);
  content: "+";
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.question-lab[open] summary::after {
  content: "−";
}

.question-lab summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--amber-pale);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.question-lab-body {
  display: grid;
  padding: 25px;
  border-top: 1px solid rgba(255, 253, 248, 0.15);
  grid-template-columns: 0.55fr 1.45fr;
  gap: 18px;
}

.question-lab-body > div {
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.08);
}

.question-lab-body > div:nth-child(2) {
  background: rgba(232, 209, 171, 0.13);
}

.question-lab-body span {
  margin-bottom: 12px;
  color: var(--amber-pale);
}

.question-lab-body strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.26rem;
  font-weight: 400;
  line-height: 1.35;
}

.question-lab-body > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.75rem;
  line-height: 1.65;
}

.question-lab-body em {
  color: var(--amber-pale);
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.94rem;
}

.evidence-note {
  display: grid;
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.evidence-note > div {
  display: grid;
  grid-template-columns: 11px 1fr;
  align-items: start;
  gap: 14px;
}

.legend-mark {
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
}

.legend-evidence {
  background: var(--olive);
}

.legend-visual {
  border: 2px solid var(--amber);
}

.evidence-note p {
  margin: 0;
  color: var(--asphalt);
  font-size: 0.76rem;
  line-height: 1.6;
}

.evidence-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.78rem;
}

.challenge-section,
.strategies-section,
.comparison-section {
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
  padding: 128px 0;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 110px;
}

.challenge-grid h2,
.section-heading h2,
.tracker-intro h2,
.turning-copy h2,
.comparison-heading h2,
.method-lead h2,
.podcast-content h2,
.reflection-content h2,
.closing-section h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 4.2vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.challenge-copy {
  max-width: 650px;
}

.challenge-copy > p {
  margin: 0 0 20px;
  color: #454740;
  font-size: 1.06rem;
  line-height: 1.8;
}

.definition-note {
  display: grid;
  margin-top: 34px;
  padding: 23px 25px;
  border-left: 4px solid var(--amber);
  border-radius: 0 17px 17px 0;
  background: rgba(232, 209, 171, 0.35);
  grid-template-columns: 170px 1fr;
  gap: 22px;
}

.definition-note span {
  color: #875720;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.definition-note p {
  margin: 0;
  color: #4d4f48;
  font-size: 0.86rem;
  line-height: 1.62;
}

.audience-note {
  display: grid;
  margin-top: 38px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 105px 1fr;
  gap: 20px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.audience-note span {
  color: var(--olive);
  font-weight: 700;
}

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

.section-heading,
.tracker-intro {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 80px;
}

.section-heading > p,
.tracker-intro > p {
  margin: 0 0 4px;
  color: var(--asphalt);
  font-size: 0.98rem;
  line-height: 1.7;
}

.strategy-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.strategy-card {
  min-height: 270px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.45);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.strategy-card:hover {
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 40px rgba(52, 70, 56, 0.1);
  transform: translateY(-5px);
}

.strategy-card > span {
  color: var(--amber);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.4rem;
}

.strategy-card h3 {
  margin: 54px 0 13px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.strategy-card p {
  margin: 0;
  color: var(--asphalt);
  font-size: 0.86rem;
  line-height: 1.7;
}

.tracker-section {
  padding: 128px max(48px, calc((100vw - 1280px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 3%, rgba(232, 209, 171, 0.12), transparent 26%),
    var(--olive);
  color: var(--white);
}

.tracker-section .section-kicker {
  color: var(--amber-pale);
}

.tracker-intro > p {
  color: rgba(255, 253, 248, 0.72);
}

.metric-strip {
  display: grid;
  margin: 64px 0 74px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.metric-strip > div {
  display: flex;
  min-height: 130px;
  padding: 25px 28px;
  flex-direction: column;
  justify-content: center;
}

.metric-strip > div + div {
  border-left: 1px solid rgba(255, 253, 248, 0.2);
}

.metric-strip strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1;
}

.metric-strip span {
  margin-top: 7px;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.timeline-grid {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.week-card {
  display: grid;
  min-height: 342px;
  padding: 30px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 23px;
  background: rgba(255, 253, 248, 0.06);
  grid-template-columns: 80px 1fr;
  gap: 26px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.week-card:hover {
  background: rgba(255, 253, 248, 0.1);
  transform: translateY(-3px);
}

.week-index {
  display: flex;
  flex-direction: column;
  color: var(--amber-pale);
}

.week-index span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.week-index strong {
  margin-top: 5px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.week-copy h3 {
  margin: 0 0 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.week-copy > p {
  min-height: 88px;
  margin: 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.88rem;
  line-height: 1.72;
}

.week-copy dl {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.week-copy dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}

.week-copy dl > div + div {
  margin-top: 10px;
}

.week-copy dt {
  color: var(--amber-pale);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.week-copy dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.75rem;
  line-height: 1.5;
}

.turning-point {
  display: grid;
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
  padding: 140px 0;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 96px;
}

.turning-image,
.reflection-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 28px 65px rgba(37, 38, 32, 0.15);
}

.turning-image img,
.reflection-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.turning-copy > p:not(.section-kicker) {
  margin: 25px 0 0;
  color: #494b45;
  font-size: 1rem;
  line-height: 1.82;
}

.turning-copy blockquote {
  margin: 38px 0 0;
  padding: 26px 0 0 26px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.24;
}

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

.comparison-heading {
  display: grid;
  margin-bottom: 66px;
  grid-template-columns: 0.45fr 1fr;
  align-items: start;
  gap: 80px;
}

.comparison-heading .section-kicker {
  padding-top: 14px;
}

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

.comparison-card {
  display: grid;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 74px 1fr 220px;
  align-items: center;
  gap: 30px;
}

.comparison-number {
  color: var(--amber);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
}

.question-pair {
  display: grid;
  grid-template-columns: 0.8fr 38px 1.2fr;
  align-items: center;
  gap: 24px;
}

.question-pair > div:not(.question-arrow) {
  min-height: 132px;
  padding: 23px 25px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.58);
}

.question-pair > div:first-child {
  border: 1px dashed rgba(37, 38, 32, 0.24);
}

.question-pair > div:nth-child(3) {
  border: 1px solid rgba(52, 70, 56, 0.26);
  background: rgba(232, 209, 171, 0.24);
}

.question-pair span {
  color: var(--asphalt);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.question-pair p {
  margin: 13px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.34;
}

.question-arrow {
  color: var(--amber);
  font-size: 1.45rem;
  text-align: center;
}

.shift-label {
  margin: 0;
  color: var(--olive);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.method-section {
  display: grid;
  padding: 140px max(48px, calc((100vw - 1280px) / 2));
  background: var(--paper-deep);
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 96px;
}

.method-lead > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: #4f514b;
  font-size: 0.98rem;
  line-height: 1.78;
}

.method-lead .method-subtitle {
  color: var(--olive);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.28;
}

.method-lead .method-explanation {
  max-width: 520px;
  margin-top: 18px;
}

.step-zero {
  margin-top: 45px;
  padding: 28px;
  border-radius: 22px;
  background: var(--olive);
  color: var(--white);
}

.step-zero > span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber-pale);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.step-zero strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
}

.step-zero p {
  margin: 15px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  line-height: 1.65;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.principle-grid article {
  min-height: 215px;
  padding: 26px;
  border: 1px solid rgba(37, 38, 32, 0.15);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.5);
}

.principle-grid article > span {
  color: var(--amber);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem;
}

.principle-grid h3 {
  margin: 39px 0 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.principle-grid p {
  margin: 0;
  color: var(--asphalt);
  font-size: 0.8rem;
  line-height: 1.65;
}

.podcast-section {
  display: grid;
  padding: 140px max(48px, calc((100vw - 1280px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(196, 135, 61, 0.16), transparent 26%),
    var(--ink);
  color: var(--white);
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 100px;
}

.podcast-cover {
  position: sticky;
  top: 36px;
  display: flex;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  padding: 36px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 36%),
    var(--amber);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.podcast-cover::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 31px,
      rgba(37, 38, 32, 0.08) 32px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(37, 38, 32, 0.08) 32px
    );
  content: "";
  pointer-events: none;
}

.cover-topline {
  position: absolute;
  top: 34px;
  left: 36px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.waveform {
  position: absolute;
  top: 20%;
  right: 36px;
  left: 36px;
  display: flex;
  height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.waveform span {
  width: 100%;
  max-width: 14px;
  min-height: 9px;
  border-radius: 99px;
  background: var(--ink);
  opacity: 0.82;
  transform-origin: center;
  animation: waveform-breathe 1.8s ease-in-out infinite alternate;
}

.podcast-cover > p {
  position: relative;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 300;
  line-height: 0.9;
}

.podcast-cover > strong {
  position: relative;
  display: block;
  margin-top: 8px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.2rem, 5.3vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.cover-byline {
  position: relative;
  margin-top: 30px;
  padding-top: 17px;
  border-top: 1px solid rgba(37, 38, 32, 0.38);
  font-size: 0.69rem;
  font-weight: 600;
}

.podcast-content .section-kicker {
  color: var(--amber-pale);
}

.podcast-deck {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.guest-list {
  display: grid;
  margin-top: 43px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  grid-template-columns: 1fr 1fr;
}

.guest-list > div {
  padding: 27px 24px 27px 0;
}

.guest-list > div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 253, 248, 0.16);
}

.guest-list span {
  display: block;
  margin-bottom: 9px;
  color: var(--amber-pale);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guest-list strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.guest-list p {
  margin: 7px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.74rem;
}

.audio-placeholder {
  display: grid;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid rgba(232, 209, 171, 0.28);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.06);
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
}

.audio-placeholder button {
  display: flex;
  width: 54px;
  height: 54px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  cursor: not-allowed;
}

.audio-placeholder button span {
  margin-left: 3px;
}

.audio-placeholder strong {
  display: block;
  font-size: 0.86rem;
}

.audio-placeholder p {
  margin: 5px 0 0;
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.72rem;
}

.audio-placeholder > span {
  color: var(--amber-pale);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.episode-outline {
  margin-top: 52px;
}

.episode-outline h3 {
  margin: 0 0 16px;
  color: var(--amber-pale);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.episode-outline > div {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  grid-template-columns: 112px 150px 1fr;
  align-items: baseline;
  gap: 20px;
}

.episode-outline > div > span {
  color: var(--amber-pale);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.08rem;
}

.episode-outline strong {
  font-size: 0.8rem;
}

.episode-outline p {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.75rem;
  line-height: 1.6;
}

.reflection-section {
  display: grid;
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
  padding: 140px 0;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 96px;
}

.reflection-image {
  position: sticky;
  top: 36px;
  min-height: 720px;
}

.reflection-image img {
  min-height: 720px;
}

.reflection-lead {
  margin: 30px 0 0;
  color: #464841;
  font-size: 1.05rem;
  line-height: 1.82;
}

.reflection-answers {
  margin-top: 47px;
  border-top: 1px solid var(--line);
}

.reflection-answers article {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
  gap: 26px;
}

.reflection-answers span {
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reflection-answers p {
  margin: 0;
  color: var(--asphalt);
  font-size: 0.86rem;
  line-height: 1.75;
}

.reflection-content blockquote {
  margin: 50px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 3.2vw, 3.7rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.reflection-content cite {
  display: block;
  margin-top: 17px;
  color: var(--amber);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-section {
  padding: 136px 48px;
  background: var(--amber-pale);
  text-align: center;
}

.closing-section h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.closing-section .button {
  margin-top: 46px;
}

footer {
  display: grid;
  padding: 56px max(48px, calc((100vw - 1280px) / 2));
  background: var(--olive);
  color: var(--white);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

footer span,
footer p {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.7rem;
  line-height: 1.65;
}

footer p {
  margin: 0;
}

footer .reference {
  grid-column: 2;
  margin-top: -45px;
  color: rgba(255, 253, 248, 0.42);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-in {
  from {
    opacity: 0;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes waveform-breathe {
  from {
    opacity: 0.58;
    transform: scaleY(0.55);
  }
  to {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .evidence-note,
  .challenge-section,
  .strategies-section,
  .turning-point,
  .comparison-section,
  .reflection-section {
    width: min(100% - 48px, 960px);
  }

  .hero {
    min-height: auto;
    padding: 64px 0 90px;
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(5rem, 12vw, 7.6rem);
  }

  .hero-figure,
  .hero-figure img {
    min-height: 620px;
  }

  .move-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .move-intro {
    position: relative;
    top: 0;
    max-width: 820px;
  }

  .move-demo {
    max-width: 960px;
  }

  .challenge-grid {
    gap: 60px;
  }

  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .turning-point,
  .reflection-section {
    gap: 55px;
  }

  .turning-image,
  .turning-image img {
    min-height: 560px;
  }

  .comparison-card {
    grid-template-columns: 54px 1fr;
  }

  .shift-label {
    grid-column: 2;
  }

  .method-section,
  .podcast-section {
    gap: 55px;
  }

  .episode-outline > div {
    grid-template-columns: 96px 1fr;
  }

  .episode-outline p {
    grid-column: 2;
  }

  .reflection-image,
  .reflection-image img {
    min-height: 630px;
  }
}

@media (max-width: 860px) {
  .site-header nav a {
    padding: 13px 13px;
  }

  .site-header nav a + a::before {
    display: none;
  }

  .site-header nav a::after {
    right: 13px;
    left: 13px;
  }

  .challenge-grid,
  .section-heading,
  .tracker-intro,
  .comparison-heading,
  .method-section,
  .podcast-section,
  .reflection-section {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .tracker-intro,
  .comparison-heading {
    gap: 38px;
  }

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

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

  .week-copy > p {
    min-height: auto;
  }

  .turning-point {
    grid-template-columns: 1fr;
  }

  .turning-image {
    max-height: 680px;
  }

  .question-pair {
    grid-template-columns: 1fr;
  }

  .question-arrow {
    transform: rotate(90deg);
  }

  .method-section,
  .podcast-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .podcast-cover {
    position: relative;
    top: 0;
    width: min(100%, 620px);
    max-width: none;
  }

  .reflection-image {
    position: relative;
    top: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  footer .reference {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 32px);
    min-height: 70px;
  }

  .brand {
    max-width: 230px;
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .evidence-note,
  .challenge-section,
  .strategies-section,
  .turning-point,
  .comparison-section,
  .reflection-section {
    width: calc(100% - 32px);
  }

  .hero {
    padding: 42px 0 64px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 6rem);
    line-height: 0.82;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-figure,
  .hero-figure img {
    min-height: 470px;
    border-radius: 30px;
  }

  .move-section {
    padding: 86px 16px;
    gap: 44px;
  }

  .move-pair {
    grid-template-columns: 1fr;
  }

  .move-card {
    min-height: 285px;
    padding: 25px;
  }

  .move-card-episode {
    transform: none;
  }

  .move-arrow {
    height: 38px;
    transform: rotate(90deg);
  }

  .question-lab summary {
    padding-left: 20px;
  }

  .question-lab-body {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .question-lab-body > p {
    grid-column: 1;
  }

  .evidence-note {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .challenge-section,
  .strategies-section,
  .turning-point,
  .comparison-section,
  .reflection-section {
    padding: 86px 0;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

  .strategy-card h3 {
    margin-top: 36px;
  }

  .audience-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .definition-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tracker-section,
  .method-section,
  .podcast-section {
    padding: 88px 16px;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-strip > div {
    min-height: 110px;
    padding: 20px;
  }

  .metric-strip > div:nth-child(3) {
    border-top: 1px solid rgba(255, 253, 248, 0.2);
    border-left: 0;
  }

  .metric-strip > div:nth-child(4) {
    border-top: 1px solid rgba(255, 253, 248, 0.2);
  }

  .metric-strip strong {
    font-size: 2.7rem;
  }

  .week-card {
    padding: 24px 21px;
    grid-template-columns: 55px 1fr;
    gap: 16px;
  }

  .week-index strong {
    font-size: 2.35rem;
  }

  .week-copy dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .turning-image,
  .turning-image img,
  .reflection-image,
  .reflection-image img {
    min-height: 480px;
    border-radius: 28px;
  }

  .comparison-heading {
    margin-bottom: 40px;
  }

  .comparison-card {
    padding: 34px 0;
    grid-template-columns: 1fr;
  }

  .shift-label {
    grid-column: 1;
  }

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

  .principle-grid article {
    min-height: auto;
  }

  .podcast-cover {
    padding: 28px;
    border-radius: 28px;
  }

  .cover-topline {
    top: 27px;
    left: 28px;
  }

  .waveform {
    right: 28px;
    left: 28px;
    height: 86px;
    gap: 5px;
  }

  .guest-list {
    grid-template-columns: 1fr;
  }

  .guest-list > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 253, 248, 0.16);
    border-left: 0;
  }

  .audio-placeholder {
    grid-template-columns: 50px 1fr;
  }

  .audio-placeholder > span {
    grid-column: 2;
  }

  .episode-outline > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .episode-outline p {
    grid-column: 1;
  }

  .reflection-answers article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .closing-section {
    padding: 94px 16px;
  }

  footer {
    padding: 46px 16px;
  }
}

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

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