:root {
  --forest: #0d1711;
  --forest-2: #111f17;
  --forest-3: #172a1f;
  --ink: #171612;
  --paper: #f4eee3;
  --paper-2: #fffaf1;
  --cream: #e8ddca;
  --gold: #d5a34a;
  --gold-light: #efca76;
  --gold-dark: #8d641d;
  --wine: #692c34;
  --line-dark: rgba(255, 250, 239, 0.14);
  --line-light: rgba(23, 22, 18, 0.14);
  --muted-dark: rgba(255, 250, 239, 0.66);
  --muted-light: #625b50;
  --display: "DM Serif Display", Georgia, serif;
  --headline: "Archivo", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 46px);
  --shadow: 0 24px 70px rgba(4, 10, 6, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--forest);
  color: var(--paper-2);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

::selection {
  background: var(--gold);
  color: #201505;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.pw-grain {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.04;
  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='.88' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--headline);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-family: var(--headline);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: #211605;
  box-shadow: 0 14px 34px rgba(213, 163, 74, 0.2);
}

.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 18px 40px rgba(213, 163, 74, 0.28);
}

.button-outline {
  border-color: rgba(255, 250, 239, 0.35);
  color: var(--paper-2);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-full {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line-dark);
  background: rgba(13, 23, 17, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand span {
  margin-top: 3px;
  color: rgba(255, 250, 239, 0.42);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 250, 239, 0.66);
  font-family: var(--headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-buy {
  padding: 10px 15px;
  border: 1px solid rgba(213, 163, 74, 0.56);
  border-radius: 6px;
  color: var(--paper-2);
}

.nav-buy:hover {
  background: var(--gold);
  color: #211605 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 239, 0.24);
  border-radius: 7px;
  background: transparent;
  color: var(--paper-2);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.pw-hero {
  position: relative;
  display: grid;
  min-height: min(820px, 100svh);
  align-items: center;
  padding: 112px var(--pad) 72px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 77% 34%, rgba(213, 163, 74, 0.13), transparent 24%),
    radial-gradient(circle at 14% 90%, rgba(71, 107, 79, 0.18), transparent 24%),
    var(--forest);
}

.pw-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 49.93%, rgba(255, 250, 239, 0.045) 50%, transparent 50.07%),
    linear-gradient(0deg, transparent 49.93%, rgba(255, 250, 239, 0.035) 50%, transparent 50.07%);
  background-size: 96px 96px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.pw-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(213, 163, 74, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.pw-orbit-one {
  right: -230px;
  top: 80px;
  width: 680px;
  height: 680px;
}

.pw-orbit-two {
  right: -90px;
  top: 220px;
  width: 390px;
  height: 390px;
}

.pw-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.pw-hero-copy {
  max-width: 690px;
}

.pw-hero h1 {
  margin: 0 0 24px;
  font-family: var(--headline);
  font-size: clamp(3rem, 4.7vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.96;
  text-transform: uppercase;
}

.pw-hero h1 em {
  color: var(--gold-light);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
}

.pw-lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.pw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pw-note {
  margin: 18px 0 0;
  color: rgba(255, 250, 239, 0.46);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.pw-hero-visual {
  position: relative;
  padding: 18px 16px 48px;
}

.pw-frame-number {
  position: absolute;
  top: -62px;
  right: -18px;
  z-index: -1;
  color: rgba(213, 163, 74, 0.09);
  font-family: var(--headline);
  font-size: clamp(9rem, 18vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.pw-cover {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 163, 74, 0.38);
  border-radius: 6px;
  background: #08100b;
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.pw-cover::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 250, 239, 0.14);
  content: "";
  pointer-events: none;
}

.pw-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pw-route-card {
  position: absolute;
  right: -18px;
  bottom: 0;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border: 1px solid rgba(213, 163, 74, 0.28);
  border-radius: 6px;
  background: rgba(17, 31, 23, 0.96);
  box-shadow: 0 16px 36px rgba(4, 10, 6, 0.28);
  backdrop-filter: blur(12px);
}

.pw-route-card span {
  color: rgba(255, 250, 239, 0.72);
  font-family: var(--headline);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pw-route-card i {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.pw-facts {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  border-block: 1px solid var(--line-dark);
  background: var(--forest-2);
}

.pw-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pw-facts-grid > div {
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line-dark);
}

.pw-facts-grid > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.pw-facts strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1;
}

.pw-facts span {
  margin-top: 7px;
  color: rgba(255, 250, 239, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pw-light {
  background: var(--paper);
  color: var(--ink);
}

.pw-moment {
  padding: clamp(78px, 9vw, 126px) var(--pad);
}

.pw-moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.pw-section-head {
  position: sticky;
  top: 118px;
}

.pw-section-head h2,
.pw-program-head h2,
.pw-output h2,
.pw-audience h2,
.pw-authority h2,
.pw-buy h2,
.pw-faq h2,
.pw-next h2 {
  margin-bottom: 22px;
  font-family: var(--headline);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-transform: uppercase;
}

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

.pw-moment-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--line-light);
}

.pw-moment-list article > span {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.5rem;
}

.pw-moment-list h3 {
  margin-bottom: 7px;
  font-family: var(--headline);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pw-moment-list p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.94rem;
}

.pw-mechanism {
  position: relative;
  padding: clamp(82px, 9vw, 128px) var(--pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(213, 163, 74, 0.12), transparent 24%),
    var(--forest);
}

.pw-mechanism::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(213, 163, 74, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(213, 163, 74, 0.025), 0 0 0 140px rgba(213, 163, 74, 0.015);
  content: "";
}

.pw-section-head-wide {
  position: relative;
  top: auto;
  max-width: 900px;
  margin-bottom: 58px;
}

.pw-section-head-wide h2 {
  color: var(--paper-2);
}

.pw-section-head-wide > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted-dark);
}

.pw-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pw-path::before {
  position: absolute;
  top: 43px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  content: "";
}

.pw-path article {
  min-height: 335px;
  padding: 30px 24px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  background: rgba(17, 31, 23, 0.88);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pw-path article:hover {
  border-color: rgba(213, 163, 74, 0.46);
  background: var(--forest-3);
  transform: translateY(-5px);
}

.pw-path-no {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  font-family: var(--headline);
  font-size: 0.68rem;
  font-weight: 800;
}

.pw-path-label {
  margin: 0 0 11px;
  color: var(--gold);
  font-family: var(--headline);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pw-path h3 {
  margin-bottom: 13px;
  font-family: var(--headline);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.12;
}

.pw-path article > p:last-child {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.pw-program {
  padding: clamp(82px, 9vw, 128px) var(--pad);
}

.pw-program-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 46px;
}

.pw-program-head h2 {
  max-width: none;
  margin-bottom: 0;
}

.pw-program-head > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted-light);
}

.pw-lessons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.pw-lesson {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  background: var(--paper-2);
  box-shadow: 0 12px 28px rgba(23, 22, 18, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pw-lesson:hover {
  box-shadow: 0 20px 42px rgba(23, 22, 18, 0.1);
  transform: translateY(-3px);
}

.pw-lesson:last-child {
  grid-column: 2;
}

.pw-lesson img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pw-lesson > div {
  display: grid;
  min-height: 166px;
  align-content: center;
  padding: 24px;
}

.pw-lesson span {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-family: var(--headline);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pw-lesson h3 {
  margin-bottom: 10px;
  font-family: var(--headline);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.pw-lesson p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.55;
}

.pw-output {
  padding: clamp(82px, 9vw, 126px) var(--pad);
  background:
    linear-gradient(115deg, transparent 0 69%, rgba(213, 163, 74, 0.055) 69.2%, transparent 69.45%),
    var(--forest-2);
}

.pw-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.pw-output-copy > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--muted-dark);
}

.pw-output-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.pw-output-board article {
  display: grid;
  min-height: 166px;
  align-content: center;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(13, 23, 17, 0.72);
}

.pw-output-board span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.25rem;
}

.pw-output-board strong {
  margin: 4px 0 6px;
  font-family: var(--headline);
  font-size: 0.94rem;
  text-transform: uppercase;
}

.pw-output-board small {
  color: rgba(255, 250, 239, 0.5);
  font-size: 0.72rem;
  line-height: 1.5;
}

.pw-audience {
  padding: clamp(82px, 9vw, 126px) var(--pad);
}

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

.pw-audience article {
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line-light);
  border-radius: 7px;
  background: var(--paper-2);
}

.pw-audience article.pw-audience-alt {
  background: var(--cream);
}

.pw-audience h2 {
  font-size: clamp(2rem, 3.35vw, 3.35rem);
}

.pw-audience ul,
.pw-price-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.pw-audience li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.89rem;
}

.pw-audience li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.pw-audience-alt li::before {
  background: var(--wine);
}

.pw-authority {
  padding: 0 var(--pad);
  background: #e9efe4;
  color: var(--ink);
}

.pw-authority-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.pw-authority figure {
  min-height: 710px;
  margin: 0;
  overflow: hidden;
}

.pw-authority figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.pw-authority-grid > div {
  padding: clamp(54px, 8vw, 104px) clamp(38px, 7vw, 96px);
}

.pw-authority h2 {
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

.pw-authority-grid > div > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted-light);
}

.pw-authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: rgba(23, 22, 18, 0.12);
}

.pw-authority-stats div {
  padding: 22px 18px;
  background: #f3f7ef;
}

.pw-authority-stats strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.pw-authority-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pw-buy {
  position: relative;
  padding: clamp(82px, 9vw, 128px) var(--pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 40%, rgba(213, 163, 74, 0.18), transparent 25%),
    var(--forest);
}

.pw-buy::before {
  position: absolute;
  top: -170px;
  right: 9%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(213, 163, 74, 0.14);
  border-radius: 50%;
  content: "";
}

.pw-buy-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: center;
}

.pw-buy-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted-dark);
}

.pw-buy-route {
  display: flex;
  max-width: 640px;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.pw-buy-route span {
  color: rgba(255, 250, 239, 0.56);
  font-family: var(--headline);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pw-buy-route i {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.pw-price-card {
  position: relative;
  padding: 38px 34px 32px;
  border: 1px solid rgba(213, 163, 74, 0.34);
  border-radius: 7px;
  background: rgba(17, 31, 23, 0.94);
  box-shadow: var(--shadow);
}

.pw-price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #557a5e);
  content: "";
}

.pw-price-card > p {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--headline);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.pw-price strong {
  font-family: var(--display);
  font-size: 5.8rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.pw-price span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.65rem;
}

.pw-price-card > small {
  color: rgba(255, 250, 239, 0.46);
  font-size: 0.72rem;
}

.pw-price-card ul {
  margin-bottom: 26px;
}

.pw-price-card li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 250, 239, 0.72);
  font-size: 0.84rem;
}

.pw-price-card li::before {
  position: absolute;
  top: 15px;
  left: 1px;
  width: 9px;
  height: 5px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.pw-checkout-note {
  display: block;
  margin-top: 13px;
  color: rgba(255, 250, 239, 0.38);
  font-size: 0.66rem;
  text-align: center;
}

.pw-faq {
  padding: clamp(82px, 9vw, 124px) var(--pad);
}

.pw-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}

.pw-faq-grid > div:first-child {
  position: sticky;
  top: 118px;
}

.pw-faq-grid > div:first-child > p:last-child {
  color: var(--muted-light);
}

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

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

.pw-faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.pw-faq-list summary span,
.pw-faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1.5px;
  background: var(--gold-dark);
  content: "";
  transition: transform 180ms ease;
}

.pw-faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.pw-faq-list details[open] summary span::after {
  transform: rotate(0);
}

.pw-faq-list details p {
  max-width: 720px;
  margin: -4px 0 26px;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.pw-next {
  padding: 58px var(--pad);
  border-top: 1px solid var(--line-dark);
  background: var(--forest-2);
}

.pw-next-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.pw-next h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.footer {
  padding: 34px var(--pad) 38px;
  border-top: 1px solid var(--line-dark);
  background: #09100c;
}

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

.footer strong {
  font-family: var(--headline);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 250, 239, 0.35);
  font-size: 0.65rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 250, 239, 0.56);
  font-size: 0.72rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.pw-mobile-buy {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .pw-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 48px;
  }

  .pw-hero h1 {
    font-size: clamp(3rem, 6vw, 4.7rem);
  }

  .pw-route-card {
    right: 0;
    left: 22px;
  }

  .pw-path article {
    min-height: 365px;
  }

  .pw-lesson {
    min-width: 0;
  }

  .pw-authority-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 36px, 760px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(13, 23, 17, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a:not(.nav-buy) {
    padding: 14px 3px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-buy {
    margin-top: 12px;
    text-align: center;
  }

  .pw-hero {
    min-height: auto;
    padding-top: 122px;
  }

  .pw-hero-grid {
    grid-template-columns: 1fr;
  }

  .pw-hero-copy {
    max-width: 740px;
  }

  .pw-hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .pw-facts-grid > div:first-child {
    border-left: 0;
  }

  .pw-facts-grid > div:nth-child(2) {
    border-right: 0;
  }

  .pw-facts-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .pw-moment-grid,
  .pw-output-grid,
  .pw-faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .pw-section-head,
  .pw-faq-grid > div:first-child {
    position: static;
  }

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

  .pw-path::before {
    display: none;
  }

  .pw-path article {
    min-height: 310px;
  }

  .pw-program-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pw-lessons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pw-lesson:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7.5px);
  }

  .pw-audience-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pw-authority {
    padding-inline: 0;
  }

  .pw-authority-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pw-authority figure {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .pw-authority figure img {
    object-position: center 38%;
  }

  .pw-buy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pw-price-card {
    width: min(100%, 520px);
  }

  .pw-next-inner {
    grid-template-columns: 1fr;
  }

  .pw-next-inner .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .wrap {
    width: min(100% - 28px, 560px);
  }

  .nav {
    min-height: 68px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand span {
    font-size: 0.52rem;
  }

  .nav-links {
    inset-block-start: 68px;
  }

  .pw-hero {
    padding: 104px 14px 70px;
  }

  .pw-orbit {
    display: none;
  }

  .pw-hero h1 {
    font-size: clamp(2.75rem, 13.7vw, 4.15rem);
  }

  .pw-lead {
    font-size: 0.95rem;
  }

  .pw-actions {
    display: grid;
  }

  .pw-actions .button {
    width: 100%;
  }

  .pw-note {
    line-height: 1.6;
  }

  .pw-hero-visual {
    padding: 8px 0 52px;
  }

  .pw-cover {
    transform: none;
  }

  .pw-frame-number {
    top: -48px;
    right: 2px;
    font-size: 9rem;
  }

  .pw-route-card {
    right: -4px;
    left: 18px;
    gap: 7px;
    padding: 13px 11px;
  }

  .pw-route-card span {
    font-size: 0.52rem;
  }

  .pw-facts {
    padding-inline: 14px;
  }

  .pw-facts-grid > div {
    min-height: 98px;
    padding: 18px 14px;
  }

  .pw-facts strong {
    font-size: 1.65rem;
  }

  .pw-facts span {
    font-size: 0.58rem;
  }

  .pw-moment,
  .pw-mechanism,
  .pw-program,
  .pw-output,
  .pw-audience,
  .pw-buy,
  .pw-faq {
    padding: 72px 14px;
  }

  .pw-moment-grid > *,
  .pw-faq-grid > * {
    min-width: 0;
  }

  .pw-section-head h2,
  .pw-program-head h2,
  .pw-output h2,
  .pw-authority h2,
  .pw-buy h2,
  .pw-faq h2,
  .pw-next h2 {
    font-size: clamp(2.08rem, 10.5vw, 3rem);
  }

  .pw-moment .pw-section-head h2 {
    overflow-wrap: anywhere;
    font-size: clamp(1.9rem, 8.7vw, 2.35rem);
  }

  .pw-audience h2 {
    font-size: clamp(1.82rem, 7.7vw, 2.2rem);
  }

  .pw-moment-list article {
    grid-template-columns: 42px 1fr;
  }

  .pw-path {
    grid-template-columns: 1fr;
  }

  .pw-path article {
    min-height: 0;
  }

  .pw-path-no {
    margin-bottom: 28px;
  }

  .pw-lesson {
    min-width: 0;
  }

  .pw-lesson img {
    aspect-ratio: 16 / 9;
  }

  .pw-lessons {
    grid-template-columns: 1fr;
  }

  .pw-lesson:last-child {
    grid-column: auto;
    width: auto;
  }

  .pw-lesson > div {
    min-height: 0;
    padding: 22px;
  }

  .pw-output-board {
    grid-template-columns: 1fr;
  }

  .pw-output-board article {
    min-height: 140px;
  }

  .pw-audience article {
    padding: 28px 22px;
  }

  .pw-authority figure {
    aspect-ratio: 4 / 3;
  }

  .pw-authority-grid > div {
    padding: 68px 22px;
  }

  .pw-authority-stats {
    grid-template-columns: 1fr;
  }

  .pw-buy-route {
    flex-wrap: wrap;
  }

  .pw-buy-route i {
    min-width: 18px;
  }

  .pw-price-card {
    padding: 32px 22px 26px;
  }

  .pw-price strong {
    font-size: 5rem;
  }

  .pw-next {
    padding: 52px 14px;
  }

  .pw-next-inner .button {
    width: 100%;
  }

  .footer {
    padding: 32px 14px 38px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 15px;
  }

  .pw-mobile-buy {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    border-top: 1px solid var(--line-dark);
    background: rgba(13, 23, 17, 0.97);
    backdrop-filter: blur(16px);
  }

  .pw-mobile-buy div {
    display: grid;
  }

  .pw-mobile-buy span {
    color: rgba(255, 250, 239, 0.47);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .pw-mobile-buy strong {
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1;
  }

  .pw-mobile-buy a {
    padding: 10px 18px;
    border-radius: 6px;
    background: var(--gold);
    color: #211605;
    font-family: var(--headline);
    font-size: 0.75rem;
    font-weight: 800;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
/* Cross-page production QA overrides */
html,
body {
  overflow-x: clip;
}

.wrap,
:where([class*="-grid"], [class*="-cards"]) > * {
  min-width: 0;
}

.pw-light .eyebrow {
  color: #765019;
}

.pw-faq-list summary {
  min-height: 44px;
}

.footer-links {
  flex-wrap: wrap;
}

@media (max-width: 340px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .brand span,
  .pw-route-card span,
  .pw-facts-grid span,
  .pw-path-no,
  .pw-path-label,
  .pw-lesson > div > span,
  .pw-authority-stats span,
  .pw-buy-route span,
  .pw-checkout-note,
  .footer p,
  .pw-mobile-buy span {
    font-size: 11px;
  }
}
