@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #151512;
  --ink-soft: #3f403c;
  --muted: #72736c;
  --paper: #f8f7f3;
  --paper-deep: #efede7;
  --white: #ffffff;
  --gold: #b28a43;
  --gold-light: #d9bb79;
  --gold-pale: #f1e7d1;
  --line: rgba(21, 21, 18, 0.13);
  --line-light: rgba(255, 255, 255, 0.15);
  --dark: #11110f;
  --dark-soft: #1b1b18;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shadow-soft: 0 1.5rem 4rem rgba(25, 22, 15, 0.08);
  --shadow-card: 0 1.25rem 3rem rgba(25, 22, 15, 0.12);
  --container: 75rem;
  --header-height: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.65rem, 12vw, 4.8rem);
  font-weight: 520;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 9vw, 4.25rem);
  font-weight: 470;
}

h3 {
  font-size: 1.3rem;
  font-weight: 620;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 380;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 12vw, 9rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.55rem;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.section-heading {
  max-width: 43rem;
}

.section-heading--wide {
  max-width: 61rem;
}

.section-lead {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--gold);
  border-radius: 0.55rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: var(--gold-light);
  box-shadow: 0 0.85rem 2rem rgba(178, 138, 67, 0.24);
}

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

.button--small {
  min-height: 2.7rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.75rem;
}

.button--primary {
  min-height: 3.8rem;
  padding-inline: 1.5rem;
}

.button--primary span {
  font-size: 1.05rem;
  transition: transform 220ms var(--ease);
}

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

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

.button[aria-disabled="true"] {
  cursor: not-allowed;
  border-color: var(--line);
  background: var(--paper-deep);
  color: var(--muted);
  box-shadow: none;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link span {
  color: var(--gold);
  transition: transform 220ms var(--ease);
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.text-link:hover span {
  transform: translateX(3px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(248, 247, 243, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 0.5rem 1.5rem rgba(21, 21, 18, 0.04);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::after {
  position: absolute;
  width: 1rem;
  height: 2.5rem;
  transform: rotate(35deg) translateX(1.6rem);
  background: var(--gold);
  content: "";
}

.brand-mark span {
  z-index: 1;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand-name {
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: auto;
  place-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.3rem;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.2rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.2rem) rotate(-45deg);
}

.mobile-nav {
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  padding: 1.5rem 1rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.mobile-nav > a:not(.button) {
  padding: 1rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  font-weight: 580;
}

.mobile-nav .button {
  margin-top: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 3.6rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 70%),
    var(--paper);
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(229, 225, 215, 0.38));
  pointer-events: none;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 2rem;
  right: -15rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(178, 138, 67, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 7rem rgba(178, 138, 67, 0.035),
    0 0 0 14rem rgba(178, 138, 67, 0.02);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 37rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.hero-trust {
  display: flex;
  margin: 1.6rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 620;
}

.hero-trust span {
  margin-right: 0.28rem;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 29rem;
  isolation: isolate;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(178, 138, 67, 0.18);
  border-radius: 50%;
}

.visual-orbit--one {
  inset: 2% 2% 7%;
}

.visual-orbit--two {
  inset: 15% 14% 21%;
}

.product-stage {
  position: absolute;
  inset: 1.5rem 0.5rem 2.5rem;
  transform: perspective(60rem) rotateX(2deg);
}

.product-stage::after {
  position: absolute;
  z-index: -1;
  right: 9%;
  bottom: 3%;
  left: 4%;
  height: 13%;
  transform: rotate(-2deg);
  border-radius: 50%;
  background: rgba(25, 22, 15, 0.22);
  filter: blur(1.2rem);
  content: "";
}

.book {
  position: absolute;
  width: 10.5rem;
  aspect-ratio: 0.71;
  transform-style: preserve-3d;
  filter: drop-shadow(0 1.4rem 1.2rem rgba(23, 20, 14, 0.21));
}

.book--front {
  z-index: 3;
  bottom: 11%;
  left: 10%;
  transform: perspective(50rem) rotateY(-11deg) rotateZ(-3deg);
}

.book--back {
  z-index: 2;
  top: 7%;
  right: 11%;
  transform: perspective(50rem) rotateY(9deg) rotateZ(4deg);
}

.book-cover {
  position: absolute;
  display: flex;
  inset: 0;
  flex-direction: column;
  padding: 1rem;
  overflow: hidden;
  border-radius: 0.25rem 0.5rem 0.5rem 0.25rem;
  background:
    radial-gradient(circle at 110% 110%, rgba(208, 171, 96, 0.38), transparent 45%),
    var(--dark);
  color: var(--white);
}

.book--back .book-cover {
  background:
    linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.15) 45.2%, transparent 45.6%),
    var(--gold);
  color: var(--ink);
}

.book-cover::after {
  position: absolute;
  right: -35%;
  bottom: -15%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
  content: "";
}

.book-cover--image {
  padding: 0;
  background: #101827;
}

.book-cover--image::after {
  display: none;
}

.book-cover--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-spine {
  position: absolute;
  z-index: 3;
  top: 2%;
  bottom: 1%;
  left: -0.42rem;
  width: 0.48rem;
  transform: skewY(45deg);
  border-radius: 0.15rem 0 0 0.15rem;
  background: #2d2d29;
}

.book--back .book-spine {
  background: #8e6c31;
}

.cover-brand {
  font-size: 0.34rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cover-index {
  margin-top: 2rem;
  color: var(--gold-light);
  font-size: 0.55rem;
  font-weight: 700;
}

.book--back .cover-index {
  color: var(--ink);
}

.cover-title {
  margin-top: 0.5rem;
  font-size: 1.7rem;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.cover-subtitle {
  margin-top: auto;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.video-card {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 4%;
  width: 12.5rem;
  aspect-ratio: 1.62;
  transform: perspective(50rem) rotateX(5deg) rotateY(-8deg) rotateZ(-2deg);
  padding: 0.32rem;
  border-radius: 0.65rem;
  background: #33332f;
  box-shadow: 0 1.3rem 2rem rgba(25, 22, 15, 0.25);
}

.video-screen {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 0.8rem;
  overflow: hidden;
  border-radius: 0.42rem;
  background:
    radial-gradient(circle at 80% 15%, rgba(178, 138, 67, 0.34), transparent 34%),
    #181815;
  color: white;
}

.video-screen::after {
  position: absolute;
  right: -16%;
  bottom: -43%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 187, 121, 0.55);
  border-radius: 50%;
  content: "";
}

.video-kicker {
  font-size: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.video-title {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-left: 0.45rem solid var(--gold-light);
}

.visual-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0.8rem 2rem rgba(23, 20, 14, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visual-note strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.visual-note span {
  color: var(--ink-soft);
  font-size: 0.53rem;
  font-weight: 650;
  line-height: 1.3;
}

.visual-note--pages {
  top: 4%;
  left: 1%;
}

.visual-note--formats {
  right: 3%;
  bottom: 1%;
}

.note-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold-pale);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 1.5rem;
  padding-block: 1.5rem 2.1rem;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  gap: 1.5rem 1rem;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.problem-layout {
  display: grid;
  margin-top: clamp(3rem, 8vw, 5.5rem);
  gap: 3rem;
}

.problem-statement {
  position: relative;
  display: flex;
  min-height: 13rem;
  align-items: flex-end;
  padding: 1.8rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
}

.problem-statement::before {
  position: absolute;
  top: -30%;
  right: -18%;
  width: 13rem;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 187, 121, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(217, 187, 121, 0.05);
  content: "";
}

.problem-statement p {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  line-height: 1.35;
}

.statement-line {
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  width: 2.5rem;
  height: 1px;
  background: var(--gold-light);
}

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

.friction-item {
  display: grid;
  padding-block: 1.5rem;
  grid-template-columns: 2.3rem 1fr;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.friction-number {
  padding-top: 0.17rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
}

.friction-item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.friction-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

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

.solution-intro,
.bundle-heading,
.contents-header {
  display: grid;
  gap: 1rem;
}

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

.process-card {
  position: relative;
  min-height: 20rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
  transition: transform 300ms var(--ease), border-color 300ms ease, background-color 300ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 138, 67, 0.5);
  background: var(--white);
}

.process-index {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
}

.process-icon {
  position: relative;
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  margin: 2rem 0 3.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.process-icon--focus::before,
.process-icon--focus::after {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.process-icon--focus::before {
  width: 2.7rem;
  height: 2.7rem;
}

.process-icon--focus::after {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}

.process-icon--order {
  gap: 0.4rem;
}

.process-icon--order i {
  display: block;
  width: 2.7rem;
  height: 1px;
  background: var(--gold);
}

.process-icon--order i:nth-child(2) {
  width: 1.8rem;
  margin-left: -0.9rem;
}

.process-icon--order i:nth-child(3) {
  width: 1.1rem;
  margin-left: -1.6rem;
}

.process-icon--move i {
  position: relative;
  width: 2.7rem;
  height: 1px;
  background: var(--gold);
}

.process-icon--move i::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.65rem;
  height: 0.65rem;
  transform: rotate(-45deg);
  transform-origin: bottom right;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.section--bundle {
  background: var(--white);
}

.product-cards {
  display: grid;
  margin-top: 3.5rem;
  gap: 1rem;
}

.product-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 138, 67, 0.45);
  box-shadow: var(--shadow-soft);
}

.product-card--featured {
  border-color: rgba(178, 138, 67, 0.35);
  background: var(--gold-pale);
}

.product-card__tag {
  position: absolute;
  top: 0;
  right: 1.4rem;
  padding: 0.35rem 0.65rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__number,
.product-card__meta {
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.product-card__number {
  color: var(--gold);
}

.product-card__meta {
  color: var(--muted);
}

.product-card__glyph {
  display: grid;
  width: 5.2rem;
  height: 6rem;
  margin: 2.5rem 0 2.1rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.3rem 0.65rem 0.65rem 0.3rem;
  background: var(--white);
  box-shadow: 0.5rem 0.7rem 1rem rgba(21, 21, 18, 0.07);
}

.product-card__glyph--book span {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.08em;
}

.product-card__glyph--workbook {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-inline: 1.15rem;
  gap: 0.5rem;
}

.product-card__glyph--workbook i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.product-card__glyph--workbook i:last-child {
  width: 60%;
}

.product-card__glyph--video {
  width: 7.5rem;
  height: 4.7rem;
  border-radius: 0.5rem;
  background: var(--dark);
}

.product-card__glyph--video span {
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.65rem solid var(--gold-light);
}

.product-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.product-card > p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.product-card ul {
  margin: 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-card li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.product-card li::before {
  position: absolute;
  top: 0.86rem;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.benefits-grid {
  display: grid;
  gap: 3.5rem;
}

.benefits-copy .section-lead {
  margin-bottom: 1.5rem;
}

.benefit-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.benefit-list li {
  display: grid;
  padding-block: 1.4rem;
  grid-template-columns: 2.7rem 1fr;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.benefit-check {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(178, 138, 67, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
}

.benefit-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section--contents {
  background: var(--white);
}

.chapter-list {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.chapter {
  display: grid;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
  gap: 1.1rem;
}

.chapter-index {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chapter-index span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
}

.chapter-index i {
  width: 1.5rem;
  height: 1px;
  background: var(--line);
}

.chapter-label {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.chapter h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.chapter > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section--overview {
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.overview-glow,
.cta-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(217, 187, 121, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(217, 187, 121, 0.025);
  pointer-events: none;
}

.overview-glow {
  top: -12rem;
  left: -12rem;
}

.overview-grid {
  position: relative;
  display: grid;
  gap: 3.5rem;
}

.overview-copy {
  max-width: 37rem;
}

.overview-copy h2 {
  font-size: clamp(2.3rem, 9vw, 4.7rem);
}

.overview-copy p:last-child {
  max-width: 31rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.overview-panel {
  padding: 0.8rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

.overview-row {
  display: grid;
  min-height: 5.2rem;
  align-items: center;
  padding: 1rem 0.7rem;
  grid-template-columns: 2.1rem 1fr 2rem;
  border-bottom: 1px solid var(--line-light);
  gap: 0.8rem;
}

.overview-row > span {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 750;
}

.overview-row div {
  display: flex;
  flex-direction: column;
}

.overview-row strong {
  font-size: 0.95rem;
}

.overview-row small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
}

.overview-row i {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid rgba(217, 187, 121, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-style: normal;
}

.overview-summary {
  display: flex;
  padding: 1.4rem 0.7rem 0.6rem;
  flex-direction: column;
  gap: 0.15rem;
}

.overview-summary span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.overview-summary strong {
  font-size: 1.15rem;
  font-weight: 520;
}

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

.authority-grid {
  display: grid;
  gap: 3rem;
}

.authority-mark {
  position: relative;
  display: grid;
  min-height: 19rem;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
}

.authority-mark::before,
.authority-mark::after {
  position: absolute;
  border: 1px solid rgba(178, 138, 67, 0.27);
  border-radius: 50%;
  content: "";
}

.authority-mark::before {
  width: 16rem;
  height: 16rem;
}

.authority-mark::after {
  width: 11rem;
  height: 11rem;
}

.authority-mark span {
  z-index: 1;
  font-size: 4.5rem;
  font-weight: 760;
  letter-spacing: -0.1em;
}

.authority-mark i {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.authority-copy h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
}

.authority-copy > p:not(.eyebrow) {
  max-width: 39rem;
  color: var(--muted);
}

.authority-values {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  gap: 0.6rem;
}

.authority-values span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 650;
}

.section--faq {
  background: var(--white);
}

.section--health-note {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--gold-pale);
}

.health-note {
  display: grid;
  padding-top: 2rem;
  border-top: 1px solid rgba(178, 138, 67, 0.4);
  gap: 1.5rem;
}

.health-note h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.health-note > div:last-child > p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.health-note .text-link {
  margin-top: 0.5rem;
}

.faq-grid {
  display: grid;
  gap: 3.5rem;
}

.faq-intro .section-lead {
  margin-bottom: 1.5rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  min-height: 4.8rem;
  align-items: center;
  padding: 1rem 0;
  grid-template-columns: 1fr 2rem;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 620;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 39rem;
  padding: 0 2.5rem 1.5rem 0;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.section--cta {
  overflow: hidden;
  background: var(--dark-soft);
  color: var(--white);
}

.cta-glow {
  right: -12rem;
  bottom: -16rem;
}

.cta-inner {
  position: relative;
  display: grid;
  gap: 3rem;
}

.cta-copy {
  max-width: 43rem;
}

.cta-copy h2 {
  font-size: clamp(2.5rem, 10vw, 5.15rem);
}

.cta-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
}

.offer-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.offer-card__header {
  display: flex;
  padding-bottom: 1.2rem;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  gap: 1rem;
}

.offer-card__header span {
  font-size: 1.25rem;
  font-weight: 600;
}

.offer-card__header small {
  color: var(--gold-light);
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: right;
}

.offer-card ul {
  margin: 1rem 0 1.3rem;
  padding: 0;
  list-style: none;
}

.offer-commercial {
  display: grid;
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(217, 187, 121, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  gap: 0.8rem;
}

.offer-commercial > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.offer-commercial small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
}

.offer-commercial > div strong {
  color: var(--gold-light);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  text-align: right;
}

.offer-commercial p {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.offer-commercial p strong {
  color: rgba(255, 255, 255, 0.9);
}

.offer-card li {
  display: flex;
  padding-block: 0.55rem;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.offer-card li span {
  color: var(--gold-light);
}

.offer-note {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  text-align: center;
}

.offer-note span {
  margin-right: 0.25rem;
  color: var(--gold-light);
}

.site-footer {
  padding-block: 4rem 1.5rem;
  background: #0b0b0a;
  color: var(--white);
}

.footer-top {
  display: grid;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
  gap: 2rem;
}

.brand--footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.72);
}

.footer-top > div > p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
}

.footer-mail {
  align-self: end;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-mail span {
  margin-left: 0.4rem;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  padding-top: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.65rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-bottom button,
.footer-bottom a {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  cursor: pointer;
}

.footer-bottom button:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.legal-dialog {
  width: min(100% - 2rem, 42rem);
  max-height: min(80vh, 46rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.legal-dialog::backdrop {
  background: rgba(10, 10, 9, 0.68);
  backdrop-filter: blur(4px);
}

.legal-dialog__header {
  display: flex;
  padding: 1.1rem 1.1rem 0;
  align-items: center;
  justify-content: space-between;
}

.legal-dialog__header .eyebrow {
  margin-bottom: 0;
}

.legal-dialog__header button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
}

.legal-dialog__body {
  max-height: calc(80vh - 5rem);
  padding: 1.25rem 1.25rem 2rem;
  overflow-y: auto;
}

.legal-dialog__body h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.legal-dialog__body h3 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.legal-dialog__body p {
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-dialog__body a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-placeholder {
  padding: 1rem;
  border: 1px solid rgba(178, 138, 67, 0.32);
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  color: var(--ink-soft) !important;
}

.legal-body {
  background: var(--paper);
}

.legal-header {
  position: sticky;
}

.legal-header .header-inner {
  justify-content: space-between;
}

.legal-back {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.legal-back span {
  color: var(--gold);
}

.legal-main {
  padding: calc(var(--header-height) + 4rem) 0 6rem;
}

.legal-hero {
  max-width: 55rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 9vw, 5rem);
}

.legal-hero > p:last-child {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  margin-top: 3rem;
  gap: 3rem;
}

.legal-toc {
  align-self: start;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
}

.legal-toc strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding-block: 0.38rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-toc a:hover {
  color: var(--gold);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 2.5rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.legal-content section + section {
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
}

.legal-content h3 {
  margin: 1.6rem 0 0.55rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content a {
  color: #735717;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-note {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--gold-pale);
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.legal-meta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.thanks-main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 3rem 0;
  place-items: center;
  background:
    radial-gradient(circle at 80% 15%, rgba(178, 138, 67, 0.16), transparent 34%),
    var(--dark);
  color: var(--white);
}

.thanks-card {
  width: min(100% - 2rem, 47rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.thanks-card h1 {
  font-size: clamp(2.5rem, 9vw, 4.6rem);
}

.thanks-card > p {
  color: rgba(255, 255, 255, 0.68);
}

.thanks-steps {
  display: grid;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  gap: 0.75rem;
}

.thanks-steps li {
  display: grid;
  padding: 1rem;
  grid-template-columns: 2rem 1fr;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  gap: 0.8rem;
}

.thanks-steps span {
  color: var(--gold-light);
  font-weight: 750;
}

.thanks-charge {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 750;
}

.noscript-note {
  position: fixed;
  z-index: 2000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  background: var(--gold-pale);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  font-size: 0.75rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@media (min-width: 40rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .hero {
    padding-top: calc(var(--header-height) + 5rem);
  }

  .hero-visual {
    min-height: 36rem;
  }

  .book {
    width: 13.5rem;
  }

  .book--front {
    left: 13%;
  }

  .video-card {
    right: 4%;
    width: 16rem;
  }

  .cover-title {
    font-size: 2.15rem;
  }

  .hero-proof {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-proof div + div {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }

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

  .process-card {
    min-height: 25rem;
  }

  .product-card {
    padding: 2rem;
  }

  .chapter {
    grid-template-columns: 4.5rem minmax(14rem, 1fr) minmax(13rem, 0.8fr);
    align-items: center;
  }

  .overview-panel {
    padding: 1.2rem;
  }

  .offer-card {
    padding: 1.8rem;
  }

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 60rem) {
  :root {
    --header-height: 5.25rem;
  }

  .desktop-nav {
    display: flex;
    margin-left: auto;
    gap: 2rem;
  }

  .desktop-nav a {
    position: relative;
    padding-block: 0.75rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 650;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--gold);
    content: "";
    transition: transform 220ms var(--ease);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-cta {
    display: inline-flex;
    margin-left: 2rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 4.5rem);
  }

  .hero-grid {
    min-height: 39rem;
    align-items: center;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 2rem;
  }

  .hero-copy {
    padding-bottom: 2rem;
  }

  h1 {
    font-size: clamp(4rem, 5.2vw, 5.35rem);
  }

  .hero-visual {
    min-height: 39rem;
  }

  .book {
    width: 15rem;
  }

  .book--front {
    bottom: 10%;
    left: 5%;
  }

  .book--back {
    top: 3%;
    right: 8%;
  }

  .video-card {
    right: 0;
    bottom: 2%;
    width: 17.5rem;
  }

  .visual-note--pages {
    top: 1%;
    left: 0;
  }

  .hero-proof {
    margin-top: 0;
  }

  .problem-layout {
    grid-template-columns: minmax(18rem, 0.77fr) minmax(0, 1.23fr);
    gap: 6rem;
  }

  .problem-statement {
    min-height: 24rem;
    padding: 2.4rem;
  }

  .statement-line {
    top: 2.4rem;
    left: 2.4rem;
  }

  .friction-item {
    padding-block: 1.8rem;
    grid-template-columns: 3rem 1fr;
  }

  .solution-intro,
  .bundle-heading,
  .contents-header {
    align-items: end;
    justify-content: space-between;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.65fr);
    gap: 5rem;
  }

  .process {
    margin-top: 5rem;
  }

  .process-card {
    min-height: 28rem;
    padding: 2rem;
  }

  .process-icon {
    margin-block: 3.2rem 5rem;
  }

  .product-cards {
    margin-top: 5rem;
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card {
    min-height: 35rem;
  }

  .product-card--featured {
    transform: translateY(-1rem);
  }

  .product-card--featured:hover {
    transform: translateY(-1.3rem);
  }

  .benefits-grid {
    align-items: start;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 7rem;
  }

  .benefits-copy {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
  }

  .chapter {
    min-height: 7rem;
    padding-block: 1.8rem;
    grid-template-columns: 5rem minmax(17rem, 1fr) minmax(18rem, 0.75fr);
    gap: 2rem;
  }

  .overview-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.75fr);
    gap: 7rem;
  }

  .overview-panel {
    padding: 1.4rem;
  }

  .authority-grid {
    align-items: center;
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
    gap: 7rem;
  }

  .authority-mark {
    min-height: 32rem;
  }

  .authority-mark span {
    font-size: 7rem;
  }

  .faq-grid {
    align-items: start;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 7rem;
  }

  .health-note {
    align-items: start;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 7rem;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
  }

  .faq-item summary {
    min-height: 5.5rem;
  }

  .cta-inner {
    align-items: center;
    grid-template-columns: minmax(0, 1.3fr) minmax(22rem, 0.7fr);
    gap: 6rem;
  }

  .footer-top {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .legal-layout {
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: 5rem;
  }

  .legal-toc {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

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

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

@media (forced-colors: active) {
  .button,
  .brand-mark,
  .benefit-check,
  .overview-row i {
    border: 1px solid ButtonText;
  }
}
