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

/* 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%);
}
/* 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);
  }
}
@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;
  }
}
/* 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;
}
@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 (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;
  }
}
