:root {
  --ink: #171916;
  --paper: #f3f0e8;
  --paper-2: #e9e5da;
  --card: #fffdfa;
  --soft-white: #fffdf6;
  --orange: #ff5b35;
  --orange-dark: #d83d1b;
  --lime: #dbe772;
  --sky: #bfd9ff;
  --yellow: #f3cd52;
  --blush: #ffe0d7;
  --muted: #77786e;
  --muted-dark: #b9baaf;
  --line: #d7d2c7;
  --green: #43a83e;
  --red: #d9472d;
  --border: 2px solid var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 72px);
  border-bottom: var(--border);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: var(--border);
  border-radius: 50%;
  background: var(--ink);
  color: var(--soft-white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  right: -3px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::before {
  top: 1px;
  background: var(--orange);
}

.brand-mark::after {
  bottom: 1px;
  background: var(--sky);
}

.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header nav a {
  border-bottom: 2px solid transparent;
}

.site-header nav a:hover {
  border-color: var(--ink);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 24px;
  border: var(--border);
  border-radius: 0;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.button:hover {
  background: var(--ink);
  color: var(--soft-white);
  transform: translate(-3px, -3px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
label:has(input:focus-visible) {
  outline: 4px solid var(--sky);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 0 5px;
  border-bottom: 2px solid currentColor;
  font-size: 15px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  min-height: 730px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 58px clamp(20px, 5vw, 72px) 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 38%;
  width: 94px;
  height: 94px;
  border: var(--border);
  border-radius: 50%;
  background: var(--yellow);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 760px;
  padding: 36px 0 82px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 10px 5px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .94;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(60px, 7vw, 106px);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 4px 12px 8px;
  background: var(--orange);
  color: var(--ink);
  font-size: .7em;
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

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

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin: 44px 0 0;
  padding: 0;
  border-top: var(--border);
  border-left: var(--border);
  list-style: none;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 15px;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--card);
}

.trust-list li:nth-child(2) {
  background: var(--sky);
}

.trust-list li:nth-child(3) {
  background: var(--lime);
}

.trust-list b {
  font-size: 18px;
  line-height: 1.2;
}

.trust-list span {
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.portrait-shell {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 3;
  width: min(36vw, 455px);
  height: 625px;
  overflow: hidden;
  border: var(--border);
  background: var(--sky);
}

.portrait-shell img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(.9) contrast(1.05);
}

.hero-ring {
  position: absolute;
  border: var(--border);
}

.hero-ring-one {
  right: -6%;
  bottom: -8%;
  width: min(39vw, 550px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
}

.hero-ring-two {
  top: 38px;
  right: -2%;
  width: 170px;
  height: 170px;
  background: var(--orange);
}

.speech-card {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 5;
  width: 300px;
  padding: 20px 20px 18px 58px;
  border: var(--border);
  border-radius: 0;
  background: var(--soft-white);
}

.speech-card .flag {
  position: absolute;
  top: 18px;
  left: 17px;
  font-size: 24px;
}

.speech-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.life-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 38px;
  padding: 23px clamp(20px, 5vw, 72px);
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--ink);
  color: var(--soft-white);
  font-size: 13px;
}

.life-strip p {
  margin: 0;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.life-strip div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.life-strip span::before {
  content: "■";
  margin-right: 9px;
  color: var(--orange);
  font-size: 9px;
}

.section {
  padding: 105px clamp(20px, 7vw, 110px);
  border-bottom: var(--border);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}

.section-heading h2,
.author-copy h2,
.offer-copy h2 {
  font-size: clamp(45px, 5.5vw, 78px);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.quiz-section {
  background: var(--paper-2);
}

.quiz-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.quiz-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.quiz-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: var(--border);
  border-radius: 0;
  background: var(--card);
}

.quiz-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 20px 24px;
  border-bottom: var(--border);
  background: var(--ink);
  color: var(--soft-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.quiz-progress > div {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--soft-white);
  background: transparent;
}

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

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quiz-grid fieldset {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 0;
  border-right: var(--border);
}

.quiz-grid fieldset:last-child {
  border-right: 0;
}

.quiz-grid legend {
  max-width: 96%;
  min-height: 62px;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.quiz-grid legend span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sky);
  font-size: 12px;
}

.quiz-grid label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 12px 12px 43px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--soft-white);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.quiz-grid label::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--card);
}

.quiz-grid label.selected {
  border-color: var(--ink);
  background: var(--lime);
}

.quiz-grid label.selected::before {
  border: 5px solid var(--ink);
  background: var(--orange);
}

.quiz-grid input {
  position: absolute;
  opacity: 0;
}

.quiz-result {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 110px;
  margin: 0;
  padding: 24px;
  border-top: var(--border);
  border-radius: 0;
  background: var(--blush);
}

.quiz-result.visible {
  background: var(--lime);
  color: var(--ink);
}

.quiz-result > p {
  width: 100%;
  margin: 0;
  text-align: center;
}

.result-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: var(--border);
  border-radius: 50%;
  background: var(--green);
  color: var(--soft-white);
  font-size: 24px;
  font-weight: 900;
}

.quiz-result > div:nth-child(2) {
  flex: 1;
}

.quiz-result h3,
.quiz-result p {
  margin: 0;
}

.quiz-result h3 {
  font-size: 23px;
  font-weight: 900;
}

.quiz-result p {
  font-size: 14px;
}

.quiz-result .result-label {
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quiz-result .button {
  flex: 0 0 auto;
}

.program-section {
  background: var(--paper);
}

.program-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 70px;
  max-width: none;
}

.program-heading > p:last-child {
  margin: 0;
}

.timeline {
  max-width: 1220px;
  margin: 0 auto;
  border-top: var(--border);
  border-left: var(--border);
}

.week-card {
  position: relative;
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 36px;
  min-height: 205px;
  padding: 30px 96px 30px 0;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--card);
}

.week-card:nth-child(even) {
  background: var(--sky);
}

.week-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.week-number span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.week-body {
  max-width: 760px;
}

.week-body h3 {
  margin: 12px 0 7px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.week-body p {
  margin: 0;
  font-size: 16px;
}

.level-chip {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-index {
  position: absolute;
  right: 22px;
  bottom: -5px;
  color: var(--paper-2);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.week-card:nth-child(even) .timeline-index {
  color: rgb(23 25 22 / .09);
}

.program-note {
  max-width: 1220px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.method-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  background: var(--ink);
  color: var(--soft-white);
}

.method-copy {
  align-self: start;
}

.method-copy .eyebrow {
  background: var(--orange);
}

.method-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.method-copy > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--soft-white);
  border-left: 2px solid var(--soft-white);
}

.method-grid article {
  min-height: 245px;
  padding: 24px;
  border-right: 2px solid var(--soft-white);
  border-bottom: 2px solid var(--soft-white);
  background: var(--paper);
  color: var(--ink);
}

.method-grid article:nth-child(2) {
  background: var(--yellow);
}

.method-grid .lexicon-card {
  grid-column: 1 / -1;
  min-height: 0;
  background: var(--lime);
}

.method-grid article > span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.method-grid h3 {
  max-width: 500px;
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

.method-grid p {
  margin: 0;
  font-size: 15px;
}

.lexicon-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lexicon-features li {
  padding: 7px 9px;
  border: 1px solid var(--ink);
  background: var(--soft-white);
  font-size: 12px;
  font-weight: 800;
}

.author-section {
  display: grid;
  grid-template-columns: minmax(300px, 470px) 1fr;
  gap: 86px;
  align-items: center;
  background: var(--paper-2);
}

.author-photo {
  position: relative;
  width: 100%;
  border: var(--border);
  background: var(--sky);
}

.author-photo::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 86px;
  height: 86px;
  border: var(--border);
  background: var(--orange);
}

.author-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(.88) contrast(1.04);
}

.experience-badge {
  position: absolute;
  right: -30px;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 142px;
  min-height: 142px;
  padding: 13px;
  border: 7px solid var(--paper-2);
  border-radius: 50%;
  outline: 2px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  text-align: center;
}

.experience-badge b {
  white-space: nowrap;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.experience-badge small {
  max-width: 100%;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.author-copy {
  align-self: center;
}

.author-lead {
  max-width: 760px;
  margin: 25px 0 32px;
  font-size: 21px;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: var(--border);
  border-left: var(--border);
  list-style: none;
}

.fact-list li {
  display: flex;
  flex-direction: column;
  padding: 17px;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--card);
}

.fact-list li:nth-child(2) {
  background: var(--blush);
}

.fact-list li:nth-child(3) {
  background: var(--yellow);
}

.fact-list b {
  font-size: 22px;
  font-weight: 900;
}

.fact-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.projects p {
  width: 100%;
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.projects span {
  padding: 7px 10px;
  border: 1px solid var(--ink);
  background: var(--soft-white);
  font-size: 12px;
  font-weight: 800;
}

.author-links {
  display: flex;
  gap: 26px;
  margin-top: 27px;
}

.author-links a {
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.reviews-section {
  background: var(--lime);
}

.reviews-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.reviews-heading .eyebrow {
  background: var(--soft-white);
}

.reviews-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  border-top: var(--border);
  border-left: var(--border);
}

.reviews-grid article {
  min-height: 350px;
  padding: 28px;
  border-right: var(--border);
  border-bottom: var(--border);
  border-radius: 0;
  background: var(--card);
}

.reviews-grid .review-featured {
  margin-top: 0;
  background: var(--orange);
  color: var(--ink);
}

.quote-mark {
  height: 58px;
  color: var(--ink);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}

.reviews-grid article > p {
  min-height: 170px;
  margin: 6px 0 22px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.48;
}

.reviews-grid footer {
  display: flex;
  flex-direction: column;
  padding-top: 17px;
  border-top: 2px solid currentColor;
}

.reviews-grid footer span {
  color: var(--muted);
  font-size: 12px;
}

.review-featured footer span {
  color: var(--ink);
  opacity: .7;
}

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

.offer-copy h2 {
  max-width: 760px;
}

.offer-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 27px 0;
  color: var(--muted);
  font-size: 20px;
}

.payment-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.payment-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: var(--border);
  border-radius: 50%;
  background: var(--green);
  color: var(--soft-white);
  font-weight: 900;
}

.payment-note p {
  margin: 0;
  font-size: 14px;
}

.price-card {
  padding: 0;
  border: var(--border);
  border-radius: 0;
  background: var(--ink);
  color: var(--soft-white);
}

.price-top {
  padding: 30px 32px 26px;
  border-bottom: 2px solid var(--soft-white);
  background: var(--orange);
  color: var(--ink);
}

.price-top > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-top p {
  margin: 12px 0 0;
  font-size: 22px;
}

.price-top p b {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .9;
}

.price-top small {
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 27px 32px;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.price-card li::before {
  content: "■";
  display: inline-block;
  margin-right: 10px;
  color: var(--lime);
  font-size: 9px;
}

.price-card .button {
  width: calc(100% - 64px);
  margin: 0 32px;
  background: var(--lime);
}

.price-card .button:hover {
  background: var(--soft-white);
  color: var(--ink);
}

.secure-line {
  margin: 15px 32px 25px;
  color: var(--muted-dark);
  font-size: 11px;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
  background: var(--paper-2);
}

.faq-heading {
  margin: 0;
}

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

.faq-list details {
  border-right: var(--border);
  border-bottom: var(--border);
  border-left: var(--border);
  background: var(--card);
}

.faq-list details[open] {
  background: var(--sky);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 22px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--orange-dark);
  font-size: 26px;
  font-weight: 900;
  transition: transform .15s ease;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -2px 54px 22px 22px;
  color: var(--ink);
  font-size: 15px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 24px;
  border-bottom: var(--border);
  background: var(--orange);
  color: var(--ink);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: var(--border);
}

.final-cta::before {
  top: 50px;
  left: 6%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--lime);
}

.final-cta::after {
  right: 7%;
  bottom: 45px;
  width: 120px;
  height: 120px;
  background: var(--sky);
  transform: rotate(45deg);
}

.final-cta .eyebrow {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--soft-white);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 990px;
  margin: 0 auto 38px;
  font-size: clamp(52px, 7vw, 96px);
  text-transform: uppercase;
}

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

.button-light {
  background: var(--soft-white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--ink);
  color: var(--soft-white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--soft-white);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--muted-dark);
  text-align: center;
}

.site-footer > div:last-child {
  display: flex;
  justify-content: flex-end;
}

.site-footer > div:last-child a {
  border-bottom: 1px solid var(--soft-white);
}

.mobile-buy {
  display: none;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr .72fr;
    min-height: 690px;
  }

  .hero::before {
    left: 45%;
  }

  .portrait-shell {
    right: -2%;
    width: 420px;
  }

  .speech-card {
    right: -10px;
    width: 250px;
  }

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

  .quiz-grid fieldset {
    border-right: 0;
    border-bottom: var(--border);
  }

  .quiz-grid fieldset:last-child {
    border-bottom: 0;
  }

  .quiz-grid legend {
    min-height: 0;
    margin-bottom: 12px;
  }

  .quiz-result {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .program-heading,
  .method-section,
  .author-section,
  .offer-section,
  .faq-section {
    gap: 52px;
  }

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

@media (max-width: 780px) {
  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: 32px 18px 0;
    flex-direction: column;
  }

  .hero::before {
    top: 22px;
    right: 17px;
    left: auto;
    width: 58px;
    height: 58px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .hero h1 span {
    width: auto;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .text-link {
    align-self: flex-start;
  }

  .trust-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-visual {
    width: 100%;
    min-height: 520px;
    margin-top: 22px;
    align-self: stretch;
  }

  .hero-ring-one {
    right: -25%;
    width: 500px;
  }

  .hero-ring-two {
    top: 34px;
    right: -8%;
    width: 125px;
    height: 125px;
  }

  .portrait-shell {
    right: 50%;
    bottom: 0;
    width: 350px;
    height: 510px;
    transform: translateX(50%);
  }

  .speech-card {
    right: 0;
    bottom: 24px;
    width: 230px;
    padding: 15px 14px 15px 44px;
  }

  .speech-card .flag {
    top: 13px;
    left: 12px;
  }

  .speech-card p {
    font-size: 12px;
  }

  .life-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .life-strip div {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 7px;
  }

  .life-strip span {
    flex: 0 0 auto;
  }

  .section {
    padding: 76px 18px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .author-copy h2,
  .offer-copy h2 {
    font-size: 43px;
  }

  .quiz-progress {
    grid-template-columns: 1fr auto;
  }

  .quiz-progress > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .quiz-grid fieldset {
    padding: 20px 16px;
  }

  .quiz-result .button {
    width: 100%;
  }

  .program-heading,
  .method-section,
  .author-section,
  .offer-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-heading > p:last-child {
    margin: 0;
  }

  .week-card {
    grid-template-columns: 72px 1fr;
    gap: 15px;
    padding: 25px 14px 25px 0;
  }

  .week-number {
    padding-left: 12px;
    font-size: 27px;
  }

  .week-body h3 {
    font-size: 25px;
  }

  .timeline-index {
    display: none;
  }

  .method-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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

  .method-grid .lexicon-card {
    grid-column: auto;
  }

  .method-grid article {
    min-height: 0;
    padding: 20px;
  }

  .author-photo {
    width: calc(100% - 22px);
  }

  .author-photo::before {
    top: -24px;
    right: -24px;
    width: 64px;
    height: 64px;
  }

  .author-photo > .experience-badge {
    right: -22px;
    width: 126px;
    min-height: 126px;
    padding: 12px;
    border-width: 6px;
  }

  .experience-badge b {
    font-size: 19px;
  }

  .experience-badge small {
    font-size: 11px;
  }

  .author-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  .reviews-grid article {
    min-height: 0;
  }

  .reviews-grid article > p {
    min-height: 0;
  }

  .offer-section {
    padding-bottom: 88px;
  }

  .price-top {
    padding: 26px 20px 23px;
  }

  .price-top p b {
    font-size: 78px;
  }

  .price-card ul {
    margin: 24px 20px;
  }

  .price-card .button {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .secure-line {
    margin: 14px 20px 22px;
  }

  .faq-heading {
    margin-bottom: 0;
  }

  .faq-list summary {
    padding: 19px 17px;
    font-size: 17px;
  }

  .faq-list details p {
    margin: 0 44px 20px 17px;
  }

  .final-cta::before {
    top: 24px;
    left: -45px;
    width: 110px;
    height: 110px;
  }

  .final-cta::after {
    right: -38px;
    bottom: 28px;
    width: 86px;
    height: 86px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > div:last-child {
    justify-content: center;
  }

  .mobile-buy {
    position: fixed;
    right: 10px;
    bottom: 9px;
    left: 10px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: var(--border);
    background: var(--orange);
    color: var(--ink);
    font-weight: 900;
    text-transform: uppercase;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Calm Bauhaus hierarchy: neutral reading surfaces with sparse color accents. */
:root {
  --border: 1px solid var(--line);
}

body {
  font-size: 17px;
}

.site-header {
  padding-top: 17px;
  padding-bottom: 17px;
  border-color: var(--line);
  background: rgb(243 240 232 / .96);
}

.site-header nav {
  color: var(--muted);
  font-size: 12px;
}

.site-header nav a:hover {
  color: var(--ink);
}

.brand-mark {
  border: 0;
}

.brand-mark::before,
.brand-mark::after {
  border: 1px solid var(--paper);
}

.button {
  min-height: 54px;
  border: 1px solid var(--ink);
  letter-spacing: .01em;
  transition: background .15s ease, color .15s ease;
}

.button:hover {
  background: var(--ink);
  color: var(--soft-white);
  transform: none;
}

.button-small {
  min-height: 42px;
}

.eyebrow,
.method-copy .eyebrow,
.reviews-heading .eyebrow,
.final-cta .eyebrow {
  padding: 0 0 7px;
  border-bottom: 3px solid var(--orange);
  background: transparent;
  color: var(--orange-dark);
}

.hero {
  min-height: 680px;
  padding-top: 44px;
}

.hero::before {
  top: 64px;
  left: 42%;
  width: 18px;
  height: 18px;
  border: 0;
  background: var(--orange);
}

.hero-copy {
  max-width: 720px;
  padding-top: 28px;
  padding-bottom: 72px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.052em;
  text-transform: none;
}

.hero h1 span {
  display: block;
  width: auto;
  margin-top: 5px;
  padding: 0;
  background: transparent;
  font-size: .76em;
  letter-spacing: -.045em;
}

.hero h1 span::after {
  content: "";
  display: inline-block;
  width: .22em;
  height: .22em;
  margin-left: .16em;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: .12em;
}

.hero-lead {
  max-width: 610px;
  margin-top: 26px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-actions {
  margin-top: 30px;
}

.trust-list {
  max-width: 660px;
  margin-top: 38px;
  border: 0;
  border-top: 1px solid var(--line);
}

.trust-list li,
.trust-list li:nth-child(2),
.trust-list li:nth-child(3) {
  padding: 17px 16px 5px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.trust-list li:first-child {
  padding-left: 0;
}

.trust-list li:last-child {
  border-right: 0;
}

.trust-list b {
  font-size: 17px;
}

.trust-list span {
  color: var(--muted);
}

.hero-visual {
  min-height: 610px;
}

.portrait-shell {
  height: 590px;
  border: 1px solid var(--line);
  background: var(--card);
}

.hero-ring-one {
  right: -5%;
  bottom: -3%;
  width: min(35vw, 500px);
  border: 1px solid var(--line);
  background: transparent;
}

.hero-ring-two {
  top: 62px;
  right: 2%;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--sky);
}

.speech-card {
  right: 1%;
  bottom: 30px;
  width: 290px;
  border: 1px solid var(--line);
  background: var(--card);
}

.life-strip {
  gap: 44px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-color: var(--line);
  background: var(--paper-2);
  color: var(--ink);
}

.life-strip p {
  color: var(--orange-dark);
}

.life-strip span::before {
  color: var(--muted-dark);
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
  border-color: var(--line);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2,
.author-copy h2,
.offer-copy h2 {
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1;
  letter-spacing: -.05em;
}

.section-heading > p:last-child {
  margin-top: 19px;
  font-size: 18px;
}

.quiz-section {
  background: var(--paper);
}

.quiz-heading {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.quiz-heading > p:last-child {
  margin-right: 0;
  margin-left: 0;
}

.quiz-card {
  border: 1px solid var(--line);
  background: var(--card);
}

.quiz-progress {
  padding: 16px 22px;
  border-bottom: 0;
  background: var(--ink);
}

.quiz-progress > div {
  height: 6px;
  border-color: var(--muted);
}

.quiz-grid {
  gap: 18px;
  padding: 18px;
  background: var(--paper);
}

.quiz-grid fieldset,
.quiz-grid fieldset:last-child {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--card);
}

.quiz-grid legend {
  min-height: 54px;
}

.quiz-grid legend span {
  border: 1px solid var(--ink);
  background: var(--paper-2);
}

.quiz-grid label {
  border-color: var(--line);
  background: var(--soft-white);
}

.quiz-grid label:hover {
  border-color: var(--muted);
}

.quiz-grid label.selected {
  border-color: var(--orange-dark);
  background: var(--blush);
}

.quiz-grid label.selected::before {
  border-color: var(--ink);
  background: var(--orange);
}

.quiz-result,
.quiz-result.visible {
  min-height: 88px;
  margin: 0 18px 18px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.result-icon {
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--orange);
  color: var(--ink);
}

.program-section {
  background: var(--paper-2);
}

.program-heading {
  gap: 56px;
}

.timeline {
  display: grid;
  gap: 14px;
  border: 0;
}

.week-card,
.week-card:nth-child(even) {
  min-height: 190px;
  border: 1px solid var(--line);
  background: var(--card);
}

.week-number {
  font-size: 36px;
}

.week-body h3 {
  font-size: 28px;
}

.level-chip {
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--orange-dark);
}

.timeline-index,
.week-card:nth-child(even) .timeline-index {
  color: var(--paper-2);
}

.method-section {
  gap: 68px;
  background: var(--paper);
  color: var(--ink);
}

.method-copy > p:last-child {
  color: var(--muted);
}

.method-grid {
  border-color: var(--line);
}

.method-grid article,
.method-grid article:nth-child(2),
.method-grid .lexicon-card {
  border-color: var(--line);
  background: var(--card);
  color: var(--ink);
}

.method-grid .lexicon-card {
  border-top: 4px solid var(--orange);
}

.method-grid article > span {
  color: var(--orange-dark);
}

.lexicon-features li {
  border-color: var(--line);
  background: var(--paper-2);
}

.author-section {
  gap: 76px;
  background: var(--paper-2);
}

.author-photo {
  border: 1px solid var(--line);
  background: var(--card);
}

.author-photo::before {
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--sky);
}

.experience-badge {
  right: -22px;
  width: 132px;
  min-height: 132px;
  border: 7px solid var(--paper-2);
  outline: 1px solid var(--line);
  background: var(--ink);
  color: var(--soft-white);
}

.fact-list {
  border-color: var(--line);
}

.fact-list li,
.fact-list li:nth-child(2),
.fact-list li:nth-child(3) {
  border-color: var(--line);
  background: var(--card);
}

.fact-list li:first-child {
  border-top: 4px solid var(--orange);
}

.projects span {
  border-color: var(--line);
  background: var(--paper);
}

.reviews-section {
  background: var(--paper);
}

.reviews-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.reviews-heading > p:last-child {
  margin-right: 0;
  margin-left: 0;
  color: var(--muted);
}

.reviews-grid {
  border-color: var(--line);
}

.reviews-grid article,
.reviews-grid .review-featured {
  min-height: 320px;
  border-color: var(--line);
  background: var(--card);
  color: var(--ink);
}

.reviews-grid .review-featured {
  border-top: 5px solid var(--orange);
}

.quote-mark {
  color: var(--orange-dark);
}

.review-featured footer span {
  color: var(--muted);
  opacity: 1;
}

.guarantee-section {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(220px, 290px);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  overflow: hidden;
  padding: 54px clamp(20px, 7vw, 110px);
  border-bottom: 1px solid var(--muted);
  background: var(--ink);
  color: var(--soft-white);
}

.guarantee-section::after {
  content: "";
  position: absolute;
  top: -24px;
  right: 7%;
  width: 54px;
  height: 54px;
  background: var(--orange);
  transform: rotate(45deg);
}

.guarantee-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.guarantee-label span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 21px;
}

.guarantee-copy > p {
  margin: 0 0 8px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 3.7vw, 54px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.guarantee-note {
  max-width: 290px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.55;
}

.offer-section {
  gap: 76px;
  background: var(--paper-2);
}

.payment-note > span {
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--green);
}

.price-card {
  border: 1px solid var(--line);
  border-top: 6px solid var(--orange);
  background: var(--card);
  color: var(--ink);
}

.price-top {
  padding-top: 26px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.price-top p b {
  font-size: 80px;
}

.price-card li::before {
  color: var(--orange-dark);
}

.price-card .button {
  background: var(--orange);
}

.secure-line {
  color: var(--muted);
}

.faq-section {
  gap: 76px;
  background: var(--paper);
}

.faq-list {
  border-color: var(--line);
}

.faq-list details,
.faq-list details[open] {
  border-color: var(--line);
  background: var(--card);
}

.faq-list details[open] {
  border-left: 4px solid var(--orange);
}

.final-cta {
  padding-top: 92px;
  padding-bottom: 92px;
  border-color: var(--line);
  background: var(--ink);
  color: var(--soft-white);
}

.final-cta::before {
  top: 42px;
  left: 8%;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--orange);
}

.final-cta::after {
  right: 9%;
  bottom: 48px;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--sky);
}

.final-cta .eyebrow {
  color: var(--soft-white);
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(46px, 6vw, 78px);
  letter-spacing: -.05em;
  text-transform: none;
}

.button-light,
.button-light:hover {
  background: var(--orange);
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--muted);
}

@media (max-width: 1050px) {
  .hero::before {
    left: 46%;
  }

  .program-heading,
  .method-section,
  .author-section,
  .offer-section,
  .faq-section {
    gap: 46px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero::before {
    top: 32px;
    right: 20px;
    width: 14px;
    height: 14px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .trust-list li,
  .trust-list li:nth-child(2),
  .trust-list li:nth-child(3) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .trust-list b {
    font-size: 16px;
  }

  .trust-list span {
    font-size: 12px;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 16px;
  }

  .hero-ring-one {
    right: -20%;
    width: 430px;
  }

  .hero-ring-two {
    top: 36px;
    right: 3%;
    width: 38px;
    height: 38px;
  }

  .portrait-shell {
    width: 330px;
    height: 425px;
  }

  .speech-card {
    bottom: 16px;
  }

  .life-strip {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .author-copy h2,
  .offer-copy h2 {
    font-size: 37px;
    line-height: 1.03;
  }

  .quiz-heading,
  .reviews-heading {
    text-align: left;
  }

  .quiz-progress {
    padding: 15px 17px;
  }

  .quiz-grid {
    gap: 12px;
    padding: 12px;
  }

  .quiz-grid fieldset,
  .quiz-grid fieldset:last-child {
    padding: 18px 14px;
    border: 1px solid var(--line);
  }

  .quiz-grid legend {
    min-height: 0;
    margin-bottom: 12px;
    font-size: 17px;
  }

  .quiz-grid label {
    min-height: 54px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .quiz-result,
  .quiz-result.visible {
    min-height: 0;
    margin: 0 12px 12px;
    padding: 18px 14px;
  }

  .program-heading,
  .method-section,
  .author-section,
  .offer-section,
  .faq-section {
    gap: 28px;
  }

  .timeline {
    gap: 10px;
  }

  .week-card {
    min-height: 0;
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .method-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .method-grid article {
    padding: 18px;
  }

  .author-photo::before {
    top: -12px;
    right: -12px;
    width: 34px;
    height: 34px;
  }

  .author-photo > .experience-badge {
    right: -18px;
    width: 120px;
    min-height: 120px;
  }

  .reviews-grid {
    gap: 12px;
    border: 0;
  }

  .reviews-grid article,
  .reviews-grid .review-featured {
    min-height: 0;
    border: 1px solid var(--line);
  }

  .reviews-grid article > p {
    min-height: 0;
  }

  .guarantee-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 18px;
  }

  .guarantee-section::after {
    top: -18px;
    right: 22px;
    width: 40px;
    height: 40px;
  }

  .guarantee-label {
    max-width: 190px;
  }

  .guarantee-label span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .guarantee-copy h2 {
    font-size: 36px;
  }

  .guarantee-note {
    max-width: none;
    font-size: 15px;
  }

  .offer-section {
    padding-bottom: 72px;
  }

  .final-cta {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .final-cta::before {
    top: 22px;
    left: 18px;
    width: 34px;
    height: 34px;
  }

  .final-cta::after {
    right: 20px;
    bottom: 24px;
    width: 28px;
    height: 28px;
  }

  .final-cta h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .mobile-buy {
    border: 1px solid var(--ink);
    background: var(--orange);
  }
}
