:root {
  color-scheme: light dark;
  --bg: #fbfaf7;
  --bg-rgb: 251, 250, 247;
  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --ink: #0b0b0f;
  --ink-rgb: 11, 11, 15;
  --shadow-rgb: 0, 0, 0;
  --muted: #4a4a57;
  --line: rgba(var(--ink-rgb), 0.12);
  --shadow: 0 20px 60px rgba(var(--shadow-rgb), 0.08);

  --accent: #1f2a44;
  --accent-2: #caa35a;

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --gutter: 20px;

  --h1: clamp(40px, 5vw, 64px);
  --h2: clamp(26px, 3.1vw, 36px);
  --h3: 18px;
  --lead: clamp(18px, 2vw, 20px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: radial-gradient(1100px 600px at 15% 10%, rgba(202, 163, 90, 0.14), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(31, 42, 68, 0.10), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

html[data-theme="dark"] {
  --bg: #0b0b0f;
  --bg-rgb: 11, 11, 15;
  --surface: #111118;
  --surface-rgb: 17, 17, 24;
  --ink: #f5f5f7;
  --ink-rgb: 245, 245, 247;
  --muted: #b8b8c4;
  --line: rgba(var(--ink-rgb), 0.14);
  --shadow: 0 20px 60px rgba(var(--shadow-rgb), 0.55);
  --accent: #B58B2F;
}

html[data-theme="dark"] body {
  background: radial-gradient(1100px 600px at 15% 10%, rgba(202, 163, 90, 0.10), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(31, 42, 68, 0.26), transparent 60%),
    var(--bg);
}

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.92em;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 9999;
}

.skip:focus {
  left: 14px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(var(--bg-rgb), 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 200ms ease;
  will-change: transform;
}

.header--hidden {
  transform: translateY(calc(-1 * var(--header-h, 72px)));
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(202, 163, 90, 0.16);
}

.brand__name {
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(var(--ink-rgb), 0.82);
  font-size: 14px;
}

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

.theme-toggle {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle__track {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.66);
  box-shadow: 0 8px 24px rgba(var(--shadow-rgb), 0.06);
  position: relative;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.theme-toggle__thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background: var(--ink);
  transition: transform 160ms ease, background 160ms ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
  transform: translateY(-50%) translateX(18px);
  background: #B58B2F;
}

.theme-toggle:focus-visible .theme-toggle__track {
  outline: 2px solid rgba(181, 139, 47, 0.40);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease,
    border-color 140ms ease;
  box-shadow: 0 8px 24px rgba(var(--shadow-rgb), 0.06);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(var(--shadow-rgb), 0.10);
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #111827);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--primary:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost {
  background: rgba(var(--surface-rgb), 0.6);
}

.btn--small {
  padding: 10px 14px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h, 0px));
  display: grid;
  align-items: center;
  padding: 42px 0 64px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.62);
  box-shadow: 0 14px 44px rgba(var(--shadow-rgb), 0.06);
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 13px;
  backdrop-filter: blur(10px);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 18px 60px rgba(var(--shadow-rgb), 0.08);
}

.scroll-indicator__label {
  font-weight: 650;
  letter-spacing: 0.2px;
}

.scroll-indicator__icon {
  width: 18px;
  height: 18px;
  animation: scroll-bounce 1.4s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.eyebrow {
  color: #B58B2F;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.tick {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B58B2F;
  font-weight: 750;
}

h1 {
  font-size: var(--h1);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2);
  line-height: 1.14;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

h2 + .sublead {
  margin-top: 0;
}

.bullets + h2 {
  margin-top: 34px;
}

h3 {
  font-size: var(--h3);
  margin: 0 0 8px;
}

p {
  font-size: 17px;
}

.lead {
  font-size: var(--lead);
  color: rgba(var(--ink-rgb), 0.86);
  margin: 0 0 18px;
}

.sublead {
  margin: 0 0 18px;
  color: rgba(var(--ink-rgb), 0.74);
  max-width: 70ch;
}

.cred {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.62);
  box-shadow: 0 10px 40px rgba(var(--shadow-rgb), 0.06);
}

.cred__line {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.82);
  font-size: 14px;
}

.cred__line + .cred__line {
  margin-top: 6px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.micro {
  margin: 0;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.68);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.7);
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.74);
}

.book__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31, 42, 68, 0.10), rgba(202, 163, 90, 0.08));
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  box-shadow: var(--shadow);
  padding: 14px;
}

.hero .book__frame {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.hero .book__placeholder {
  inset: 0;
  border: none;
  border-radius: 0;
}

.hero .book__img {
  border: none;
  border-radius: 0;
  box-shadow:
    -28px 34px 90px rgba(var(--shadow-rgb), 0.16),
    -8px 14px 28px rgba(var(--shadow-rgb), 0.10);
}

.book__placeholder {
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px solid rgba(var(--ink-rgb), 0.10);
  background:
    radial-gradient(600px 380px at 20% 20%, rgba(202, 163, 90, 0.18), transparent 55%),
    radial-gradient(520px 320px at 80% 10%, rgba(31, 42, 68, 0.16), transparent 60%),
    rgba(var(--surface-rgb), 0.72);
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 18px;
}

.book__ph-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(var(--ink-rgb), 0.62);
  font-weight: 700;
  text-transform: uppercase;
}

.book__ph-title {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.book__ph-sub {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.62);
}

.book__img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(var(--ink-rgb), 0.10);
  background: rgba(var(--surface-rgb), 0.6);
  position: relative;
  z-index: 1;
}

.book__hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(var(--ink-rgb), 0.60);
}

.section {
  padding: 54px 0;
}

.section--tight {
  padding: 36px 0;
}

.section--spotlight {
  padding: 84px 0 74px;
}

.section--spotlight .center-stack {
  gap: 22px;
}

.section--spotlight h2 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section--spotlight .sublead {
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.8;
  color: rgba(var(--ink-rgb), 0.74);
  max-width: 78ch;
}

.section--spotlight .media {
  margin-top: 6px;
  margin-bottom: 4px;
}

.section--spotlight .media--wide {
  max-width: min(1180px, 100%);
}

.section--spotlight .media__frame {
  border-radius: 0;
  box-shadow:
    -28px 34px 90px rgba(var(--shadow-rgb), 0.14),
    -8px 14px 28px rgba(var(--shadow-rgb), 0.08);
}

.section--spotlight .center-stack__kicker {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.22em;
  font-weight: 750;
}

.section--spotlight .center-stack__text {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.9;
  color: rgba(var(--ink-rgb), 0.72);
  max-width: 82ch;
}

.section--cta {
  padding: 48px 0 82px;
}

.section-spacer {
  height: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.grid-2--value {
  margin-top: 18px;
}

.center-stack {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.center-stack__text {
  max-width: 78ch;
  margin: 0;
  color: rgba(var(--ink-rgb), 0.78);
}

.center-stack__kicker {
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.62);
}

.media {
  width: 100%;
}

.media--wide {
  max-width: 980px;
}

.media--pages {
  display: none;
}

.page-grid {
  display: grid;
  gap: 16px;
}

.page__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page__img--left {
  object-position: left center;
}

.page__img--right {
  object-position: right center;
}

.media--portrait {
  max-width: 360px;
}

.media--cta {
  max-width: 900px;
}

.media__frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--surface-rgb), 0.62);
  box-shadow: var(--shadow);
}

.media__frame--plain {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.media__frame--plain .media__placeholder {
  background: rgba(var(--surface-rgb), 0.4);
}

.media__img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.media__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 22px;
  background:
    radial-gradient(720px 420px at 18% 15%, rgba(202, 163, 90, 0.18), transparent 58%),
    radial-gradient(640px 380px at 85% 5%, rgba(31, 42, 68, 0.16), transparent 62%),
    rgba(var(--surface-rgb), 0.78);
}

.media__ph-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(var(--ink-rgb), 0.62);
  font-weight: 700;
  text-transform: uppercase;
}

.media__ph-title {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.media__ph-sub {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.62);
}

.value-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.value-point {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.70);
  padding: 14px;
  box-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.05);
}

.value-point__title {
  font-weight: 750;
  margin-bottom: 6px;
}

.value-point__text {
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.offer {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.70);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.05);
}

.offer__tag {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #B58B2F;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offer__text {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.74);
}

.contact-cta {
  margin-top: 14px;
  text-align: center;
}

.link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.card--soft {
  background: rgba(var(--surface-rgb), 0.62);
}

.card__title {
  margin: 0 0 8px;
}

.card__text {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.76);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.feature {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.70);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.05);
}

.feature p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.74);
}

.feature--cta {
  background: linear-gradient(180deg, rgba(31, 42, 68, 0.10), rgba(var(--surface-rgb), 0.90));
}

.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.66);
  box-shadow: var(--shadow);
  padding: 18px;
}

.steps {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.78);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(31, 42, 68, 0.10);
  border: 1px solid rgba(31, 42, 68, 0.18);
  font-weight: 700;
  color: rgba(var(--ink-rgb), 0.82);
  flex: 0 0 auto;
}

.step__body {
  color: rgba(var(--ink-rgb), 0.78);
}

.chapters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.chapter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.70);
  padding: 16px;
  box-shadow: 0 10px 34px rgba(var(--shadow-rgb), 0.05);
}

.chapter__iconbox {
  width: 86px;
  height: 86px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.chapter__icon {
  width: 86px;
  height: 86px;
  display: block;
}

.chapter__icon--dark {
  display: none;
}

html[data-theme="dark"] .chapter__icon--light {
  display: none;
}

html[data-theme="dark"] .chapter__icon--dark {
  display: block;
}

.chapter__iconbox--fallback .chapter__icon--dark {
  display: none !important;
}

html[data-theme="dark"] .chapter__iconbox--fallback .chapter__icon--light {
  display: block !important;
}

.chapter p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.74);
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(var(--ink-rgb), 0.74);
}

.bullets li {
  margin: 8px 0;
}

.bullets--compact {
  margin-top: 6px;
}

.bullets--compact li {
  margin: 6px 0;
}

.inline-cta {
  margin-top: 18px;
  display: grid;
  justify-items: start;
  gap: 10px;
}

.trust {
  border: none;
  background: transparent;
  box-shadow: none;
}

.trust__inner {
  padding: 0;
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

.trust__title {
  margin: 0 0 10px;
  font-weight: 850;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.trust__sub {
  margin: 0 auto;
  color: rgba(var(--ink-rgb), 0.70);
  max-width: 78ch;
}

.trust__quote {
  margin: 22px auto 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  text-align: center;
  width: 100%;
  box-shadow: none;
}

.trust__quote-text {
  margin: 0 0 10px;
  color: rgba(var(--ink-rgb), 0.78);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.85;
}

.trust__quote-meta {
  color: rgba(var(--ink-rgb), 0.62);
  font-size: 15px;
  text-align: center;
  margin-top: 12px;
}

.quote {
  border-radius: var(--radius);
  border: 1px solid rgba(202, 163, 90, 0.22);
  background: linear-gradient(90deg, rgba(202, 163, 90, 0.10), rgba(var(--surface-rgb), 0.72));
  padding: 18px;
  box-shadow: 0 14px 50px rgba(var(--shadow-rgb), 0.06);
}

.quote__text {
  margin: 0 0 6px;
  font-weight: 600;
  color: rgba(var(--ink-rgb), 0.80);
}

.quote__meta {
  margin: 0;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.62);
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(var(--ink-rgb), 0.78);
}

.list--checks {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.list--checks li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.list--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.muted {
  color: rgba(var(--ink-rgb), 0.64);
  margin: 12px 0 0;
}

.about {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.about--center {
  align-items: center;
}

.about--center .about__copy {
  text-align: left;
  justify-self: center;
  max-width: 72ch;
}

.about--center .about__copy h2 {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.about__p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.76);
  font-size: 17px;
  line-height: 1.8;
}


.about__p + .about__p {
  margin-top: 12px;
}

.signature {
  margin-top: 18px;
  position: relative;
  width: min(340px, 100%);
  height: 54px;
  margin-left: 0;
  margin-right: auto;
}

.signature__placeholder {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(var(--ink-rgb), 0.18);
  background: rgba(var(--surface-rgb), 0.55);
  color: rgba(var(--ink-rgb), 0.58);
  font-size: 13px;
  border-radius: 12px;
}

.signature__img {
  position: relative;
  z-index: 1;
  height: 54px;
  width: auto;
  max-width: 100%;
  opacity: 0.92;
}

.badge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.70);
  padding: 16px;
  box-shadow: 0 14px 44px rgba(var(--shadow-rgb), 0.05);
}

.badge__title {
  font-weight: 700;
  margin-bottom: 6px;
}

.badge__text {
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 14px;
  margin-bottom: 12px;
}

.faq {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.66);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq__item {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 650;
  color: rgba(var(--ink-rgb), 0.82);
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: rgba(var(--ink-rgb), 0.54);
}

.faq__item[open] summary::after {
  content: "x";
}

.faq__body {
  padding: 0 18px 16px;
  color: rgba(var(--ink-rgb), 0.74);
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(31, 42, 68, 0.14), rgba(202, 163, 90, 0.10));
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  box-shadow: var(--shadow);
}

.cta-media {
  margin-top: 16px;
  display: grid;
  justify-items: center;
}

.cta__actions {
  justify-self: end;
  width: min(360px, 100%);
}

.section--cta .cta {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 30px 22px;
}

.section--cta .cta__copy {
  max-width: 86ch;
}

.section--cta .cta__copy .sublead,
.section--cta .cta__copy .muted {
  margin-left: auto;
  margin-right: auto;
}

.section--cta .cta__copy .sublead {
  max-width: 54ch;
}

.section--cta .cta__actions {
  justify-self: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 76px;
  background: rgba(var(--bg-rgb), 0.90);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  font-weight: 700;
}

.footer__muted {
  color: rgba(var(--ink-rgb), 0.62);
  font-size: 13px;
  margin-top: 4px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 14px;
}

.footer__links a:hover {
  color: var(--ink);
}

.mobilebar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: rgba(var(--bg-rgb), 0.78);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  z-index: 40;
}

.mobilebar__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobilebar__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.mobilebar__meta {
  font-size: 12px;
  color: rgba(var(--ink-rgb), 0.62);
}

@media (max-width: 980px) {
  body {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__media {
    grid-row: 1;
  }

  .hero__copy {
    grid-row: 2;
  }

  .scroll-indicator {
    display: none;
  }

  .hero .book__img {
    box-shadow:
      -18px 22px 64px rgba(var(--shadow-rgb), 0.14),
      -6px 10px 22px rgba(var(--shadow-rgb), 0.08);
  }

  .section--spotlight {
    padding: 62px 0 56px;
  }

  .section--spotlight .center-stack {
    justify-items: start;
    text-align: left;
    align-items: start;
  }

  .section--spotlight .sublead,
  .section--spotlight .center-stack__text {
    font-size: 22px;
  }

  .section--spotlight .media--spread {
    display: none;
  }

  .section--spotlight .media--pages {
    display: block;
  }

  .page-grid {
    gap: 14px;
  }

  .page__img {
    aspect-ratio: 1 / 1;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .nav .btn {
    display: none !important;
  }

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

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

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

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

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

  .value-points {
    grid-template-columns: 1fr;
  }

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

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

  .cta__actions {
    justify-self: start;
  }

  .trust__quote {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
  }

  .mobilebar {
    display: block;
  }
}

@media (max-width: 1100px) {
  .header .nav > a.btn {
    display: none !important;
  }
}

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

  .btn {
    transition: none;
  }

  .scroll-indicator__icon {
    animation: none;
  }
}
