@font-face {
  font-family: "Arizona";
  src: url("assets/arizona-regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Arizona";
  src: url("assets/arizona-bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Gaisyr";
  src: url("assets/gaisyr-bookitalic.woff") format("woff");
  font-display: swap;
  font-style: italic;
}

:root {
  --orange: #ff6b09;
  --orange-dark: #db4e00;
  --peach: #f8dcc2;
  --cream: #fff4ec;
  --warm-white: #fffaf6;
  --ink: #2a1606;
  --muted: #6d5d51;
  --yellow: #f6e878;
  --line: rgba(42, 22, 6, 0.18);
  --shadow: 0 24px 70px rgba(76, 31, 0, 0.16);
  --radius: 28px;
  --max: 1220px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: "Arizona", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button,
a,
summary {
  cursor: pointer;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  margin-bottom: 28px;
}

h2 em,
h1 span {
  font-family: "Gaisyr", Georgia, serif;
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  background: white;
  transform: translateY(-160%);
}

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

.concept-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 32px;
  padding: 7px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.concept-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 9, 0.22);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--orange);
}

.wordmark {
  width: fit-content;
  font-family: "Gaisyr", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

.header-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.header-proof > span {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.header-proof strong {
  margin-right: -4px;
}

.site-header .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button span {
  font-size: 1.2em;
  transition: transform 200ms ease;
}

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

.button:hover span {
  transform: translate(3px, -3px);
}

.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
.quiz-option:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button--mini {
  min-height: 42px;
  padding-inline: 20px;
  border-color: var(--ink);
  background: transparent;
  font-size: 13px;
}

.button--ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 32px rgba(42, 22, 6, 0.2);
}

.button--orange {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(255, 107, 9, 0.22);
}

.button--large {
  min-height: 64px;
  padding-inline: 30px;
}

.button--full {
  width: 100%;
}

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

.eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #fff;
}

.eyebrow--orange {
  color: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  min-height: calc(100vh - 108px);
  max-height: 930px;
  padding: clamp(56px, 8vh, 90px) max(24px, calc((100vw - var(--max)) / 2)) 74px;
  background: var(--orange);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(42, 22, 6, 0.8) 0.7px, transparent 0.7px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero__orb--one {
  width: 34vw;
  height: 34vw;
  right: -10vw;
  top: -18vw;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__orb--two {
  width: 20vw;
  height: 20vw;
  left: 42%;
  bottom: -14vw;
  background: rgba(248, 220, 194, 0.22);
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-right: clamp(20px, 5vw, 78px);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(4.2rem, 8.3vw, 8rem);
}

.hero h1 span {
  display: block;
  color: white;
  font-size: 1.08em;
}

.hero__lede {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.micro-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.micro-proof span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.ninety {
  position: absolute;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Gaisyr", Georgia, serif;
  font-size: clamp(22rem, 38vw, 41rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.7;
  transform: translate(-2%, 2%);
}

.product-stage {
  position: relative;
  width: min(100%, 570px);
  height: 600px;
}

.product-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(42, 22, 6, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.product-halo::before,
.product-halo::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.product-halo::after {
  inset: 76px;
}

.product-pouch {
  position: absolute;
  z-index: 2;
  width: min(73%, 410px);
  height: auto;
  left: 50%;
  bottom: -20px;
  filter: drop-shadow(0 45px 30px rgba(86, 31, 0, 0.28));
  transform: translateX(-50%) rotate(3deg);
  animation: float 5.4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) rotate(3deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(1deg) translateY(-14px); }
}

.ritual-card {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 118px;
  height: 128px;
  padding: 16px;
  border: 1px solid rgba(42, 22, 6, 0.2);
  border-radius: 17px;
  background: rgba(255, 250, 246, 0.89);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: rotate(-7deg);
}

.ritual-card--top {
  top: 90px;
  right: 12px;
}

.ritual-card--bottom {
  bottom: 22px;
  left: 6px;
  background: var(--yellow);
  transform: rotate(7deg);
}

.ritual-card span,
.ritual-card small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ritual-card strong {
  font-family: "Gaisyr", Georgia, serif;
  font-size: 48px;
  font-style: italic;
  line-height: 0.8;
}

.ritual-card small {
  align-self: end;
  letter-spacing: 0;
  text-transform: none;
}

.hero__caption {
  position: absolute;
  right: 0;
  bottom: -18px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-strip div {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 116px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: -0.04em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 11vw, 155px) max(24px, calc((100vw - var(--max)) / 2));
}

.section__intro {
  max-width: 1040px;
}

.section__intro--center {
  margin: 0 auto clamp(50px, 7vw, 84px);
  text-align: center;
}

.section__intro--center > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.problem {
  background: var(--warm-white);
}

.problem h2 {
  max-width: 1030px;
}

.problem__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
  margin-top: 55px;
}

.problem__story {
  max-width: 500px;
  font-size: 19px;
}

.problem__story .drop-cap::first-letter {
  float: left;
  margin: 5px 10px 0 0;
  color: var(--orange);
  font-family: "Gaisyr", Georgia, serif;
  font-size: 88px;
  font-style: italic;
  line-height: 0.64;
}

.marker-line {
  display: inline;
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
  font-weight: 700;
}

.pattern-stack {
  display: grid;
  gap: 12px;
  transform: rotate(-2deg);
}

.pattern-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 20px 30px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 220ms ease;
}

.pattern-card:hover {
  transform: translateX(-8px);
}

.pattern-card span {
  grid-row: 1 / span 2;
  font-family: "Gaisyr", Georgia, serif;
  font-size: 32px;
  font-style: italic;
}

.pattern-card strong {
  font-size: 22px;
}

.pattern-card small {
  color: var(--muted);
}

.pattern-card--peach { background: var(--peach); }
.pattern-card--yellow { background: var(--yellow); transform: translateX(28px); }
.pattern-card--cream { background: white; transform: translateX(-12px); }

.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.belief-shift {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  min-height: 820px;
  overflow: hidden;
}

.belief-shift::before {
  content: "THE SYSTEM";
  position: absolute;
  left: -1vw;
  bottom: -4vw;
  color: rgba(255, 255, 255, 0.035);
  font-size: 16vw;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.7;
  white-space: nowrap;
}

.belief-shift h2 {
  font-size: clamp(3.5rem, 6.5vw, 6.2rem);
}

.belief-shift__copy {
  position: relative;
  z-index: 2;
}

.belief-shift__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 244, 236, 0.72);
  font-size: 19px;
}

.system-map {
  position: relative;
  aspect-ratio: 1;
  max-width: 550px;
}

.system-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.system-map circle {
  fill: none;
  stroke: rgba(255, 244, 236, 0.2);
  stroke-width: 1;
  stroke-dasharray: 3 7;
}

.system-map__center {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.system-map__center span {
  align-self: end;
  font-family: "Gaisyr", Georgia, serif;
  font-size: 55px;
  font-style: italic;
  line-height: 0.8;
}

.system-map__center strong {
  align-self: start;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-node {
  position: absolute;
  z-index: 3;
  max-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 244, 236, 0.2);
  border-radius: 999px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 0 8px var(--ink);
}

.system-node span {
  margin-right: 6px;
  color: var(--orange);
}

.system-node--one { left: 0; top: 17%; }
.system-node--two { right: -4%; top: 35%; }
.system-node--three { left: 7%; bottom: 10%; }

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

.timeline__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}

.timeline__card--orange {
  background: var(--orange);
  transform: translateY(-24px);
}

.timeline__number {
  position: absolute;
  right: 16px;
  top: -32px;
  color: rgba(42, 22, 6, 0.07);
  font-family: "Gaisyr", Georgia, serif;
  font-size: 180px;
  font-style: italic;
  line-height: 1;
}

.timeline__card h3 {
  max-width: 290px;
  margin: 55px 0 24px;
  font-size: clamp(35px, 3.5vw, 51px);
}

.timeline__card > p:not(.eyebrow) {
  color: var(--muted);
}

.timeline__card--orange > p:not(.eyebrow) {
  color: rgba(42, 22, 6, 0.72);
}

.timeline__metric {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.timeline__metric span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline__metric strong {
  font-size: 17px;
}

.section--peach {
  background: var(--peach);
}

.proof {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(55px, 10vw, 150px);
  align-items: end;
}

.proof blockquote {
  max-width: 830px;
  margin: 0 0 30px;
  font-family: "Gaisyr", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
}

.quote-credit {
  font-weight: 700;
}

.quote-credit span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.proof__score {
  display: grid;
  padding-left: 40px;
  border-left: 1px solid var(--ink);
}

.proof__big {
  font-family: "Gaisyr", Georgia, serif;
  font-size: clamp(7rem, 12vw, 11rem);
  font-style: italic;
  line-height: 0.7;
}

.stars {
  margin: 30px 0 8px;
  color: var(--orange);
  letter-spacing: 0.09em;
}

.proof__score p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.offer {
  background: var(--cream);
}

.offer__heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
}

.offer__heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.offer__heading > p {
  max-width: 420px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 18px;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.offer-stack,
.checkout-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.offer-stack {
  padding: clamp(24px, 4vw, 50px);
}

.offer-stack__hero {
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  min-height: 220px;
  padding: 20px 30px;
  border-radius: 20px;
  background: var(--orange);
  overflow: hidden;
}

.offer-stack__hero img {
  width: 160px;
  margin-bottom: -100px;
  filter: drop-shadow(0 20px 15px rgba(65, 22, 0, 0.28));
  transform: rotate(-7deg);
}

.offer-stack__hero div {
  display: grid;
  gap: 7px;
}

.offer-stack__hero span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-stack__hero strong {
  max-width: 330px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-stack__hero small {
  max-width: 330px;
  color: rgba(42, 22, 6, 0.7);
}

.stack-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.stack-list li {
  display: grid;
  grid-template-columns: 47px 1fr;
  align-items: start;
  gap: 10px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}

.stack-list li:last-child {
  border-bottom: 0;
}

.stack-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 10px;
  font-weight: 700;
}

.stack-list div {
  display: grid;
  gap: 2px;
}

.stack-list strong {
  font-size: 17px;
}

.stack-list small {
  color: var(--muted);
}

.checkout-card {
  position: sticky;
  top: 24px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.checkout-card h3 {
  margin: 0 0 30px;
  font-size: clamp(40px, 5vw, 60px);
}

.plan-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border 180ms ease, background 180ms ease;
}

.plan-option input {
  position: absolute;
  opacity: 0;
}

.plan-option__radio {
  width: 21px;
  height: 21px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px white;
}

.plan-option:has(input:checked) {
  border-color: var(--orange);
  background: var(--cream);
}

.plan-option:has(input:checked) .plan-option__radio {
  background: var(--orange);
}

.plan-option > span:nth-child(3) {
  display: grid;
}

.plan-option small {
  color: var(--muted);
}

.plan-option em {
  padding: 5px 8px;
  border-radius: 99px;
  background: var(--peach);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
}

.checkout-list li {
  display: flex;
  gap: 9px;
}

.checkout-list span {
  color: var(--orange-dark);
  font-weight: 700;
}

.checkout-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

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

.urgency {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(45px, 10vw, 140px);
  align-items: center;
  overflow: hidden;
}

.urgency::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  left: -15vw;
  top: -20vw;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.urgency__stamp {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 390px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.urgency__stamp::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed var(--ink);
  border-radius: 50%;
}

.urgency__stamp span {
  align-self: end;
  font-family: "Gaisyr", Georgia, serif;
  font-size: clamp(9rem, 18vw, 16rem);
  font-style: italic;
  letter-spacing: -0.1em;
  line-height: 0.7;
  transform: translateX(-0.05em);
}

.urgency__stamp small {
  align-self: start;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.urgency__copy {
  position: relative;
  z-index: 2;
}

.urgency h2 {
  max-width: 760px;
}

.urgency__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 32px;
  font-size: clamp(19px, 2vw, 25px);
}

.urgency__copy > small {
  display: block;
  max-width: 650px;
  margin-top: 20px;
  color: rgba(42, 22, 6, 0.67);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 10vw, 140px);
  background: var(--warm-white);
}

.faq h2 {
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 200ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 700px;
  padding: 0 50px 25px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.final-cta__texture {
  position: absolute;
  width: 140%;
  color: rgba(255, 244, 236, 0.04);
  font-family: "Gaisyr", Georgia, serif;
  font-size: 18vw;
  font-style: italic;
  line-height: 0.65;
  transform: rotate(-7deg);
}

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

.final-cta h2 {
  max-width: 970px;
  margin: 0 auto 35px;
  font-size: clamp(3.5rem, 7.7vw, 7.6rem);
}

.final-cta__inner > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 244, 236, 0.55);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 55px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 244, 236, 0.16);
  background: var(--ink);
  color: var(--cream);
}

.wordmark--footer {
  display: block;
  color: var(--orange);
  font-size: 48px;
}

.site-footer p {
  margin: 9px 0 0;
  color: rgba(255, 244, 236, 0.5);
  font-size: 11px;
}

.footer-disclaimer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mobile-cta {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(42, 22, 6, 0.94);
  color: white;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transform: translateY(140%);
  transition: transform 280ms ease;
}

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

.mobile-cta div {
  display: grid;
}

.mobile-cta strong { font-size: 14px; }
.mobile-cta span { color: rgba(255,255,255,.58); font-size: 11px; }
.mobile-cta .button { min-height: 44px; padding-inline: 18px; font-size: 12px; }

.quiz-modal {
  width: min(720px, calc(100% - 24px));
  max-height: min(880px, calc(100dvh - 24px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--warm-white);
  box-shadow: 0 35px 100px rgba(20, 8, 0, 0.38);
  overflow: auto;
}

.quiz-modal::backdrop {
  background: rgba(42, 22, 6, 0.72);
  backdrop-filter: blur(7px);
}

.quiz-shell {
  position: relative;
  min-height: 670px;
  padding: 32px clamp(24px, 6vw, 62px) 50px;
}

.quiz-close {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 25px;
  line-height: 1;
}

.quiz-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.quiz-brand .wordmark {
  color: var(--orange);
}

.quiz-brand > span:last-child {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quiz-progress {
  height: 5px;
  margin-bottom: 46px;
  border-radius: 99px;
  background: var(--peach);
  overflow: hidden;
}

.quiz-progress span {
  display: block;
  width: 14.285%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 260ms ease;
}

.quiz-step h2 {
  max-width: 590px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 7vw, 4.3rem);
}

.quiz-helper {
  margin-bottom: 28px;
  color: var(--muted);
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.quiz-option {
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.quiz-option:hover {
  border-color: var(--orange);
  background: var(--cream);
  transform: translateY(-2px);
}

.quiz-option span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.quiz-back,
.quiz-restart {
  margin-top: 24px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.quiz-step--capture form {
  display: grid;
  gap: 15px;
}

.quiz-step--capture label:not(.consent-row) {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.quiz-step--capture input[type="text"],
.quiz-step--capture input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.consent-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.quiz-result {
  text-align: center;
}

.result-pill {
  display: inline-flex;
  margin: 3px auto 22px;
  padding: 8px 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quiz-result h2 {
  margin-inline: auto;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}

.quiz-result > p:not(.eyebrow):not(.quiz-legal) {
  max-width: 580px;
  margin-inline: auto;
  color: var(--muted);
}

.result-plan {
  display: grid;
  gap: 5px;
  margin: 28px 0;
  padding: 18px;
  border-radius: 15px;
  background: var(--peach);
  text-align: left;
}

.result-plan span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-legal {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
}

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1);
}

.reveal--delay { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 220ms; }

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.95fr;
  }

  .hero__visual { min-height: 530px; }
  .product-stage { height: 530px; }
  .ritual-card--top { right: -15px; }
  .ritual-card--bottom { left: -10px; }

  .offer__grid,
  .belief-shift {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 68px;
    padding-inline: 20px;
  }

  .header-proof { display: none; }

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    padding-top: 58px;
  }

  .hero__copy {
    padding-right: 0;
  }

  .hero h1 {
    max-width: 650px;
  }

  .hero__visual {
    min-height: 540px;
    margin-top: 20px;
  }

  .product-stage { height: 520px; }
  .hero__caption { right: 20px; }
  .scroll-cue { display: none; }

  .problem__grid,
  .belief-shift,
  .proof,
  .offer__heading,
  .offer__grid,
  .urgency,
  .faq,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pattern-stack { margin-right: 32px; }

  .belief-shift {
    min-height: auto;
  }

  .system-map {
    width: min(100%, 530px);
    margin: 0 auto;
  }

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

  .timeline__card {
    min-height: 390px;
  }

  .timeline__card--orange {
    transform: none;
  }

  .proof__score {
    max-width: 450px;
    padding: 30px 0 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .offer__heading {
    gap: 10px;
  }

  .checkout-card {
    position: static;
  }

  .urgency__stamp {
    width: min(75vw, 360px);
  }

  .faq { gap: 20px; }

  .site-footer {
    gap: 30px;
  }

  .footer-disclaimer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .concept-bar {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .wordmark { font-size: 29px; }
  .site-header .button { min-height: 38px; padding-inline: 14px; font-size: 11px; }
  .site-header .button span { display: none; }

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

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .text-link {
    text-align: center;
  }

  .micro-proof {
    gap: 9px 15px;
    font-size: 10px;
  }

  .hero__visual {
    min-height: 390px;
    margin-top: 30px;
  }

  .product-stage { height: 390px; }
  .product-pouch { width: 66%; bottom: 0; }
  .product-halo { width: 300px; height: 300px; }
  .ritual-card { width: 92px; height: 102px; padding: 12px; }
  .ritual-card strong { font-size: 38px; }
  .ritual-card--top { top: 48px; right: 0; }
  .ritual-card--bottom { left: 0; bottom: 12px; }
  .hero__caption { display: none; }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div {
    min-height: 86px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:nth-child(2) { border-right: 0; }

  .section {
    padding: 82px 20px;
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .problem__grid {
    margin-top: 25px;
  }

  .problem__story { font-size: 17px; }
  .pattern-stack { margin: 0 15px 0 0; }
  .pattern-card { grid-template-columns: 43px 1fr; min-height: 100px; padding: 16px; }
  .pattern-card strong { font-size: 18px; }
  .pattern-card small { font-size: 11px; }
  .pattern-card--yellow { transform: translateX(13px); }

  .belief-shift { gap: 40px; }
  .belief-shift h2 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .system-map { transform: scale(.95); }
  .system-map__center { width: 135px; height: 135px; }
  .system-map__center span { font-size: 44px; }
  .system-node { max-width: 150px; padding: 10px 12px; font-size: 10px; }

  .timeline__card { min-height: 370px; }

  .proof blockquote {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .offer-stack,
  .checkout-card { border-radius: 20px; }
  .offer-stack { padding: 17px; }
  .offer-stack__hero { grid-template-columns: 115px 1fr; min-height: 180px; padding: 15px; }
  .offer-stack__hero img { width: 115px; margin-bottom: -70px; }
  .offer-stack__hero strong { font-size: 24px; }
  .offer-stack__hero small { font-size: 10px; }
  .stack-list small { font-size: 11px; }

  .plan-option { grid-template-columns: 20px 1fr; padding: 16px 14px; }
  .plan-option em { display: none; }

  .urgency__stamp { width: min(86vw, 340px); }

  .final-cta { min-height: 620px; }

  .site-footer { padding: 45px 20px 120px; }

  .mobile-cta { display: grid; }

  .quiz-modal {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 22px;
  }

  .quiz-shell {
    min-height: calc(100dvh - 12px);
    padding: 24px 18px 40px;
  }

  .quiz-brand { margin-bottom: 21px; }
  .quiz-brand > span:last-child { display: none; }
  .quiz-progress { margin-bottom: 35px; }
  .quiz-step h2 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-option { min-height: 69px; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
