@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-extrabold.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #0b0611;
  --ink-soft: #120819;
  --violet-950: #16051f;
  --violet-900: #24052f;
  --violet-800: #3c005e;
  --violet-700: #520082;
  --violet-500: #9f3fc4;
  --lilac: #d9a9ec;
  --gold: #f2c879;
  --gold-deep: #d9a247;
  --gold-light: #ffe6a8;
  --cream: #fffaf2;
  --ivory: #f4efe6;
  --paper: #ebe4d8;
  --charcoal: #231c28;
  --muted: #cfc6d4;
  --line: rgba(255, 255, 255, 0.10);
  --dark-line: rgba(35, 28, 40, 0.14);
  --display: "Poppins", Arial, Helvetica, sans-serif;
  --sans: "Poppins", Arial, Helvetica, sans-serif;
  --container: 1436px;
  --header-height: 92px;
  --shadow-xl: 0 40px 90px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 24px 65px rgba(0, 0, 0, 0.26);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
}

.section--ivory {
  background: var(--ivory);
  color: var(--charcoal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 48px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), rgba(242, 200, 121, 0.15));
  box-shadow: 0 0 12px rgba(242, 200, 121, 0.35);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center > span:last-child {
  background: linear-gradient(90deg, rgba(242, 200, 121, 0.15), var(--gold));
}

.eyebrow--dark {
  color: #7c4d14;
}

.eyebrow--dark > span {
  background: linear-gradient(90deg, #a86c23, rgba(168, 108, 35, 0.15));
  box-shadow: none;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

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

.section--ivory h2 em {
  color: #714d22;
}

.section-intro {
  max-width: 920px;
  margin-bottom: 72px;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
}

.section-intro > p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.70);
  font-size: 19px;
  line-height: 1.7;
}

.section-intro--center > p:last-child {
  margin-inline: auto;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.095em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.button--gold {
  border-color: rgba(255, 231, 169, 0.72);
  background: linear-gradient(135deg, #ffe2a0 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: #251412;
  box-shadow: 0 16px 44px rgba(242, 200, 121, 0.18), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button--gold:hover {
  box-shadow: 0 21px 55px rgba(242, 200, 121, 0.27), inset 0 1px rgba(255, 255, 255, 0.62);
}

.button.js-checkout {
  animation: purchase-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.button.js-checkout:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.04);
}

@keyframes purchase-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 19px;
  transition: transform 0.2s ease;
}

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

.text-link--dark {
  color: #714d22;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(56, 15, 70, 0.90), rgba(18, 7, 25, 0.83));
  box-shadow: var(--shadow-card), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(8, 4, 13, 0.78), rgba(8, 4, 13, 0.28));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: height 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(8, 4, 13, 0.92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr 280px;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 96px;
  height: auto;
  aspect-ratio: 160 / 55;
  flex: 0 0 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(242, 200, 121, 0.20));
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-copy strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(242, 200, 121, 0.84);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 250, 242, 0.70);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.primary-nav .nav-instagram {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(242, 200, 121, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(242, 200, 121, 0.045);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.primary-nav .nav-instagram::after {
  display: none;
}

.primary-nav .nav-instagram:hover {
  border-color: rgba(242, 200, 121, 0.78);
  color: var(--cream);
  background: rgba(242, 200, 121, 0.12);
  transform: translateY(-2px);
}

.nav-instagram svg,
.text-link--instagram svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}

.primary-nav .nav-instagram > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button--header {
  min-height: 48px;
  padding-inline: 20px;
  border-color: rgba(242, 200, 121, 0.72);
  background: rgba(242, 200, 121, 0.055);
  color: var(--gold-light);
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 14px 36px rgba(0, 0, 0, 0.20);
}

.button--header:hover {
  background: rgba(242, 200, 121, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 1000px;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 38%, rgba(152, 49, 186, 0.27), transparent 43%),
    radial-gradient(circle at 18% 95%, rgba(90, 18, 111, 0.28), transparent 39%),
    linear-gradient(111deg, #0b0711 0%, #16091f 48%, #2c0939 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.87' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-background {
  position: absolute;
  z-index: -4;
  inset: 0;
  background: url("../images/hero-background-16x9.webp") center / cover no-repeat;
  filter: saturate(0.92) contrast(1.04);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 4, 13, 0.96) 0%, rgba(11, 5, 16, 0.89) 37%, rgba(18, 5, 26, 0.60) 68%, rgba(17, 3, 26, 0.41) 100%),
    linear-gradient(0deg, rgba(5, 3, 9, 0.90) 0%, rgba(5, 3, 9, 0.08) 48%, rgba(7, 3, 12, 0.48) 100%);
}

.hero-orbits {
  position: absolute;
  z-index: -2;
  top: 165px;
  right: -90px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(242, 200, 121, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbits i {
  position: absolute;
  border: 1px solid rgba(217, 169, 236, 0.08);
  border-radius: 50%;
}

.hero-orbits i:nth-child(1) { inset: 48px; }
.hero-orbits i:nth-child(2) { inset: 104px; }
.hero-orbits i:nth-child(3) { inset: 165px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(500px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 856px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 32px 0 88px;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(64px, 5.1vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 250, 242, 0.80);
  font-size: 21px;
  line-height: 1.62;
}

.hero-lead strong {
  color: var(--cream);
}

.hero-includes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 29px;
  padding: 0;
  color: rgba(224, 209, 231, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  list-style: none;
}

.hero-includes li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-includes li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(242, 200, 121, 0.55);
}

.hero-conversion {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.hero-price {
  width: 178px;
  flex: 0 0 178px;
  padding: 6px 20px 2px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-price > span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-price strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-price strong small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-price > small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero-installment {
  margin-top: 4px;
}

.hero-installment b {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-installment sup,
.offer-installment sup {
  position: relative;
  top: -0.12em;
  font-size: 0.72em;
}

.button--hero {
  width: min(397px, 100%);
  min-height: 72px;
  font-size: 13.5px;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 0 198px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.4;
}

.secure-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.hero-product {
  position: relative;
  align-self: stretch;
  min-height: 760px;
}

.product-glow {
  position: absolute;
  top: 75px;
  left: 18px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 202, 129, 0.16), rgba(170, 71, 192, 0.15) 34%, transparent 70%);
}

.book-mockup {
  position: relative;
  width: 355px;
  margin: 0;
  filter: drop-shadow(10px 32px 31px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 7px rgba(182, 83, 215, 0.18));
}

.hero-product .book-mockup {
  position: absolute;
  z-index: 3;
  top: 86px;
  left: 145px;
  transform: perspective(1800px) rotateY(-8deg) rotateZ(0.7deg);
}

.book-mockup img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left-width: 3px;
  border-radius: 3px 2px 2px 3px;
  background: #2d0a38;
}

.book-pages {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: -17px;
  bottom: 8px;
  width: 24px;
  border-radius: 0 4px 4px 0;
  background: repeating-linear-gradient(90deg, #e6d9c7 0 2px, #b9a993 2px 3px, #fbf3e6 3px 5px);
  box-shadow: inset -4px 0 6px rgba(48, 29, 21, 0.18);
  transform: skewY(-10deg);
  transform-origin: left top;
}

.audio-badge {
  position: absolute;
  z-index: 5;
  top: 140px;
  left: 10px;
  width: 184px;
  min-height: 94px;
  padding: 16px;
  border-color: rgba(242, 200, 121, 0.45);
  border-radius: 9px;
}

.badge-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-kicker svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audio-badge strong,
.audio-badge small {
  display: block;
}

.audio-badge strong {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.25;
}

.audio-badge small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
}

.workbook-badge {
  position: absolute;
  z-index: 5;
  top: 610px;
  right: -4px;
  width: 225px;
  min-height: 107px;
  padding: 16px 18px;
  border-radius: 10px;
}

.workbook-badge > span,
.workbook-badge > strong,
.workbook-badge > small {
  display: block;
}

.workbook-badge > span {
  color: var(--lilac);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workbook-badge > strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.1;
}

.workbook-badge > small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.edition-mark {
  position: absolute;
  z-index: 4;
  top: 726px;
  left: 178px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.edition-mark span {
  width: 44px;
  height: 1px;
  background: rgba(242, 200, 121, 0.48);
}

.hero-trust {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  height: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(15, 7, 20, 0.56);
}

.hero-trust .container {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(242, 200, 121, 0.5);
}

.hero-trust a {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-trust a b {
  margin-left: 7px;
  color: var(--gold);
}

/* Recognition */
.recognition {
  background:
    radial-gradient(circle at 50% 0, rgba(82, 0, 130, 0.34), transparent 42%),
    linear-gradient(180deg, #120819, #0b0611 72%);
}

.recognition::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(242, 200, 121, 0.07);
  border-radius: 50%;
  transform: translateX(-50%);
}

.recognition .section-intro {
  position: relative;
  z-index: 2;
}

.signal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.signal-card {
  position: relative;
  isolation: isolate;
  min-height: 258px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 12%, rgba(198, 92, 225, 0.36), transparent 57%),
    linear-gradient(145deg, rgba(82, 0, 130, 0.58), rgba(36, 7, 48, 0.32));
  opacity: 0;
  transition: opacity 0.32s ease;
}

.signal-card > * {
  position: relative;
  z-index: 1;
}

.signal-card:hover {
  z-index: 2;
  border-color: rgba(198, 92, 225, 0.34);
  background-color: rgba(82, 0, 130, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(198, 92, 225, 0.18),
    0 22px 58px rgba(82, 0, 130, 0.32);
  transform: translateY(-5px);
}

.signal-card:hover::before {
  opacity: 1;
}

.signal-card:hover .signal-number {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(242, 200, 121, 0.34);
}

.signal-card--wide {
  grid-column: span 2;
}

.signal-number {
  display: block;
  margin-bottom: 48px;
  color: rgba(242, 200, 121, 0.60);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.signal-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.signal-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 250, 242, 0.58);
  font-size: 16px;
  line-height: 1.6;
}

.recognition-close {
  max-width: 880px;
  margin: 66px auto 0;
  color: rgba(255, 250, 242, 0.62);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.45;
  text-align: center;
}

.recognition-close strong {
  color: var(--cream);
  font-weight: 400;
}

/* Definition */
.definition::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 1px;
  background: linear-gradient(transparent, rgba(35, 28, 40, 0.12) 18%, rgba(35, 28, 40, 0.12) 82%, transparent);
}

.definition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.74fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.definition-copy h2,
.inside-copy h2,
.author-copy h2,
.faq-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(48px, 4.6vw, 70px);
  line-height: 1.04;
}

.definition-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(35, 28, 40, 0.73);
  font-size: 18px;
}

.definition-copy blockquote {
  max-width: 760px;
  margin: 38px 0 0;
  padding: 24px 0 4px 28px;
  border-left: 1px solid #a86c23;
  color: #583820;
  font-family: var(--display);
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.definition-panel {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(82, 0, 130, 0.14);
  background:
    radial-gradient(circle at 80% 15%, rgba(159, 63, 196, 0.14), transparent 34%),
    #ede5da;
  box-shadow: 0 30px 70px rgba(54, 31, 61, 0.10);
}

.definition-panel::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 34px;
  width: 78px;
  height: 26px;
  border: 1px solid rgba(168, 108, 35, 0.32);
  border-bottom: 0;
}

.panel-label {
  color: #7c4d14;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.definition-panel > p:first-of-type {
  margin: 23px 0 18px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.2;
}

.definition-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.definition-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(35, 28, 40, 0.72);
  font-size: 16px;
}

.definition-panel li span {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--violet-700);
}

.definition-panel .panel-close {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--dark-line);
  color: #533264;
  font-family: var(--display);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

/* Method */
.method {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 90px 90px,
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 90px 90px,
    radial-gradient(circle at 15% 15%, rgba(82, 0, 130, 0.28), transparent 37%),
    #0c0612;
}

.method-light {
  position: absolute;
  top: 180px;
  right: -330px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 63, 196, 0.16), transparent 67%);
}

.method-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.55fr);
  align-items: end;
  gap: 90px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
}

.method-heading h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(51px, 5vw, 74px);
  line-height: 1.02;
}

.method-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 250, 242, 0.61);
  font-size: 16px;
  line-height: 1.7;
}

.method-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  min-height: 214px;
  padding: 42px 42px 40px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.method-steps li:nth-child(even) {
  padding-left: 42px;
}

.method-steps li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(242, 200, 121, 0.22);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 18px;
}

.method-steps h3 {
  margin: 3px 0 11px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.method-steps p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 250, 242, 0.56);
  font-size: 15px;
  line-height: 1.65;
}

.method-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 52px;
}

.method-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.42;
}

.method-cta strong {
  color: var(--cream);
  font-weight: 400;
}

/* Inheritance */
.inheritance {
  background:
    radial-gradient(circle at 80% 50%, rgba(242, 200, 121, 0.16), transparent 36%),
    var(--ivory);
}

.inheritance-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.inheritance-statement h2 {
  margin-bottom: 27px;
  font-size: clamp(50px, 5vw, 74px);
  line-height: 1.02;
}

.inheritance-statement > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(35, 28, 40, 0.70);
  font-size: 18px;
}

.inheritance-cards {
  border-top: 1px solid var(--dark-line);
}

.inheritance-cards article {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-areas:
    "number heading"
    "number copy";
  gap: 4px 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--dark-line);
}

.inheritance-cards article > span {
  grid-area: number;
  color: #8a5c25;
  font-family: var(--display);
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
}

.inheritance-cards h3 {
  grid-area: heading;
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.inheritance-cards p {
  grid-area: copy;
  margin: 0;
  color: rgba(35, 28, 40, 0.66);
  font-size: 15px;
}

/* Deliverables */
.deliverables {
  background:
    radial-gradient(circle at 17% 42%, rgba(82, 0, 130, 0.42), transparent 34%),
    linear-gradient(165deg, #100716, #250830 75%, #16061f);
}

.deliverables::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 60px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(242, 200, 121, 0.08);
  border-radius: 50%;
}

.deliverables-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 0.80fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 130px);
}

.deliverable-product {
  position: relative;
  min-height: 770px;
}

.book-stage {
  position: relative;
  min-height: 650px;
}

.book-stage-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(242, 200, 121, 0.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 63, 196, 0.27), transparent 65%);
  transform: translateX(-50%);
}

.book-stage-glow::before,
.book-stage-glow::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 169, 236, 0.08);
  border-radius: 50%;
}

.book-stage-glow::before { inset: 47px; }
.book-stage-glow::after { inset: 101px; }

.book-mockup--large {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 380px;
  transform: translateX(-50%) perspective(1800px) rotateY(-8deg) rotateZ(-0.8deg);
}

.delivery-now {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin: -4px auto 0;
  padding: 22px 26px;
  border: 1px solid rgba(242, 200, 121, 0.27);
  background: rgba(10, 5, 15, 0.72);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.delivery-now span,
.delivery-now strong,
.delivery-now small {
  display: block;
}

.delivery-now span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.delivery-now strong {
  margin: 5px 0 2px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.delivery-now small {
  color: rgba(255, 255, 255, 0.49);
  font-size: 14px;
  letter-spacing: 0.06em;
}

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

.deliverable-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(242, 200, 121, 0.20);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 17px;
}

.deliverable-list .release {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deliverable-list h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
}

.deliverable-list article > div > p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 250, 242, 0.54);
  font-size: 14px;
  line-height: 1.6;
}

.release-explainer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 38px;
  max-width: 1050px;
  margin: 82px auto 0;
  padding: 36px 48px;
  border: 1px solid rgba(242, 200, 121, 0.20);
  background: linear-gradient(145deg, rgba(56, 15, 70, 0.58), rgba(18, 7, 25, 0.55));
}

.release-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(242, 200, 121, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  line-height: 1;
}

.release-day strong {
  font-family: var(--display);
  font-size: 50px;
  font-weight: 600;
  line-height: 0.88;
}

.release-day small {
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-explainer h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.release-explainer p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 242, 0.57);
  font-size: 14px;
  line-height: 1.72;
}

.release-phases {
  display: grid;
  gap: 14px;
  max-width: 790px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.release-phases li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 250, 242, 0.63);
  font-size: 14px;
  line-height: 1.72;
}

.release-phases li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(242, 200, 121, 0.30);
}

.release-phases strong {
  color: var(--cream);
  font-weight: 700;
}

/* Inside the book */
.inside {
  padding-top: 154px;
  padding-bottom: 154px;
  background:
    linear-gradient(90deg, rgba(35, 28, 40, 0.025) 1px, transparent 1px) 0 0 / 78px 78px,
    var(--ivory);
}

.inside-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(440px, 0.8fr);
  align-items: center;
  gap: clamp(75px, 10vw, 150px);
}

.page-preview {
  position: relative;
  min-height: 770px;
}

.page-preview::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(82, 0, 130, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.preview-page {
  position: absolute;
  width: 305px;
  margin: 0;
  border: 1px solid rgba(35, 28, 40, 0.12);
  background: white;
  box-shadow: 0 35px 75px rgba(54, 31, 61, 0.22);
}

.preview-page img {
  width: 100%;
}

.preview-page--one {
  z-index: 1;
  top: 50px;
  left: 4px;
  transform: rotate(-8deg);
}

.preview-page--two {
  z-index: 3;
  top: 0;
  left: 180px;
  transform: rotate(1.7deg);
}

.preview-page--three {
  z-index: 2;
  top: 104px;
  right: -16px;
  transform: rotate(8deg);
}

.inside-copy > p:not(.eyebrow, .inside-extra) {
  color: rgba(35, 28, 40, 0.68);
  font-size: 18px;
}

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

.chapter-list li {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-line);
}

.chapter-list span {
  color: #85591f;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.chapter-list strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
}

.inside-extra {
  margin: 25px 0 0;
  color: rgba(35, 28, 40, 0.58);
  font-size: 13px;
  font-style: normal;
}

/* Origin */
.origin {
  min-height: 850px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #120718;
}

.origin::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 4, 13, 0.94), rgba(16, 5, 23, 0.72) 52%, rgba(31, 6, 42, 0.48)),
    linear-gradient(0deg, rgba(8, 3, 12, 0.88), transparent 50%, rgba(8, 3, 12, 0.55));
}

.origin-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/capa-arqueologia-espiritual.webp") center 52% / cover no-repeat;
  opacity: 0.48;
  filter: saturate(0.85) contrast(1.12);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: clamp(80px, 10vw, 160px);
}

.origin-quote h2 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(58px, 5.4vw, 80px);
  line-height: 1;
}

.origin-quote blockquote {
  max-width: 720px;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: rgba(255, 250, 242, 0.76);
  font-family: var(--display);
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.origin-quote cite {
  display: block;
  margin: 18px 0 0 29px;
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.origin-copy {
  padding: 48px;
  border-color: rgba(242, 200, 121, 0.26);
}

.origin-copy h3 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.18;
}

.origin-copy p {
  color: rgba(255, 250, 242, 0.66);
  font-size: 15px;
}

.origin-copy .origin-close {
  margin: 27px 0 0;
  padding-top: 23px;
  border-top: 1px solid rgba(242, 200, 121, 0.17);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

/* Author */
.author {
  background:
    radial-gradient(circle at 13% 50%, rgba(82, 0, 130, 0.10), transparent 33%),
    var(--ivory);
}

.author-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(80px, 11vw, 180px);
}

.author-portrait {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
}

.author-portrait::before {
  content: "";
  position: absolute;
  top: -35px;
  right: -38px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(82, 0, 130, 0.14);
  border-radius: 50%;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 388px;
  overflow: hidden;
  border: 1px solid rgba(35, 28, 40, 0.15);
  background: #1d1720;
  box-shadow: 0 35px 75px rgba(54, 31, 61, 0.22);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.88);
}

.author-signature {
  position: relative;
  z-index: 3;
  width: 295px;
  margin: -50px 0 0 62px;
  padding: 21px 24px;
  border: 1px solid rgba(242, 200, 121, 0.42);
  background: #1b0a22;
  color: var(--cream);
  box-shadow: var(--shadow-card);
}

.author-signature strong,
.author-signature span {
  display: block;
}

.author-signature strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.author-signature span {
  margin-top: 5px;
  color: rgba(255, 250, 242, 0.55);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.author-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(35, 28, 40, 0.70);
  font-size: 17px;
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 30px;
  margin-top: 21px;
}

.author-copy .author-links .text-link {
  margin-top: 0;
}

.text-link--instagram svg {
  width: 18px;
  height: 18px;
}

/* Testimonials */
.testimonials {
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 16%, rgba(159, 63, 196, 0.24), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(242, 200, 121, 0.10), transparent 27%),
    linear-gradient(145deg, #0b0611 0%, #1b0824 54%, #100616 100%);
}

.testimonials::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.testimonials-orbit {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -170px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(242, 200, 121, 0.09);
  border-radius: 50%;
}

.testimonials-orbit::before,
.testimonials-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 169, 236, 0.07);
  border-radius: 50%;
}

.testimonials-orbit::before { inset: 62px; }
.testimonials-orbit::after { inset: 132px; }

.testimonials .section-intro {
  max-width: 1040px;
  margin-bottom: 62px;
}

.testimonial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 42px 39px 34px;
  overflow: hidden;
  border: 1px solid rgba(242, 200, 121, 0.18);
  background:
    radial-gradient(circle at 94% 5%, rgba(159, 63, 196, 0.16), transparent 29%),
    rgba(255, 255, 255, 0.026);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.20);
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card--wide {
  grid-column: span 7;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0;
  right: 27px;
  color: rgba(242, 200, 121, 0.08);
  font-family: var(--display);
  font-size: 132px;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(242, 200, 121, 0.40);
  background-color: rgba(82, 0, 130, 0.10);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.30);
}

.testimonial-number {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 29px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 2;
  flex: 1;
  margin: 0 0 34px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 17px;
  line-height: 1.78;
}

.testimonial-card blockquote strong {
  color: var(--cream);
  font-weight: 700;
}

.testimonial-card footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 200, 121, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.testimonial-card footer strong,
.testimonial-card footer div > span {
  display: block;
}

.testimonial-card footer strong {
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card footer div > span {
  margin-top: 2px;
  color: rgba(255, 250, 242, 0.42);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Offer */
.offer {
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(82, 0, 130, 0.38), transparent 38%),
    linear-gradient(140deg, #0b0611, #22082d 68%, #14071b);
}

.offer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.offer-light {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -70px;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(242, 200, 121, 0.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 200, 121, 0.10), transparent 62%);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.72fr);
  align-items: center;
  gap: clamp(80px, 10vw, 165px);
}

.offer-copy h2 {
  max-width: 790px;
  margin-bottom: 27px;
  font-size: clamp(54px, 5vw, 74px);
  line-height: 1.02;
}

.offer-copy > p:not(.eyebrow, .access-caveat) {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.67);
  font-size: 18px;
}

.offer-copy ul {
  display: grid;
  gap: 9px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 15px;
  list-style: none;
}

.offer-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-copy li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(242, 200, 121, 0.44);
}

.access-caveat {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.40);
  font-size: 11px;
}

.offer-card {
  position: relative;
  padding: 52px 48px 44px;
  border: 1px solid rgba(242, 200, 121, 0.35);
  background:
    radial-gradient(circle at 85% 8%, rgba(242, 200, 121, 0.11), transparent 30%),
    linear-gradient(145deg, rgba(54, 13, 68, 0.62), rgba(15, 6, 21, 0.62));
  box-shadow: var(--shadow-xl), inset 0 1px rgba(255, 255, 255, 0.06);
}

.offer-card-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 17px 0 4px;
  font-family: var(--display);
  font-size: 37px;
  font-weight: 400;
  line-height: 1.05;
}

.offer-card > p {
  max-width: 300px;
  margin-bottom: 33px;
  color: rgba(255, 250, 242, 0.53);
  font-size: 14px;
  line-height: 1.45;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--cream);
}

.offer-payment {
  display: flex;
  align-items: flex-end;
  gap: 26px;
}

.offer-price small {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
}

.offer-price strong {
  font-family: var(--display);
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.offer-installment {
  display: grid;
  gap: 1px;
  margin-bottom: 3px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-installment span,
.offer-installment strong {
  display: block;
}

.offer-installment span {
  color: rgba(255, 250, 242, 0.48);
  font-size: 10px;
  line-height: 1.35;
}

.offer-installment strong {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.single-payment {
  display: block;
  margin: 7px 0 28px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.offer-card .button {
  min-height: 72px;
  padding-inline: 23px;
}

.offer-security {
  display: grid;
  gap: 11px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.offer-security span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 250, 242, 0.56);
  font-size: 11px;
}

.offer-security svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.installment-note {
  display: block;
  margin-top: 15px;
  color: rgba(255, 250, 242, 0.35);
  font-size: 9px;
  line-height: 1.5;
}

.guarantee-seal {
  position: absolute;
  top: 36px;
  right: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(242, 200, 121, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  transform: rotate(7deg);
}

.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(242, 200, 121, 0.25);
  border-radius: 50%;
}

.guarantee-seal strong {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.guarantee-seal span {
  font-size: 7px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* FAQ */
.faq {
  padding-top: 145px;
  padding-bottom: 145px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading p:last-child {
  max-width: 450px;
  color: rgba(35, 28, 40, 0.66);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 56px 25px 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: #81531e;
  content: "";
  transition: transform 0.25s ease;
}

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

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

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 760px;
  margin: -3px 0 25px;
  padding-right: 40px;
  color: rgba(35, 28, 40, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

/* Newsletter */
.newsletter {
  isolation: isolate;
  background:
    radial-gradient(circle at 11% 18%, rgba(159, 63, 196, 0.26), transparent 34%),
    radial-gradient(circle at 78% 62%, rgba(242, 200, 121, 0.12), transparent 32%),
    linear-gradient(135deg, #0a0510 0%, #21072d 60%, #100616 100%);
}

.newsletter::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.newsletter-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 61%;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(242, 200, 121, 0.10);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.newsletter-orbit i {
  position: absolute;
  border: 1px solid rgba(217, 169, 236, 0.07);
  border-radius: 50%;
}

.newsletter-orbit i:first-child { inset: 66px; }
.newsletter-orbit i:last-child { inset: 142px; }

.newsletter-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 9vw, 145px);
}

.newsletter-copy h2 {
  max-width: 830px;
  margin-bottom: 27px;
  font-size: clamp(52px, 4.8vw, 72px);
  line-height: 1.03;
}

.newsletter-copy > p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 18px;
  line-height: 1.75;
}

.newsletter-benefits {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 250, 242, 0.79);
  font-size: 15px;
  list-style: none;
}

.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.newsletter-benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(242, 200, 121, 0.58);
}

.newsletter-form-card {
  position: relative;
  padding: 49px 44px 40px;
  border: 1px solid rgba(242, 200, 121, 0.36);
  background:
    radial-gradient(circle at 88% 9%, rgba(242, 200, 121, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(62, 15, 77, 0.62), rgba(14, 6, 20, 0.62));
  box-shadow: var(--shadow-xl), inset 0 1px rgba(255, 255, 255, 0.06);
}

.newsletter-form-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(242, 200, 121, 0.08);
  pointer-events: none;
}

.newsletter-kicker,
.newsletter-form-card h3,
.newsletter-form-card > p,
.sendpulse-form-host,
.newsletter-form-card > small {
  position: relative;
  z-index: 2;
}

.newsletter-kicker {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-form-card h3 {
  margin: 18px 0 13px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.12;
}

.newsletter-form-card > p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.60);
  font-size: 15px;
  line-height: 1.65;
}

.sendpulse-form-host {
  width: 100%;
  min-height: 88px;
  margin: 25px 0 19px;
}

.sendpulse-form-host iframe,
.sendpulse-form-host > div,
.sendpulse-form-host [class*="sp-form"] {
  width: 100% !important;
  max-width: 100% !important;
}

.sendpulse-form-host iframe {
  border: 0;
}

.newsletter-form-card > small {
  display: block;
  color: rgba(255, 250, 242, 0.36);
  font-size: 10px;
  line-height: 1.6;
}

/* Closing */
.closing {
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(82, 0, 130, 0.44), transparent 44%),
    linear-gradient(180deg, #17071f, #09050e);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.closing-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(242, 200, 121, 0.10);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.closing-orbit::before,
.closing-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 169, 236, 0.07);
  border-radius: 50%;
}

.closing-orbit::before { inset: 55px; }
.closing-orbit::after { inset: 118px; }

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  text-align: center;
}

.closing-content h2 {
  margin-bottom: 18px;
  font-size: clamp(52px, 5.6vw, 82px);
  line-height: 1.02;
}

.closing-content > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 29px;
  font-style: normal;
  font-weight: 600;
}

.closing-content .button {
  min-height: 70px;
  padding-inline: 38px;
}

.closing-content > small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #08040d;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 48px;
}

.brand--footer .brand-mark {
  width: 88px;
  height: auto;
  flex-basis: 88px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px 28px;
}

.footer-nav a {
  color: rgba(255, 250, 242, 0.48);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-notice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding-top: 31px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 64px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  letter-spacing: 0.04em;
}

/* Mobile purchase bar */
.mobile-buybar {
  display: none;
}

/* Reveal */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Narrative image system
   Each scene carries one chapter of the sales story while the layered veils
   preserve reading contrast. The images contain no embedded copy. */
.hero-background {
  background-image: url("../images/bg-hero-stonehenge.webp");
  background-position: center;
  filter: saturate(0.96) contrast(1.04);
}

.hero-background::after {
  background:
    linear-gradient(90deg, rgba(8, 4, 13, 0.67) 0%, rgba(11, 5, 16, 0.60) 39%, rgba(18, 5, 26, 0.40) 69%, rgba(17, 3, 26, 0.23) 100%),
    linear-gradient(0deg, rgba(5, 3, 9, 0.63) 0%, rgba(5, 3, 9, 0.04) 50%, rgba(7, 3, 12, 0.32) 100%);
}

.recognition {
  background-color: #0b0611;
  background-image:
    linear-gradient(180deg, rgba(10, 4, 15, 0.44) 0%, rgba(10, 4, 15, 0.55) 58%, rgba(8, 4, 13, 0.63) 100%),
    radial-gradient(circle at 50% 3%, rgba(112, 27, 142, 0.14), transparent 43%),
    url("../images/bg-recognition-vestiges.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.definition {
  background-color: var(--ivory);
  background-image:
    linear-gradient(90deg, rgba(244, 239, 230, 0.78) 0%, rgba(244, 239, 230, 0.73) 48%, rgba(244, 239, 230, 0.61) 100%),
    url("../images/bg-definition-continuity.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.definition-panel {
  background:
    radial-gradient(circle at 80% 15%, rgba(159, 63, 196, 0.14), transparent 34%),
    rgba(237, 229, 218, 0.52);
  box-shadow: 0 30px 70px rgba(54, 31, 61, 0.12);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.method {
  background-color: #0c0612;
  background-image:
    linear-gradient(90deg, rgba(8, 4, 13, 0.67) 0%, rgba(10, 5, 15, 0.59) 53%, rgba(12, 5, 17, 0.41) 100%),
    linear-gradient(180deg, rgba(7, 3, 11, 0.26), rgba(7, 3, 11, 0.52)),
    url("../images/bg-method-excavation.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inheritance {
  background-color: var(--ivory);
  background-image:
    linear-gradient(180deg, rgba(244, 239, 230, 0.69) 0%, rgba(244, 239, 230, 0.60) 57%, rgba(244, 239, 230, 0.71) 100%),
    url("../images/bg-inheritance-resources.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.deliverables {
  background-color: #100716;
  background-image:
    linear-gradient(90deg, rgba(9, 4, 14, 0.55), rgba(17, 5, 24, 0.58)),
    linear-gradient(180deg, rgba(9, 4, 14, 0.27), rgba(9, 4, 14, 0.63)),
    url("../images/bg-deliverables-fielddesk.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inside {
  background-color: var(--ivory);
  background-image:
    linear-gradient(90deg, rgba(244, 239, 230, 0.62), rgba(244, 239, 230, 0.67)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.56), rgba(244, 239, 230, 0.70)),
    url("../images/bg-inside-map.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.origin-image {
  background-image: url("../images/bg-origin-inspiration.webp");
  background-position: center;
  opacity: 1;
  filter: saturate(0.93) contrast(1.08);
}

.origin::before {
  background:
    linear-gradient(90deg, rgba(9, 4, 13, 0.65), rgba(16, 5, 23, 0.49) 52%, rgba(31, 6, 42, 0.31)),
    linear-gradient(0deg, rgba(8, 3, 12, 0.59), transparent 50%, rgba(8, 3, 12, 0.34));
}

.origin-copy {
  background: linear-gradient(145deg, rgba(56, 15, 70, 0.62), rgba(18, 7, 25, 0.62));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.author,
.faq {
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.72), rgba(244, 239, 230, 0.72)),
    url("../images/bg-paper-strata.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials {
  background-color: #0b0611;
  background-image:
    linear-gradient(180deg, rgba(8, 4, 13, 0.46) 0%, rgba(8, 4, 13, 0.52) 58%, rgba(8, 4, 13, 0.57) 100%),
    radial-gradient(circle at 50% 78%, rgba(242, 200, 121, 0.05), transparent 36%),
    url("../images/bg-testimonials-path.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-card {
  background:
    radial-gradient(circle at 94% 5%, rgba(159, 63, 196, 0.16), transparent 29%),
    rgba(12, 6, 18, 0.72);
  backdrop-filter: blur(3px);
}

.offer {
  background-color: #0b0611;
  background-image:
    linear-gradient(90deg, rgba(8, 4, 13, 0.66) 0%, rgba(10, 4, 15, 0.56) 48%, rgba(13, 5, 18, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 4, 13, 0.24), rgba(8, 4, 13, 0.52)),
    url("../images/bg-offer-crossing.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.newsletter {
  background-color: #0a0510;
  background-image:
    linear-gradient(90deg, rgba(8, 4, 13, 0.62) 0%, rgba(10, 4, 15, 0.53) 55%, rgba(13, 5, 18, 0.41) 100%),
    linear-gradient(180deg, rgba(8, 4, 13, 0.23), rgba(8, 4, 13, 0.50)),
    url("../images/bg-newsletter-letters.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.closing {
  background-color: #09050e;
  background-image:
    radial-gradient(circle at 50% 43%, rgba(8, 4, 13, 0.41), rgba(8, 4, 13, 0.19) 56%, rgba(8, 4, 13, 0.29) 100%),
    linear-gradient(180deg, rgba(7, 3, 11, 0.31) 0%, rgba(7, 3, 11, 0.38) 56%, rgba(7, 3, 11, 0.14) 100%),
    url("../images/bg-closing-journey.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 1320px) {
  .header-inner {
    grid-template-columns: 300px 1fr 245px;
  }

  .site-header .brand-mark {
    width: 78px;
    flex-basis: 78px;
  }

  .primary-nav {
    gap: 20px;
  }

  .button--header {
    font-size: 11.5px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 700px) minmax(450px, 1fr);
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero-product .book-mockup {
    left: 108px;
  }

  .audio-badge {
    left: 0;
  }

  .workbook-badge {
    right: 0;
  }

  .inside-grid {
    grid-template-columns: minmax(470px, 0.9fr) minmax(400px, 0.8fr);
    gap: 80px;
  }

  .preview-page {
    width: 275px;
  }
}

@media (max-width: 1160px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 24px 25px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 4, 14, 0.98);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    padding: 17px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 15px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .nav-instagram {
    display: flex;
    width: auto;
    height: auto;
    justify-content: flex-start;
    gap: 11px;
    padding: 17px 6px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    background: transparent;
  }

  .primary-nav .nav-instagram:hover {
    background: rgba(242, 200, 121, 0.06);
    transform: none;
  }

  .primary-nav .nav-instagram > span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .nav-toggle {
    display: block;
  }

  .button--header {
    width: 245px;
  }

  .hero {
    min-height: 940px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 650px) minmax(390px, 1fr);
    min-height: 808px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-lead {
    max-width: 610px;
    font-size: 20px;
  }

  .hero-product .book-mockup {
    top: 115px;
    left: 85px;
    width: 310px;
  }

  .audio-badge {
    top: 160px;
    width: 170px;
  }

  .workbook-badge {
    top: 584px;
    width: 205px;
  }

  .edition-mark {
    top: 710px;
    left: 105px;
  }

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

  .signal-card--wide {
    grid-column: span 1;
  }

  .signal-card:last-child {
    grid-column: 2 / 3;
  }

  .definition-grid,
  .origin-grid,
  .offer-grid {
    gap: 70px;
  }

  .method-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .method-heading > p {
    max-width: 760px;
  }

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

  .page-preview {
    width: min(700px, 100%);
    min-height: 750px;
    margin-inline: auto;
  }

  .preview-page {
    width: 300px;
  }

  .inside-copy {
    max-width: 820px;
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 105px 0;
  }

  .button--header {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero-background {
    inset: 0;
    background-position: 61% center;
  }

  .hero-background::after {
    background:
      linear-gradient(180deg, rgba(8, 4, 13, 0.68) 0%, rgba(13, 7, 19, 0.50) 38%, rgba(18, 6, 26, 0.34) 69%, rgba(8, 4, 13, 0.72) 100%),
      linear-gradient(90deg, rgba(5, 3, 9, 0.52), rgba(18, 4, 30, 0.18));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 780px;
    padding: 118px 0 35px;
  }

  .hero h1 {
    font-size: clamp(60px, 8.5vw, 78px);
  }

  .hero-product {
    min-height: 720px;
  }

  .product-glow {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-product .book-mockup {
    top: 48px;
    left: 50%;
    width: 350px;
    transform: translateX(-50%) perspective(1800px) rotateY(-8deg) rotateZ(0.7deg);
  }

  .audio-badge {
    top: 110px;
    left: calc(50% - 275px);
  }

  .workbook-badge {
    top: 505px;
    right: calc(50% - 295px);
  }

  .edition-mark {
    top: 660px;
    left: calc(50% - 130px);
  }

  .hero-trust .container {
    justify-content: center;
  }

  .hero-trust a {
    display: none;
  }

  .definition::before {
    display: none;
  }

  .definition-grid,
  .inheritance-grid,
  .deliverables-layout,
  .origin-grid,
  .author-grid,
  .offer-grid,
  .faq-grid,
  .newsletter-shell {
    grid-template-columns: 1fr;
  }

  .definition-grid,
  .inheritance-grid,
  .deliverables-layout,
  .origin-grid,
  .author-grid,
  .offer-grid,
  .faq-grid,
  .newsletter-shell {
    gap: 70px;
  }

  .definition-copy,
  .inheritance-statement,
  .origin-quote,
  .offer-copy,
  .faq-heading {
    max-width: 820px;
  }

  .definition-panel {
    max-width: 680px;
  }

  .inheritance-cards {
    max-width: 800px;
  }

  .deliverable-product {
    min-height: 735px;
  }

  .deliverable-list {
    max-width: 820px;
    margin-inline: auto;
  }

  .origin {
    min-height: auto;
  }

  .origin-copy {
    max-width: 720px;
    margin-left: auto;
  }

  .author-portrait {
    margin-left: 8%;
  }

  .author-copy {
    max-width: 850px;
  }

  .offer-card {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
  }

  .faq-list {
    width: 100%;
  }

  .newsletter-copy {
    max-width: 820px;
  }

  .newsletter-form-card {
    width: min(650px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 16.5px;
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 34px, var(--container));
  }

  .section {
    padding: 86px 0;
  }

  .site-header .brand-mark {
    width: 62px;
    height: auto;
    flex-basis: 62px;
  }

  .brand-copy strong {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 7px;
  }

  .eyebrow {
    gap: 11px;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0.15em;
  }

  .eyebrow > span {
    width: 34px;
  }

  .section-intro {
    margin-bottom: 47px;
  }

  .section-intro h2,
  .definition-copy h2,
  .inside-copy h2,
  .author-copy h2,
  .faq-heading h2,
  .newsletter-copy h2,
  .inheritance-statement h2,
  .method-heading h2,
  .origin-quote h2,
  .offer-copy h2,
  .closing-content h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .section-intro > p:last-child {
    font-size: 16px;
  }

  .hero-copy {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.5vw, 70px);
    line-height: 1.06;
  }

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

  .hero-includes {
    align-items: flex-start;
    gap: 8px;
    margin: 25px 0;
  }

  .hero-includes li {
    width: 100%;
  }

  .hero-includes li:not(:last-child)::after {
    display: none;
  }

  .hero-includes li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
  }

  .hero-conversion {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 13px;
  }

  .hero-price {
    width: auto;
    min-width: 0;
    padding-right: 12px;
  }

  .hero-price strong {
    font-size: 42px;
  }

  .button--hero {
    min-height: 70px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .secure-note {
    margin-left: 129px;
    font-size: 11px;
  }

  .hero-product {
    min-height: 640px;
  }

  .hero-product .book-mockup {
    width: 300px;
  }

  .audio-badge {
    top: 93px;
    left: 0;
    width: 154px;
    min-height: 82px;
    padding: 13px;
  }

  .audio-badge strong {
    font-size: 11px;
  }

  .workbook-badge {
    top: 456px;
    right: 0;
    width: 178px;
    min-height: 94px;
    padding: 14px;
  }

  .workbook-badge > strong {
    font-size: 16px;
  }

  .edition-mark {
    top: 578px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-trust {
    height: 48px;
  }

  .hero-trust .container {
    gap: 16px;
    overflow: hidden;
  }

  .hero-trust span {
    font-size: 9.5px;
    letter-spacing: 0.07em;
    white-space: nowrap;
  }

  .hero-trust span:nth-child(3) {
    display: none;
  }

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

  .signal-card,
  .signal-card:last-child {
    grid-column: auto;
  }

  .signal-card {
    min-height: auto;
    padding: 28px 25px;
  }

  .signal-number {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .recognition-close {
    margin-top: 45px;
    font-size: 22px;
  }

  .definition-grid,
  .inheritance-grid,
  .deliverables-layout,
  .origin-grid,
  .author-grid,
  .offer-grid,
  .faq-grid {
    gap: 50px;
  }

  .definition-copy > p:not(.eyebrow),
  .inheritance-statement > p:last-child,
  .inside-copy > p:not(.eyebrow, .inside-extra),
  .offer-copy > p:not(.eyebrow, .access-caveat) {
    font-size: 16px;
  }

  .definition-copy blockquote {
    padding-left: 20px;
    font-size: 23px;
  }

  .definition-panel {
    padding: 34px 26px;
  }

  .method-heading {
    padding-bottom: 46px;
  }

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

  .method-steps li,
  .method-steps li:nth-child(even) {
    grid-template-columns: 54px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
  }

  .method-steps li > span {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .method-steps h3 {
    font-size: 24px;
  }

  .method-cta {
    display: block;
    margin-top: 40px;
  }

  .method-cta p {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .inheritance-cards article {
    grid-template-columns: 76px 1fr;
    gap: 4px 16px;
  }

  .inheritance-cards article > span {
    font-size: 48px;
  }

  .inheritance-cards h3 {
    font-size: 25px;
  }

  .deliverable-product {
    min-height: 655px;
  }

  .book-stage {
    min-height: 555px;
  }

  .book-stage-glow {
    width: 440px;
    height: 440px;
  }

  .book-mockup--large {
    width: 310px;
  }

  .delivery-now {
    max-width: 340px;
  }

  .deliverable-list article {
    grid-template-columns: 51px 1fr;
    gap: 16px;
    padding: 25px 0;
  }

  .deliverable-icon {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .deliverable-list h3 {
    font-size: 23px;
  }

  .release-explainer {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 54px;
    padding: 30px 25px;
  }

  .release-day {
    width: 92px;
    height: 92px;
  }

  .release-day strong {
    font-size: 43px;
  }

  .inside {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .page-preview {
    min-height: 600px;
  }

  .preview-page {
    width: 230px;
  }

  .preview-page--one {
    left: -8px;
  }

  .preview-page--two {
    left: 50%;
    transform: translateX(-50%) rotate(1.7deg);
  }

  .preview-page--three {
    right: -8px;
  }

  .chapter-list li {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .origin-copy {
    padding: 34px 27px;
  }

  .origin-quote blockquote {
    font-size: 20px;
  }

  .origin-image {
    background-position: center;
  }

  .definition {
    background-position: 68% center;
  }

  .method {
    background-position: 66% center;
  }

  .inheritance,
  .inside {
    background-position: center bottom;
  }

  .deliverables,
  .testimonials,
  .offer,
  .newsletter,
  .closing {
    background-position: center;
  }

  .author-portrait {
    margin: 0 auto;
  }

  .portrait-frame {
    width: 260px;
    height: 388px;
  }

  .author-signature {
    width: 270px;
    margin-left: 48px;
  }

  .author-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .testimonial-card,
  .testimonial-card--wide {
    grid-column: auto;
    min-height: 0;
    padding: 35px 28px 29px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
  }

  .newsletter-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .newsletter-form-card {
    padding: 39px 27px 33px;
  }

  .newsletter-form-card h3 {
    font-size: 32px;
  }

  .offer-card {
    padding: 43px 27px 35px;
  }

  .guarantee-seal {
    top: 28px;
    right: 22px;
    width: 84px;
    height: 84px;
  }

  .offer-card h3 {
    max-width: 230px;
    font-size: 31px;
  }

  .offer-price strong {
    font-size: 68px;
  }

  .faq-list summary {
    padding: 21px 47px 21px 0;
    font-size: 21px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .closing {
    min-height: 610px;
  }

  .closing-orbit {
    width: 480px;
    height: 480px;
  }

  .closing-content > p:not(.eyebrow) {
    font-size: 24px;
  }

  .closing-content .button {
    width: 100%;
    padding-inline: 18px;
  }

  .footer-main,
  .footer-notice,
  .footer-bottom .container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-notice {
    gap: 20px;
  }

  .footer-bottom .container {
    align-content: center;
    gap: 5px;
    min-height: 78px;
  }

  .mobile-buybar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(242, 200, 121, 0.26);
    background: rgba(9, 4, 14, 0.96);
    box-shadow: 0 -14px 35px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(115%);
    transition: transform 0.28s ease;
  }

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

  .mobile-buybar > div span,
  .mobile-buybar > div strong {
    display: block;
  }

  .mobile-buybar > div span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-buybar > div strong {
    color: var(--cream);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-buybar .button {
    min-height: 52px;
    padding-inline: 15px;
    font-size: 11.5px;
  }
}

@media (max-width: 520px) {
  .hero h1 br {
    display: none;
  }

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

  .hero-price {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: 11px;
    width: 180px;
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-price > span {
    grid-column: 1 / -1;
  }

  .hero-price > small {
    padding-bottom: 5px;
  }

  .hero-price .hero-installment {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-bottom: 0;
  }

  .offer-payment {
    gap: 14px;
  }

  .offer-installment {
    padding-left: 14px;
  }

  .offer-installment strong {
    font-size: 13px;
  }

  .secure-note {
    margin-left: 0;
  }

  .hero-product {
    min-height: 585px;
  }

  .hero-product .book-mockup {
    width: 265px;
  }

  .product-glow {
    width: 430px;
    height: 430px;
  }

  .audio-badge {
    top: 85px;
    width: 142px;
  }

  .workbook-badge {
    top: 404px;
    width: 166px;
  }

  .edition-mark {
    top: 526px;
    font-size: 8px;
  }

  .hero-trust span:nth-child(2) {
    display: none;
  }

  .definition-panel .panel-close {
    font-size: 21px;
  }

  .book-stage {
    min-height: 490px;
  }

  .book-mockup--large {
    width: 270px;
  }

  .deliverable-product {
    min-height: 600px;
  }

  .page-preview {
    min-height: 500px;
  }

  .preview-page {
    width: 185px;
  }

  .preview-page--one { top: 50px; }
  .preview-page--two { top: 0; }
  .preview-page--three { top: 95px; }

  .author-signature {
    margin-left: 18px;
  }

  .newsletter-form-card h3 {
    font-size: 29px;
  }

  .offer-card h3 {
    max-width: 205px;
    font-size: 28px;
  }

  .guarantee-seal {
    width: 76px;
    height: 76px;
  }

  .guarantee-seal strong {
    font-size: 26px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Delivery hierarchy: immediate ecosystem first, practical tools second */
.delivery-group-heading {
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--line);
}

.delivery-group-heading > span,
.delivery-group-heading > strong,
.delivery-group-heading > p {
  display: block;
}

.delivery-group-heading > span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.delivery-group-heading > strong {
  color: var(--cream);
  font-size: 20px;
  line-height: 1.3;
}

.delivery-group-heading > p {
  max-width: 590px;
  margin: 7px 0 0;
  color: rgba(255, 250, 242, 0.53);
  font-size: 13px;
  line-height: 1.6;
}

.delivery-group-heading--now {
  padding: 22px 24px;
  border: 1px solid rgba(242, 200, 121, 0.23);
  background: linear-gradient(90deg, rgba(91, 20, 111, 0.58), rgba(26, 8, 35, 0.30));
  box-shadow: inset 3px 0 var(--gold);
}

.delivery-group-heading--later {
  margin-top: 16px;
  padding-top: 30px;
}

.deliverable-list article.deliverable-immediate {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(82, 0, 130, 0.16), transparent 76%);
  box-shadow: inset 1px 0 rgba(242, 200, 121, 0.22);
}

.deliverable-list .release {
  font-size: 13px;
  line-height: 1.35;
}

.deliverable-product {
  min-height: 650px;
}

.deliverable-list article.deliverable-immediate {
  padding-top: 23px;
  padding-bottom: 23px;
}

.delivery-second-stage {
  position: relative;
  z-index: 2;
  margin-top: 66px;
}

.delivery-second-stage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 27px 31px;
  border: 1px solid rgba(242, 200, 121, 0.24);
  background: linear-gradient(90deg, rgba(72, 16, 90, 0.72), rgba(19, 7, 27, 0.57));
  box-shadow: inset 3px 0 var(--gold);
}

.delivery-second-stage-heading p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.delivery-second-stage-heading h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
}

.delivery-second-stage-heading > span {
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid rgba(242, 200, 121, 0.30);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(242, 200, 121, 0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-second-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 0;
  background: rgba(255, 255, 255, 0.09);
}

.delivery-second-stage-grid article {
  min-height: 275px;
  padding: 29px 27px 27px;
  background:
    radial-gradient(circle at 92% 4%, rgba(133, 37, 159, 0.13), transparent 34%),
    rgba(11, 5, 16, 0.82);
}

.delivery-second-stage-grid .deliverable-icon {
  margin-bottom: 27px;
}

.delivery-second-stage-grid .release {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-second-stage-grid h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.delivery-second-stage-grid article > p:last-child {
  margin: 0;
  color: rgba(255, 250, 242, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

/* Purchase guarantee */
.purchase-guarantee {
  background-color: var(--ivory);
  background-image:
    linear-gradient(90deg, rgba(244, 239, 230, 0.72), rgba(244, 239, 230, 0.62)),
    url("../images/bg-paper-strata.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.purchase-guarantee-grid {
  display: grid;
  grid-template-columns: 230px minmax(460px, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.purchase-guarantee-number {
  position: relative;
  display: flex;
  width: 220px;
  height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 0, 130, 0.27);
  border-radius: 50%;
  color: #520082;
  background: rgba(255, 255, 255, 0.30);
  box-shadow: 0 26px 60px rgba(54, 31, 61, 0.12);
}

.purchase-guarantee-number::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(139, 84, 156, 0.30);
  border-radius: 50%;
}

.purchase-guarantee-number span {
  color: #81531e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.purchase-guarantee-number strong {
  margin: 3px 0 -3px;
  font-family: var(--display);
  font-size: 92px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.purchase-guarantee-number small {
  color: #81531e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purchase-guarantee-copy h2 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: clamp(45px, 4.5vw, 66px);
  line-height: 1.03;
}

.purchase-guarantee-copy h2 em {
  color: #520082;
  font-style: normal;
  font-weight: 700;
}

.purchase-guarantee-copy > p:not(.eyebrow) {
  max-width: 750px;
  margin: 0;
  color: rgba(35, 28, 40, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.purchase-guarantee-copy .button {
  width: min(440px, 100%);
  min-height: 66px;
  margin-top: 27px;
}

.purchase-guarantee-card {
  padding: 34px 30px;
  border: 1px solid rgba(82, 0, 130, 0.22);
  background:
    radial-gradient(circle at 92% 5%, rgba(159, 63, 196, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(55, 14, 69, 0.96), rgba(18, 7, 25, 0.96));
  color: var(--cream);
  box-shadow: 0 28px 60px rgba(54, 31, 61, 0.20);
}

.purchase-guarantee-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 27px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purchase-guarantee-card > span,
.purchase-guarantee-card > strong {
  display: block;
}

.purchase-guarantee-card > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purchase-guarantee-card > strong {
  margin: 9px 0 12px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.3;
}

.purchase-guarantee-card > p {
  margin: 0;
  color: rgba(255, 250, 242, 0.53);
  font-size: 12px;
  line-height: 1.65;
}

/* Livre Pensadores community */
.community {
  isolation: isolate;
  background-color: #0a0510;
  background-image:
    linear-gradient(90deg, rgba(8, 4, 13, 0.94) 0%, rgba(15, 5, 22, 0.79) 48%, rgba(25, 7, 34, 0.59) 100%),
    linear-gradient(180deg, rgba(8, 4, 13, 0.60), rgba(8, 4, 13, 0.82)),
    url("../images/bg-definition-continuity.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.community::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 77% 43%, rgba(159, 63, 196, 0.25), transparent 32%),
    radial-gradient(circle at 22% 82%, rgba(242, 200, 121, 0.08), transparent 31%);
}

.community-light {
  position: absolute;
  z-index: -1;
  top: 38%;
  right: 8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 28, 156, 0.22), transparent 68%);
  transform: translateY(-50%);
}

.community-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(480px, 0.95fr) minmax(500px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 145px);
}

.community-copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1.03;
}

.community-copy h2 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 700;
}

.community-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: 17px;
  line-height: 1.72;
}

.community-copy > p.community-lead {
  color: rgba(255, 250, 242, 0.82);
  font-size: 19px;
}

.community-copy > p + p {
  margin-top: 18px;
}

.community-copy strong {
  color: var(--cream);
}

.community-included {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 680px;
  margin: 31px 0 27px;
  padding: 17px 20px;
  border: 1px solid rgba(242, 200, 121, 0.23);
  background: rgba(242, 200, 121, 0.06);
  color: rgba(255, 250, 242, 0.70);
  font-size: 14px;
  line-height: 1.5;
}

.community-included svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-copy .button {
  width: min(430px, 100%);
  min-height: 68px;
}

.community-visual {
  position: relative;
  min-height: 610px;
}

.community-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(242, 200, 121, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.community-orbit--outer {
  width: 570px;
  height: 570px;
}

.community-orbit--inner {
  width: 390px;
  height: 390px;
  border-color: rgba(219, 154, 236, 0.16);
}

.community-orbit--outer::before,
.community-orbit--outer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.community-orbit--outer::before {
  inset: 48px;
  border: 1px dashed rgba(242, 200, 121, 0.10);
}

.community-orbit--outer::after {
  inset: 118px;
  background: radial-gradient(circle, rgba(130, 31, 157, 0.22), transparent 68%);
}

.community-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 318px;
  min-height: 318px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 30px;
  border: 1px solid rgba(242, 200, 121, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 15%, rgba(142, 45, 171, 0.30), transparent 47%),
    rgba(18, 7, 25, 0.88);
  text-align: center;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.38), inset 0 0 55px rgba(159, 63, 196, 0.12);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.community-core img {
  width: 104px;
  height: auto;
  margin-bottom: 17px;
}

.community-core > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.community-core > strong {
  display: block;
  margin: 9px 0 12px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.08;
}

.community-core > small {
  color: rgba(255, 250, 242, 0.57);
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.community-topics {
  display: contents;
}

.community-node {
  position: absolute;
  z-index: 4;
  padding: 11px 16px;
  border: 1px solid rgba(242, 200, 121, 0.26);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(20, 7, 27, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.community-node--one { top: 34px; left: 50%; transform: translateX(-50%); }
.community-node--two { top: 92px; right: 42px; }
.community-node--three { top: 205px; right: -8px; }
.community-node--four { right: -14px; bottom: 158px; }
.community-node--five { right: 56px; bottom: 69px; }
.community-node--six { bottom: 19px; left: 50%; transform: translateX(-50%); }
.community-node--seven { bottom: 76px; left: 50px; }
.community-node--eight { bottom: 169px; left: -27px; }
.community-node--nine { top: 199px; left: -12px; }
.community-node--ten { top: 91px; left: 47px; }

.community-members i {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(242, 200, 121, 0.42);
  border-radius: 50%;
  background: #3c005e;
  box-shadow: 0 0 18px rgba(207, 113, 231, 0.44);
}

.community-members i:nth-child(1) { top: 128px; left: 92px; }
.community-members i:nth-child(2) { top: 194px; right: 49px; }
.community-members i:nth-child(3) { top: 313px; right: 18px; }
.community-members i:nth-child(4) { right: 103px; bottom: 83px; }
.community-members i:nth-child(5) { bottom: 36px; left: 229px; }
.community-members i:nth-child(6) { bottom: 109px; left: 59px; }
.community-members i:nth-child(7) { top: 292px; left: 8px; }
.community-members i:nth-child(8) { top: 118px; right: 150px; }

.community-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 75px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.10);
}

.community-pillars article {
  min-height: 235px;
  padding: 34px 32px;
  background: rgba(10, 5, 16, 0.79);
}

.community-pillars article > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.community-pillars h3 {
  margin: 28px 0 10px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
}

.community-pillars p {
  margin: 0;
  color: rgba(255, 250, 242, 0.55);
  font-size: 14px;
  line-height: 1.65;
}

/* Optional physical editions */
.physical-edition-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: center;
  gap: 34px;
  margin-top: 105px;
  padding: 38px 42px;
  border: 1px solid rgba(97, 34, 118, 0.30);
  background:
    radial-gradient(circle at 90% 8%, rgba(159, 63, 196, 0.20), transparent 30%),
    linear-gradient(135deg, rgba(49, 12, 62, 0.96), rgba(16, 7, 23, 0.96));
  color: var(--cream);
  box-shadow: 0 30px 70px rgba(54, 31, 61, 0.20);
}

.physical-edition-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(242, 200, 121, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(242, 200, 121, 0.06);
}

.physical-edition-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.physical-edition-copy > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.physical-edition-copy h3 {
  margin: 9px 0 10px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.physical-edition-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 242, 0.59);
  font-size: 13px;
  line-height: 1.68;
}

.physical-edition-copy p strong {
  color: rgba(255, 250, 242, 0.88);
}

.physical-edition-options {
  display: grid;
  gap: 8px;
}

.physical-edition-options > div {
  padding: 13px 15px;
  border: 1px solid rgba(242, 200, 121, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.physical-edition-options small,
.physical-edition-options strong {
  display: block;
}

.physical-edition-options small {
  margin-bottom: 3px;
  color: rgba(242, 200, 121, 0.72);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.physical-edition-options strong {
  color: var(--cream);
  font-size: 13px;
}

.physical-edition-options > p {
  margin: 3px 0 0;
  color: rgba(255, 250, 242, 0.39);
  font-size: 9px;
  line-height: 1.5;
}

.offer-copy .offer-format-note {
  max-width: 690px;
  margin: 25px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(242, 200, 121, 0.065);
  color: rgba(255, 250, 242, 0.61);
  font-size: 13px;
  line-height: 1.65;
}

.offer-copy .offer-format-note strong {
  color: var(--cream);
}

@media (max-width: 1160px) {
  .deliverable-product {
    min-height: 620px;
  }

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

  .delivery-second-stage-grid article {
    min-height: 245px;
  }

  .purchase-guarantee-grid {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .purchase-guarantee-number {
    width: 190px;
    height: 190px;
  }

  .purchase-guarantee-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 54px minmax(180px, 0.42fr) 1fr;
    align-items: center;
    gap: 23px;
  }

  .purchase-guarantee-card > svg {
    margin: 0;
  }

  .purchase-guarantee-card > span {
    align-self: end;
  }

  .purchase-guarantee-card > strong {
    grid-column: 2;
    align-self: start;
    margin: 7px 0 0;
  }

  .purchase-guarantee-card > p {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .community-copy {
    max-width: 850px;
  }

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

  .physical-edition-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .physical-edition-options {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .physical-edition-options > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .deliverable-product {
    min-height: 555px;
  }

  .delivery-group-heading--now {
    padding: 20px;
  }

  .deliverable-list article.deliverable-immediate {
    padding-left: 13px;
  }

  .delivery-second-stage {
    margin-top: 48px;
  }

  .delivery-second-stage-heading {
    display: grid;
    padding: 24px 22px;
  }

  .delivery-second-stage-heading h3 {
    font-size: 24px;
  }

  .delivery-second-stage-heading > span {
    width: max-content;
  }

  .delivery-second-stage-grid {
    grid-template-columns: 1fr;
  }

  .delivery-second-stage-grid article {
    min-height: 0;
    padding: 27px 24px;
  }

  .purchase-guarantee-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .purchase-guarantee-number {
    width: 175px;
    height: 175px;
  }

  .purchase-guarantee-number strong {
    font-size: 76px;
  }

  .purchase-guarantee-copy h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .purchase-guarantee-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .purchase-guarantee-card {
    grid-column: auto;
    display: block;
  }

  .purchase-guarantee-card > svg {
    margin-bottom: 25px;
  }

  .purchase-guarantee-card > strong {
    margin: 9px 0 12px;
  }

  .community-copy h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .community-copy > p:not(.eyebrow),
  .community-copy > p.community-lead {
    font-size: 16px;
  }

  .community-visual {
    min-height: 660px;
  }

  .community-orbit,
  .community-core {
    top: 235px;
  }

  .community-orbit--outer {
    width: 470px;
    height: 470px;
  }

  .community-orbit--inner {
    width: 330px;
    height: 330px;
  }

  .community-core {
    width: 278px;
    min-height: 278px;
  }

  .community-core > strong {
    font-size: 28px;
  }

  .community-topics {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
  }

  .community-node {
    position: static;
    transform: none;
  }

  .community-members i:nth-child(1) { top: 98px; left: 14%; }
  .community-members i:nth-child(2) { top: 176px; right: 6%; }
  .community-members i:nth-child(3) { top: 286px; right: 2%; }
  .community-members i:nth-child(4) { right: 16%; bottom: 54px; }
  .community-members i:nth-child(5) { bottom: 22px; left: 43%; }
  .community-members i:nth-child(6) { bottom: 81px; left: 8%; }
  .community-members i:nth-child(7) { top: 268px; left: 1%; }
  .community-members i:nth-child(8) { top: 95px; right: 25%; }

  .community-pillars {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .community-pillars article {
    min-height: 0;
  }

  .physical-edition-card {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 72px;
    padding: 31px 25px;
  }

  .physical-edition-icon {
    width: 64px;
    height: 64px;
  }

  .physical-edition-options {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    overflow-wrap: normal;
    word-break: normal;
  }

  .deliverable-product {
    min-height: 510px;
  }

  .purchase-guarantee-copy .button {
    padding-inline: 16px;
  }

  .community-visual {
    min-height: 650px;
  }

  .community-orbit--outer {
    width: 390px;
    height: 390px;
  }

  .community-orbit--inner {
    width: 285px;
    height: 285px;
  }

  .community-core {
    width: 240px;
    min-height: 240px;
    padding: 32px 22px;
  }

  .community-core img {
    width: 88px;
    margin-bottom: 12px;
  }

  .community-core > strong {
    font-size: 24px;
  }

  .community-node {
    padding: 9px 12px;
    font-size: 9px;
  }

  .community-members i {
    width: 9px;
    height: 9px;
  }

  .physical-edition-options {
    grid-template-columns: 1fr;
  }

  .physical-edition-options > p {
    grid-column: auto;
  }
}

@media (min-width: 1161px) and (max-width: 1240px) {
  .header-inner {
    grid-template-columns: 290px 1fr 225px;
  }

  .primary-nav {
    gap: 11px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .button--header {
    padding-inline: 14px;
    font-size: 11px;
  }
}

/* Personalized thank-you page */
.thank-you-page {
  min-height: 100vh;
  padding-bottom: 0;
  background: #09050e;
  color: var(--cream);
}

.thank-you-header-inner {
  grid-template-columns: 1fr auto;
}

.thank-you-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.thank-you-instagram:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

.thank-you-instagram svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}

.thank-you-main {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: calc(var(--header-height) + 74px) 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.thank-you-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/bg-hero-stonehenge.webp") center / cover no-repeat;
  filter: saturate(0.96) contrast(1.05);
}

.thank-you-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 40%, rgba(116, 27, 143, 0.28), transparent 36%),
    linear-gradient(90deg, rgba(7, 3, 11, 0.97) 0%, rgba(11, 5, 16, 0.88) 48%, rgba(12, 4, 18, 0.57) 100%),
    linear-gradient(0deg, rgba(5, 3, 9, 0.90), rgba(5, 3, 9, 0.16) 58%, rgba(5, 3, 9, 0.46));
}

.thank-you-shell {
  display: flex;
  align-items: center;
  min-height: 720px;
}

.thank-you-card {
  position: relative;
  width: min(1000px, 100%);
  padding: 64px 68px 58px;
  border-color: rgba(242, 200, 121, 0.27);
  background: linear-gradient(145deg, rgba(45, 12, 57, 0.88), rgba(12, 5, 18, 0.88));
}

.thank-you-check {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 31px;
  border: 1px solid rgba(242, 200, 121, 0.58);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(242, 200, 121, 0.07);
  box-shadow: 0 0 34px rgba(242, 200, 121, 0.12);
}

.thank-you-check svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-card h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 76px);
  line-height: 1.04;
}

.thank-you-message {
  max-width: 840px;
  margin-top: 28px;
}

.thank-you-message p {
  margin: 0;
  color: rgba(255, 250, 242, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

.thank-you-message p + p {
  margin-top: 12px;
  color: var(--cream);
  font-weight: 600;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.10);
}

.thank-you-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px 22px;
  background: rgba(12, 5, 18, 0.84);
}

.thank-you-steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(242, 200, 121, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.thank-you-steps strong {
  display: block;
  margin: 2px 0 7px;
  color: var(--cream);
  font-size: 15px;
}

.thank-you-steps p {
  margin: 0;
  color: rgba(255, 250, 242, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.thank-you-actions .button {
  min-height: 58px;
}

.button--outline {
  border-color: rgba(242, 200, 121, 0.42);
  color: var(--gold-light);
  background: rgba(242, 200, 121, 0.045);
}

.button--outline:hover {
  border-color: rgba(242, 200, 121, 0.78);
  background: rgba(242, 200, 121, 0.11);
}

.instagram-button-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}

.thank-you-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #08040c;
}

.thank-you-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  color: rgba(255, 250, 242, 0.44);
  font-size: 11px;
}

/* Privacy links, consent manager and legal pages */
.footer-privacy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}

.footer-privacy-links a,
.footer-privacy-links button {
  border: 0;
  padding: 0;
  color: rgba(255, 250, 242, 0.52);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(242, 200, 121, 0.24);
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-privacy-links a:hover,
.footer-privacy-links button:hover,
.footer-privacy-links a:focus-visible,
.footer-privacy-links button:focus-visible {
  color: var(--gold-light);
  text-decoration-color: currentColor;
}

.consent-modal-open {
  overflow: hidden;
}

.consent-root {
  position: relative;
  z-index: 10000;
  font-family: var(--sans);
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 10001;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(530px, auto);
  align-items: end;
  gap: 32px;
  width: min(1320px, calc(100% - 44px));
  margin-inline: auto;
  padding: 25px 28px;
  overflow: hidden;
  border: 1px solid rgba(137, 0, 217, 0.48);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(218, 153, 255, 0.72), transparent 36%),
    linear-gradient(135deg, rgba(250, 242, 255, 0.99), rgba(236, 204, 255, 0.98));
  box-shadow:
    0 30px 90px rgba(15, 0, 28, 0.64),
    0 0 0 5px rgba(137, 0, 217, 0.13),
    0 0 42px rgba(137, 0, 217, 0.3);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.26s ease, transform 0.26s ease;
  backdrop-filter: blur(18px);
}

.consent-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #520082, #8900d9 56%, #da99ff);
}

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

.consent-banner__copy h2,
.consent-panel h2 {
  margin: 5px 0 8px;
  color: #220036;
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.15;
}

.consent-banner__copy p,
.consent-panel__intro {
  max-width: 780px;
  margin: 0;
  color: rgba(60, 0, 94, 0.82);
  font-size: 13px;
  line-height: 1.58;
}

.consent-eyebrow {
  display: block;
  color: #6f00b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.consent-inline-links,
.consent-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.consent-inline-links a,
.consent-panel__links a {
  color: #520082;
  font-size: 11px;
  font-weight: 500;
  text-underline-offset: 4px;
}

.consent-banner__actions,
.consent-panel__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.consent-action {
  min-height: 48px;
  border: 1px solid #520082;
  border-radius: 8px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(135deg, #520082, #6f00b0);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(82, 0, 130, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.consent-action:hover,
.consent-action:focus-visible {
  border-color: #8900d9;
  color: #fff;
  background: #8900d9;
  box-shadow: 0 10px 28px rgba(137, 0, 217, 0.38);
  transform: translateY(-1px);
}

.consent-action:focus-visible,
.consent-panel__close:focus-visible,
.sendpulse-consent-gate button:focus-visible {
  outline: 3px solid rgba(137, 0, 217, 0.48);
  outline-offset: 3px;
}

.consent-modal {
  position: fixed;
  z-index: 10002;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.consent-modal.is-visible {
  opacity: 1;
}

.consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 0, 29, 0.78);
  backdrop-filter: blur(9px);
}

.consent-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid rgba(137, 0, 217, 0.52);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(218, 153, 255, 0.7), transparent 38%),
    linear-gradient(145deg, #faf2ff, #eccfff);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.68),
    0 0 0 5px rgba(137, 0, 217, 0.13);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.22s ease;
}

.consent-modal.is-visible .consent-panel {
  transform: translateY(0) scale(1);
}

.consent-panel__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(82, 0, 130, 0.24);
  border-radius: 50%;
  color: #520082;
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.consent-categories {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.consent-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
  min-height: 84px;
  padding: 16px 18px;
  border: 1px solid rgba(82, 0, 130, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.consent-category--required {
  cursor: default;
}

.consent-category strong,
.consent-category small {
  display: block;
}

.consent-category strong {
  color: #220036;
  font-size: 14px;
}

.consent-category small {
  margin-top: 4px;
  color: rgba(60, 0, 94, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

.consent-category input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent-category i {
  position: relative;
  display: block;
  width: 46px;
  height: 26px;
  border: 1px solid rgba(82, 0, 130, 0.34);
  border-radius: 999px;
  background: rgba(82, 0, 130, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.consent-category i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6f00b0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent-category input:checked + i {
  border-color: #8900d9;
  background: rgba(137, 0, 217, 0.24);
}

.consent-category input:checked + i::after {
  background: #8900d9;
  transform: translateX(20px);
}

.consent-category input:focus-visible + i {
  outline: 3px solid rgba(137, 0, 217, 0.48);
  outline-offset: 3px;
}

.consent-category input:disabled + i {
  opacity: 0.58;
}

.consent-panel__actions {
  margin-top: 24px;
}

.sendpulse-consent-gate {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 38px 30px;
  border: 1px solid rgba(137, 0, 217, 0.34);
  background: linear-gradient(145deg, rgba(250, 242, 255, 0.94), rgba(236, 204, 255, 0.92));
  text-align: center;
}

.sendpulse-consent-gate span {
  color: #6f00b0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sendpulse-consent-gate p {
  max-width: 520px;
  margin: 10px auto 22px;
  color: rgba(60, 0, 94, 0.78);
  font-size: 14px;
}

.sendpulse-consent-gate button {
  min-height: 50px;
  border: 1px solid #520082;
  border-radius: 7px;
  padding: 10px 22px;
  color: #fff;
  background: linear-gradient(135deg, #520082, #8900d9);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 3%, rgba(82, 0, 130, 0.28), transparent 30%),
    linear-gradient(180deg, #110718 0%, #08040d 100%);
}

.legal-header {
  position: relative;
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 4, 13, 0.76);
}

.legal-header .header-inner {
  min-height: 82px;
}

.legal-header__back {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.legal-main {
  padding: 72px 0 110px;
}

.legal-shell {
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
}

.legal-hero {
  margin-bottom: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(242, 200, 121, 0.22);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 12px 0 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: 16px;
}

.legal-updated {
  display: inline-block;
  margin-top: 17px;
  color: rgba(255, 250, 242, 0.46);
  font-size: 11px;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content section {
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
}

.legal-content h2 {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 650;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 25px 0 8px;
  color: var(--cream);
  font-size: 16px;
}

.legal-content p,
.legal-content li,
.legal-content th,
.legal-content td {
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
  line-height: 1.72;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content table + p {
  margin-top: 13px;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 21px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content strong {
  color: var(--cream);
}

.legal-content a {
  color: var(--gold-light);
  text-underline-offset: 4px;
}

.legal-table-wrap {
  margin-top: 17px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
}

.legal-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.legal-content th,
.legal-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.legal-content th {
  color: var(--gold-light);
  background: rgba(242, 200, 121, 0.055);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

.legal-contact {
  border-color: rgba(242, 200, 121, 0.3) !important;
  background: rgba(242, 200, 121, 0.055) !important;
}

@media (max-width: 1120px) {
  .consent-banner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .footer-privacy-links {
    margin-block: 8px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 21px 18px;
    overflow-y: auto;
    border-radius: 12px;
  }

  .consent-banner__actions,
  .consent-panel__actions {
    grid-template-columns: 1fr;
  }

  .consent-action {
    width: 100%;
    min-height: 50px;
  }

  .consent-modal {
    align-items: end;
    padding: 10px;
  }

  .consent-panel {
    max-height: calc(100vh - 20px);
    padding: 28px 18px 22px;
    border-radius: 14px;
  }

  .consent-panel__close {
    top: 12px;
    right: 12px;
  }

  .consent-panel h2 {
    padding-right: 38px;
  }

  .consent-category {
    gap: 14px;
    padding: 14px;
  }

  .legal-main {
    padding: 48px 0 80px;
  }

  .legal-shell {
    width: min(100% - 28px, 980px);
  }

  .legal-hero h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .legal-content section {
    padding: 24px 20px;
  }
}

/* Product mockups supplied for the final composition */
.book-mockup--bundle img,
.book-mockup--tablet img {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-product .book-mockup--bundle {
  top: 70px;
  left: -75px;
  width: 880px;
  transform: none;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.38));
}

.hero-product--bundle .workbook-badge {
  top: 590px;
}

.hero-product--bundle .edition-mark {
  top: 710px;
  left: 130px;
}

.book-mockup--tablet {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(580px, 100%);
  height: auto;
  overflow: visible;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.38));
}

.book-mockup--tablet img {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: none;
}

@media (max-width: 1320px) {
  .hero-product .book-mockup--bundle {
    top: 75px;
    left: -65px;
    width: 800px;
  }

  .hero-product--bundle .workbook-badge {
    top: 550px;
  }

  .hero-product--bundle .edition-mark {
    top: 675px;
    left: 105px;
  }
}

@media (max-width: 1160px) {
  .hero-product .book-mockup--bundle {
    top: 95px;
    left: -55px;
    width: 700px;
  }

  .hero-product--bundle .workbook-badge {
    top: 505px;
  }

  .hero-product--bundle .edition-mark {
    top: 630px;
    left: 65px;
  }
}

@media (max-width: 980px) {
  .hero-product .book-mockup--bundle {
    top: 70px;
    left: calc(50% + 80px);
    width: 800px;
    transform: translateX(-50%);
  }

  .hero-product--bundle .workbook-badge {
    top: 540px;
  }

  .hero-product--bundle .edition-mark {
    top: 660px;
    left: calc(50% - 130px);
  }
}

@media (max-width: 760px) {
  .hero-product .book-mockup--bundle {
    top: 60px;
    left: calc(50% + 65px);
    width: 700px;
  }

  .hero-product--bundle .workbook-badge {
    top: 475px;
  }

  .hero-product--bundle .edition-mark {
    top: 590px;
  }

  .book-mockup--tablet {
    width: min(500px, 100%);
    height: auto;
  }

  .book-mockup--tablet img {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-product .book-mockup--bundle {
    top: 55px;
    left: calc(50% + 55px);
    width: 620px;
  }

  .hero-product--bundle .workbook-badge {
    top: 425px;
  }

  .hero-product--bundle .edition-mark {
    top: 540px;
  }

  .book-mockup--tablet {
    width: min(410px, 110%);
    height: auto;
  }

  .book-mockup--tablet img {
    width: 100%;
  }
}

@media (max-width: 1160px) {
  .thank-you-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .thank-you-page {
    padding-bottom: 0;
  }

  .thank-you-instagram span {
    display: none;
  }

  .thank-you-main {
    padding: calc(var(--header-height) + 48px) 0 58px;
  }

  .thank-you-shell {
    min-height: auto;
  }

  .thank-you-card {
    padding: 38px 24px 32px;
  }

  .thank-you-check {
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
  }

  .thank-you-card h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .thank-you-message p {
    font-size: 16px;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .thank-you-actions {
    display: grid;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-footer .container {
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .button.js-checkout {
    animation: none !important;
  }
}
