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

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

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

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

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

:root {
  --ink: #17122b;
  --ink-soft: #302847;
  --purple: #7c3aed;
  --purple-deep: #5b21b6;
  --purple-bright: #9f4ff6;
  --violet: #8b5cf6;
  --lilac: #f1e5ff;
  --lilac-soft: #faf7ff;
  --lilac-strong: #dfc8ff;
  --orange: #ff7900;
  --orange-bright: #ff9b22;
  --white: #ffffff;
  --muted: #746d82;
  --line: #e9dcf7;
  --shadow-sm: 0 0.75rem 2rem rgba(73, 34, 123, 0.1);
  --shadow-md: 0 1.4rem 3.8rem rgba(88, 44, 140, 0.16);
  --shadow-purple: 0 1rem 2.4rem rgba(124, 58, 237, 0.28);
  --shadow-orange: 0 0.9rem 2rem rgba(255, 121, 0, 0.28);
  --radius-sm: 1rem;
  --radius-md: 1.45rem;
  --radius-lg: 2rem;
  --container: 71rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 0.2rem solid var(--orange);
  outline-offset: 0.25rem;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 46rem;
  margin-bottom: 1.35rem;
  font-size: clamp(2.75rem, 9.5vw, 5.25rem);
  font-weight: 800;
  line-height: 0.99;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--purple);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.03em;
  left: -0.05em;
  height: 0.18em;
  border-radius: 999px;
  background: rgba(255, 121, 0, 0.23);
  content: "";
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
}

h3 {
  font-weight: 700;
  line-height: 1.28;
}

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

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.kicker,
.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--purple);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0.0625rem solid transparent;
  border-radius: 0.85rem;
  padding: 0.95rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-0.15rem);
}

.button svg,
.mobile-cta svg {
  width: 1.15rem;
  flex: 0 0 1.15rem;
}

.button-primary,
.button-small {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: var(--shadow-orange);
  color: var(--white);
}

.button-primary:hover,
.button-small:hover {
  background: linear-gradient(135deg, #ef6700, var(--orange));
  box-shadow: 0 1.1rem 2.2rem rgba(255, 121, 0, 0.34);
}

.button-light {
  background: var(--orange);
  box-shadow: var(--shadow-orange);
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 0.0625rem solid rgba(124, 58, 237, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.25rem 1rem rgba(57, 27, 92, 0.04);
  backdrop-filter: blur(1rem);
}

.nav-wrap {
  position: relative;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  width: 7.7rem;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 100%;
  aspect-ratio: 600 / 358;
  object-fit: contain;
}

.site-header nav {
  display: none;
}

.button-small {
  display: none;
  min-height: 2.8rem;
  border-radius: 0.72rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.76rem;
}

.mobile-menu {
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  cursor: pointer;
  place-content: center;
  gap: 0.3rem;
  border: 0.0625rem solid var(--line);
  border-radius: 0.8rem;
  background: var(--lilac-soft);
  list-style: none;
}

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

.mobile-menu summary span {
  display: block;
  width: 1.2rem;
  height: 0.12rem;
  border-radius: 999px;
  background: var(--purple);
}

.mobile-panel {
  position: absolute;
  z-index: 60;
  top: calc(100% - 0.15rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mobile-panel a {
  padding: 0.75rem 0.8rem;
  border-radius: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.mobile-panel a:hover {
  background: var(--lilac-soft);
  color: var(--purple);
}

.mobile-panel .mobile-panel-cta {
  margin-top: 0.35rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: var(--white);
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 9vw, 7.5rem) 0 clamp(6.2rem, 10vw, 8.5rem);
  background:
    radial-gradient(circle at 86% 23%, rgba(159, 79, 246, 0.25), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(255, 121, 0, 0.13), transparent 24%),
    linear-gradient(135deg, #fff 3%, #fbf7ff 52%, #f2e5ff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(124, 58, 237, 0.14) 0.075rem, transparent 0.075rem);
  background-size: 1.35rem 1.35rem;
  content: "";
  mask-image: linear-gradient(115deg, transparent 25%, black 75%, transparent 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 7%;
  right: -8rem;
  width: 26rem;
  height: 26rem;
  border: 4rem solid rgba(124, 58, 237, 0.08);
}

.hero-orb-two {
  bottom: -9rem;
  left: -7rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 121, 0, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.52rem 0.85rem;
  border: 0.0625rem solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.4rem 1rem rgba(88, 44, 140, 0.07);
}

.eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(255, 121, 0, 0.13);
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.03rem, 2.6vw, 1.22rem);
  line-height: 1.7;
}

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

.text-link {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border: 0.0625rem solid var(--purple);
  border-radius: 0.85rem;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link:hover {
  background: var(--lilac);
}

.hero-proof {
  display: flex;
  margin: 1.5rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-proof svg {
  width: 1rem;
  color: var(--purple);
}

.hero-visual {
  position: relative;
  width: min(92%, 26rem);
  margin-inline: auto;
  padding: 1.5rem 0 2rem;
}

.book-stage {
  position: relative;
  z-index: 3;
  width: 71%;
  aspect-ratio: 760 / 1075;
  margin-inline: auto;
  perspective: 85rem;
}

.book-3d {
  position: absolute;
  inset: 0;
  transform: rotateY(-20deg) rotateX(3deg) rotateZ(-1.5deg);
  transform-style: preserve-3d;
}

.book-front {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  border: 0.38rem solid var(--white);
  border-radius: 0.65rem 1rem 1rem 0.65rem;
  background: var(--white);
  box-shadow: 2rem 2.8rem 5rem rgba(73, 25, 128, 0.3);
  transform: translateZ(1.25rem);
}

.book-front::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.7rem;
  background: linear-gradient(90deg, rgba(62, 25, 91, 0.22), transparent);
  content: "";
}

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

.book-spine {
  position: absolute;
  z-index: 2;
  top: 0.45rem;
  bottom: 0.45rem;
  left: -1.25rem;
  display: grid;
  width: 2.5rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.45rem 0 0 0.45rem;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple-bright));
  box-shadow: -0.5rem 0.8rem 1.5rem rgba(73, 25, 128, 0.2);
  color: var(--white);
  transform: rotateY(-18deg) translateZ(0.3rem);
}

.book-spine span {
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.84;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.book-pages {
  position: absolute;
  z-index: 1;
  top: 0.65rem;
  right: -1.35rem;
  bottom: 0.65rem;
  width: 2rem;
  border-radius: 0 0.5rem 0.5rem 0;
  background: repeating-linear-gradient(to bottom, #fff 0, #fff 0.16rem, #e8dff0 0.18rem, #faf6ff 0.21rem);
  box-shadow: 0.7rem 0.8rem 1.2rem rgba(73, 25, 128, 0.16);
  transform: rotateY(28deg) translateZ(-0.3rem);
}

.book-glow {
  position: absolute;
  z-index: 0;
  top: 4%;
  left: 4%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 79, 246, 0.58), rgba(124, 58, 237, 0.18) 60%, transparent 72%);
  filter: blur(1.2rem);
}

.book-shadow {
  position: absolute;
  z-index: 1;
  bottom: 0.2rem;
  left: 16%;
  width: 70%;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(75, 25, 125, 0.34);
  filter: blur(1.1rem);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  max-width: 13rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border: 0.0625rem solid rgba(124, 58, 237, 0.13);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(0.7rem);
}

.floating-card-top {
  top: 9%;
  right: -4%;
}

.floating-card-bottom {
  bottom: 2%;
  left: -4%;
}

.floating-icon {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--lilac);
  color: var(--purple);
  font-size: 1.15rem;
  font-weight: 800;
}

.floating-icon-blue {
  background: #fff0df;
  color: var(--orange);
}

.floating-card strong,
.floating-card small {
  display: block;
  line-height: 1.2;
}

.floating-card strong {
  color: var(--ink);
  font-size: 0.71rem;
}

.floating-card small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.6rem;
}

.trust-strip {
  position: relative;
  z-index: 6;
  margin-top: -3rem;
  background: transparent;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  border: 0.0625rem solid var(--line);
  border-radius: 1.2rem;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.trust-grid > div {
  display: grid;
  min-height: 6.6rem;
  align-content: center;
  justify-items: center;
  padding: 1rem 0.55rem;
  border-right: 0.0625rem solid var(--line);
  border-bottom: 0.0625rem solid var(--line);
  text-align: center;
}

.trust-grid > div:nth-child(2n) {
  border-right: 0;
}

.trust-grid > div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.trust-grid strong {
  color: var(--purple);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.trust-grid span {
  margin-top: 0.3rem;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.62rem;
}

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

.two-column {
  display: grid;
  gap: 2.5rem;
}

.section-heading p,
.center-heading > p:last-child,
.chapters-intro > p,
.situations-lead,
.faq-heading > p:last-child,
.gallery-heading > p,
.sources-wrap > p {
  color: var(--muted);
  font-size: 1rem;
}

.question-stack {
  display: grid;
  gap: 0.75rem;
}

.question-stack blockquote {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border: 0.0625rem solid var(--line);
  border-radius: 0.9rem;
  background: var(--lilac-soft);
  box-shadow: 0 0.5rem 1.3rem rgba(73, 34, 123, 0.05);
  color: var(--ink);
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.question-stack blockquote:nth-child(2) {
  margin-left: 4%;
}

.question-stack blockquote:nth-child(3) {
  margin-left: 8%;
}

.answer-card {
  margin-top: 0.4rem;
  padding: 1.45rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-bright));
  box-shadow: var(--shadow-purple);
  color: rgba(255, 255, 255, 0.84);
}

.answer-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffd6ac;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-card p {
  margin-bottom: 0;
}

.soft-section {
  background: linear-gradient(180deg, var(--lilac-soft), #f7efff);
}

.center-heading {
  max-width: 50rem;
  margin: 0 auto clamp(2.4rem, 5vw, 3.7rem);
  text-align: center;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  padding: 1.7rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-0.35rem);
}

.benefit-card h3 {
  margin: 1.15rem 0 0.65rem;
  font-size: 1.12rem;
}

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

.line-icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border-radius: 0.85rem;
}

.line-icon svg {
  width: 2rem;
}

.pink-icon,
.lilac-icon {
  background: var(--lilac);
  color: var(--purple);
}

.blue-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.featured-benefit {
  border-color: transparent;
  background: linear-gradient(145deg, var(--purple-deep), var(--purple-bright));
  box-shadow: var(--shadow-purple);
}

.featured-benefit h3,
.featured-benefit p {
  color: var(--white);
}

.featured-benefit p {
  opacity: 0.78;
}

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

.chapters-intro {
  display: grid;
  gap: 0.75rem 3rem;
  margin-bottom: 2.4rem;
}

.chapter-list {
  display: grid;
  gap: 1rem;
}

.chapter-card {
  position: relative;
  display: grid;
  min-height: 12rem;
  align-content: start;
  gap: 1rem;
  padding: 1.45rem;
  overflow: hidden;
  border: 0.0625rem solid var(--line);
  border-radius: 1.15rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.chapter-card::before {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: var(--lilac);
  content: "";
}

.chapter-card.pink,
.chapter-card.blue,
.chapter-card.lilac,
.chapter-card.peach,
.chapter-card.mint {
  background: var(--white);
}

.chapter-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 0.72rem;
  background: var(--lilac);
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
}

.chapter-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.chapter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.6;
}

.chapter-mark {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.4rem;
  color: var(--orange);
  font-size: 1.25rem;
}

.method-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 121, 0, 0.3), transparent 26%),
    linear-gradient(135deg, var(--purple-deep), var(--purple-bright));
  color: var(--white);
}

.method-section::before {
  position: absolute;
  top: -9rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border: 3rem solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.method-wrap {
  position: relative;
  display: grid;
  gap: 3rem;
}

.light-kicker {
  color: #ffd2a8;
}

.method-copy h2,
.method-copy p {
  color: var(--white);
}

.method-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.method-copy .button {
  margin-top: 1rem;
}

.method-steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.85rem;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.8rem);
}

.method-steps li > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.method-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.79rem;
  line-height: 1.55;
}

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

.gallery-heading {
  display: grid;
  gap: 0.75rem 3rem;
  margin-bottom: 2.4rem;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 13rem;
  gap: 0.85rem;
}

.experience-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0.25rem solid var(--white);
  border-radius: 1.15rem;
  background: var(--lilac-soft);
  box-shadow: var(--shadow-sm);
}

.experience-gallery figure::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(45, 16, 72, 0.84));
  content: "";
  pointer-events: none;
}

.experience-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.experience-gallery figure:hover img {
  transform: scale(1.04);
}

.experience-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.75rem;
  left: 0.85rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.situations-section {
  background: linear-gradient(180deg, var(--lilac-soft), #f5ebff);
}

.situations-sales {
  display: grid;
  gap: 2.5rem;
}

.situations-copy {
  max-width: 46rem;
}

.situation-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0;
}

.situation-tags span {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem;
  border: 0.0625rem solid var(--line);
  border-radius: 0.8rem;
  background: var(--white);
  box-shadow: 0 0.45rem 1rem rgba(73, 34, 123, 0.05);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.situation-tags b {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--lilac);
  color: var(--purple);
  font-size: 0.62rem;
}

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

.receive-box {
  position: relative;
  display: grid;
  gap: 3rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 90%, rgba(255, 121, 0, 0.25), transparent 25%),
    linear-gradient(135deg, var(--purple-deep), var(--purple-bright));
  box-shadow: var(--shadow-purple);
}

.receive-box::after {
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  border: 2.5rem solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.receive-cover,
.receive-copy {
  position: relative;
  z-index: 2;
}

.receive-cover {
  width: min(70%, 17rem);
  margin: auto;
}

.receive-cover::before,
.receive-cover::after {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  content: "";
}

.receive-cover::before {
  top: 0.8rem;
  left: 0.8rem;
  background: var(--orange);
  transform: rotate(4deg);
}

.receive-cover::after {
  top: 0.3rem;
  left: 0.3rem;
  background: var(--lilac-strong);
  transform: rotate(1.5deg);
}

.receive-cover img {
  position: relative;
  z-index: 2;
  border: 0.4rem solid var(--white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.receive-copy h2,
.receive-copy .kicker {
  color: var(--white);
}

.receive-copy .kicker {
  color: #ffd2a8;
}

.check-list {
  display: grid;
  margin: 1.7rem 0 2rem;
  padding: 0;
  gap: 0.9rem;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.check-list svg {
  width: 1.25rem;
  margin-top: 0.15rem;
  color: #ffd2a8;
}

.check-list strong {
  color: var(--white);
}

.receive-copy .button-primary {
  background: var(--orange);
}

.author-section {
  background: linear-gradient(180deg, #fff, var(--lilac-soft));
}

.author-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.author-photo {
  position: relative;
  max-width: 30rem;
  margin-inline: auto;
  padding: 0 1rem 1rem 0;
}

.author-photo::before {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--purple), var(--purple-bright));
  content: "";
}

.author-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 40rem;
  border: 0.3rem solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center 35%;
}

.author-seal {
  position: absolute;
  z-index: 3;
  right: -0.35rem;
  bottom: 2rem;
  display: grid;
  width: 6rem;
  height: 6rem;
  place-content: center;
  border: 0.3rem solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--shadow-orange);
  color: var(--white);
  text-align: center;
  transform: rotate(-7deg);
}

.author-seal strong,
.author-seal span {
  line-height: 1.1;
}

.author-seal strong {
  font-size: 0.75rem;
}

.author-seal span {
  font-size: 0.66rem;
}

.author-copy h2 {
  margin-bottom: 0.15rem;
}

.author-copy h3 {
  margin: 0 0 1.4rem;
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-copy > p {
  color: var(--muted);
  font-size: 0.98rem;
}

.author-note {
  margin: 1.6rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 0.25rem solid var(--orange);
  border-radius: 0 0.9rem 0.9rem 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.65;
}

.author-logo {
  width: 10rem;
  margin-top: 1rem;
  border-radius: 0.6rem;
}

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

.sources-wrap {
  display: grid;
  gap: 1.4rem 3rem;
}

.source-links {
  display: grid;
  gap: 0.65rem;
}

.source-links a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 0.0625rem solid var(--line);
  border-radius: 0.8rem;
  background: var(--lilac-soft);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.source-links a:hover {
  border-color: var(--purple);
  transform: translateY(-0.1rem);
}

.source-links span {
  color: var(--orange);
  font-size: 1.05rem;
}

.offer-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--white), var(--lilac-soft));
}

.offer-box {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4.3rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink), #2d1748);
  box-shadow: 0 2rem 5rem rgba(31, 17, 47, 0.22);
}

.offer-content,
.offer-mini-cover {
  position: relative;
  z-index: 2;
}

.offer-content h2 {
  max-width: 43rem;
  color: var(--white);
}

.offer-content > p:not(.kicker) {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.72);
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.15rem;
  margin: 1.4rem 0;
}

.offer-points span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 600;
}

.offer-points svg {
  width: 1rem;
  color: var(--orange);
}

.offer-pending {
  display: inline-grid;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.offer-pending span {
  color: #ffca99;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-pending strong {
  color: var(--white);
  font-size: 0.9rem;
}

.offer-pending small {
  color: rgba(255, 255, 255, 0.55);
}

.offer-price {
  width: min(100%, 23rem);
  gap: 0.7rem;
  padding: 1.2rem;
}

.offer-price strong {
  display: block;
  font-size: clamp(2.35rem, 7vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.offer-price strong sup {
  margin-right: 0.25rem;
  font-size: 0.38em;
  letter-spacing: 0;
  vertical-align: super;
}

.offer-buy-button {
  width: 100%;
  min-height: 3.5rem;
  margin-top: 0.15rem;
  box-shadow: var(--shadow-orange);
}

.offer-price > small {
  text-align: center;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin: 0.1rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-price span {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--lilac);
  color: var(--purple-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-price strong {
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.hero-price small {
  color: var(--muted);
}

.offer-mini-cover {
  width: min(55%, 13rem);
  margin-inline: auto;
  transform: rotate(4deg);
}

.offer-mini-cover img {
  border: 0.35rem solid var(--white);
  border-radius: 0.65rem;
  box-shadow: var(--shadow-purple);
}

.offer-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.offer-decoration.one {
  top: -9rem;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  background: rgba(124, 58, 237, 0.28);
}

.offer-decoration.two {
  bottom: -11rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 121, 0, 0.16);
}

.faq-section {
  background: linear-gradient(180deg, var(--lilac-soft), #f0e1ff);
}

.faq-wrap {
  display: grid;
  gap: 2.5rem;
}

.faq-heading {
  max-width: 30rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 0.0625rem solid var(--line);
  border-radius: 0.85rem;
  background: var(--white);
  box-shadow: 0 0.45rem 1.2rem rgba(73, 34, 123, 0.05);
}

.faq-list summary {
  display: grid;
  min-height: 4rem;
  cursor: pointer;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--lilac);
  color: var(--purple);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 1.1rem 1.15rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.disclaimer-section {
  padding: 1.8rem 0;
  border-top: 0.0625rem solid var(--line);
  background: var(--white);
}

.disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}

.disclaimer svg {
  width: 2.3rem;
  color: var(--purple);
}

.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--ink);
}

footer {
  padding: 0 0 6.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  width: min(100%, var(--container));
  padding: 1.4rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  width: 8.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff4f7;
}

.footer-main p {
  margin: 0;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.back-top,
.footer-bottom a {
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 2.2rem;
  font-size: 0.68rem;
}

.footer-bottom a {
  color: #e3c9ff;
  text-decoration: underline;
  text-underline-offset: 0.23rem;
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  right: max(0.8rem, env(safe-area-inset-right));
  bottom: max(0.8rem, env(safe-area-inset-bottom));
  left: max(0.8rem, env(safe-area-inset-left));
  display: flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: var(--shadow-orange);
  color: var(--white);
  font-weight: 700;
}

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

  .button {
    padding-inline: 1.7rem;
  }

  .button-small {
    display: inline-flex;
  }

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

  .trust-grid > div,
  .trust-grid > div:nth-child(2n) {
    border-right: 0.0625rem solid var(--line);
    border-bottom: 0;
  }

  .trust-grid > div:last-child {
    border-right: 0;
  }

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

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

  .experience-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 15rem;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .receive-box {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }

  .offer-box {
    grid-template-columns: minmax(0, 1fr) 12rem;
  }

  .offer-mini-cover {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 58rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.8fr);
    gap: 2rem;
    min-height: 39rem;
  }

  .hero-visual {
    width: 100%;
  }

  .two-column {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 5rem;
  }

  .question-stack blockquote:nth-child(2) {
    margin-left: 7%;
  }

  .question-stack blockquote:nth-child(3) {
    margin-left: 14%;
  }

  .chapters-intro,
  .gallery-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
    align-items: end;
  }

  .method-wrap {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 5rem;
  }

  .situations-sales {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
    align-items: start;
    gap: 4rem;
  }

  .author-grid {
    grid-template-columns: minmax(21rem, 0.82fr) minmax(0, 1fr);
    gap: 5rem;
  }

  .sources-wrap {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
    align-items: start;
  }

  .source-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-wrap {
    grid-template-columns: minmax(17rem, 0.64fr) minmax(0, 1fr);
    gap: 5rem;
  }
}

@media (min-width: 70rem) {
  .nav-wrap {
    min-height: 5.2rem;
  }

  .brand {
    width: 8.5rem;
  }

  .mobile-menu {
    display: none;
  }

  .site-header nav {
    display: flex;
    align-items: center;
    gap: 1.45rem;
  }

  .site-header nav a {
    position: relative;
    padding: 1.2rem 0;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 600;
  }

  .site-header nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.8rem;
    left: 0;
    height: 0.13rem;
    border-radius: 999px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }

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

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.78fr);
    min-height: 43rem;
  }

  .hero-visual {
    width: 28rem;
  }

  .book-stage {
    width: 76%;
  }

  .floating-card-top {
    right: -8%;
  }

  .floating-card-bottom {
    left: -8%;
  }

  .featured-benefit {
    transform: translateY(-0.8rem);
  }

  .featured-benefit:hover {
    transform: translateY(-1.15rem);
  }

  .chapter-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chapter-card:last-child {
    grid-column: 2;
  }

  .receive-box {
    grid-template-columns: 20rem minmax(0, 1fr);
    gap: 5rem;
  }

  .offer-box {
    grid-template-columns: minmax(0, 1fr) 15rem;
    padding-inline: 5rem;
  }

  .offer-mini-cover {
    width: 13rem;
  }

  .mobile-cta {
    display: none;
  }

  footer {
    padding-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
