:root {
  --navy-950: #071828;
  --navy-900: #0b2038;
  --navy-800: #12304f;
  --navy-700: #1b456d;
  --gold-500: #c9a968;
  --gold-400: #dbc083;
  --gold-200: #eee0bd;
  --paper: #f7f3e9;
  --paper-light: #fdfbf6;
  --white: #ffffff;
  --ink: #172534;
  --muted: #5d6872;
  --line: #ded8ca;
  --success: #28725d;
  --display: "Newsreader", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow-sm: 0 12px 40px rgba(7, 24, 40, 0.09);
  --shadow-lg: 0 34px 80px rgba(7, 24, 40, 0.24);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

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

.section {
  padding: 112px 0;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--navy-700);
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.65rem;
}

.eyebrow,
.kicker {
  margin-bottom: 14px;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 4px;
  color: var(--gold-500);
}

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

.section-heading {
  margin-bottom: 60px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.narrow,
.reading-column {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 90px;
  align-items: start;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 27px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 12px 28px rgba(11, 32, 56, 0.22);
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 15px 32px rgba(11, 32, 56, 0.28);
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 12px 28px rgba(201, 169, 104, 0.18);
}

.button-gold:hover {
  background: var(--gold-200);
  transform: translateY(-2px);
}

.button:active {
  box-shadow: none;
  transform: translateY(1px);
}

.button:focus-visible,
summary:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: 46px 0 32px;
  background:
    linear-gradient(90deg, rgba(11, 32, 56, 0.035) 1px, transparent 1px) 50% 0 / 150px 100%,
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--navy-900);
  content: "";
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 192, 131, 0.22), rgba(219, 192, 131, 0) 66%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 70px;
  min-height: calc(100svh - 150px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: #3d4d5a;
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-story-image {
  display: block;
  width: min(100%, 430px);
  height: 150px;
  margin: 26px 0 22px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-sm);
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 26px;
}

.benefit-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--gold-200);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 15px;
  text-align: center;
}

.hero-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 20px;
  margin-bottom: 23px;
  color: #344553;
  font-size: 0.87rem;
  line-height: 1.45;
}

.hero-offer {
  display: grid;
  grid-template-columns: auto auto;
  width: fit-content;
  align-items: center;
  column-gap: 18px;
  margin-bottom: 18px;
}

.price-context {
  display: grid;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.price-context strong {
  color: var(--navy-900);
  font-size: 0.86rem;
}

.price {
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 0.9;
}

.price span {
  font-size: 1.1rem;
}

.hero-offer > p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.security-note {
  display: flex;
  max-width: 470px;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.security-note svg {
  width: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 550px;
  place-items: center;
  perspective: 1200px;
}

.book-stage {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 169, 104, 0.34);
  border-radius: 50%;
}

.book-stage::after {
  position: absolute;
  right: 15%;
  bottom: 4%;
  left: 15%;
  height: 28px;
  border-radius: 50%;
  background: rgba(7, 24, 40, 0.2);
  filter: blur(18px);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(201, 169, 104, 0.2);
  border-radius: 50%;
}

.orbit-one {
  inset: 40px;
}

.orbit-two {
  inset: 90px;
}

.light-ray {
  position: absolute;
  top: -120px;
  left: 220px;
  width: 150px;
  height: 650px;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 215, 0.7), transparent);
  filter: blur(8px);
  opacity: 0.7;
  transform: rotate(18deg);
}

.book {
  position: relative;
  z-index: 2;
  width: 310px;
  aspect-ratio: 0.69;
  filter: drop-shadow(28px 34px 24px rgba(7, 24, 40, 0.3));
  transform: rotateY(-11deg) rotateX(2deg) rotateZ(2deg);
  transform-style: preserve-3d;
}

.book::after {
  position: absolute;
  z-index: -1;
  top: 8px;
  right: -16px;
  width: 24px;
  height: calc(100% - 12px);
  border-radius: 0 5px 5px 0;
  background: repeating-linear-gradient(90deg, #ddd5c4 0, #f9f5ea 2px, #e4dccb 4px);
  content: "";
  transform: rotateY(25deg);
  transform-origin: left;
}

.book-spine {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 17px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(90deg, #04101b, #153b61);
  box-shadow: inset -1px 0 rgba(255, 255, 255, 0.15);
}

.book-cover-fallback,
.book-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.book-cover-image {
  z-index: 4;
  object-fit: cover;
}

.book-cover-image.is-missing {
  display: none;
}

.book-cover-fallback {
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 42px 32px 34px 45px;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 18%, rgba(219, 192, 131, 0.24), transparent 25%),
    linear-gradient(145deg, #153d63, #071828 68%);
  flex-direction: column;
  text-align: center;
}

.book-cover-fallback::before,
.book-cover-fallback::after {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(219, 192, 131, 0.28);
  border-radius: 50%;
  content: "";
}

.book-cover-fallback::before {
  top: -175px;
  right: -170px;
}

.book-cover-fallback::after {
  bottom: -195px;
  left: -170px;
}

.cover-brand {
  margin-bottom: 22px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.38em;
}

.cover-rule {
  width: 36px;
  height: 1px;
  margin-bottom: 30px;
  background: var(--gold-400);
}

.book-cover-fallback strong {
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 0.84;
}

.book-cover-fallback strong b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-400);
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 0.7;
}

.book-cover-fallback em {
  margin-top: 17px;
  color: var(--gold-200);
  font-family: var(--display);
  font-size: 1.28rem;
}

.cover-symbol {
  margin: auto 0;
  color: var(--gold-400);
  font-size: 1.5rem;
}

.book-cover-fallback small {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.format-chip {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 85px;
  padding: 8px 13px;
  border: 1px solid var(--gold-200);
  border-radius: 50px;
  color: var(--navy-900);
  background: rgba(253, 251, 246, 0.9);
  box-shadow: var(--shadow-sm);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.trust-strip {
  color: var(--white);
  background: var(--navy-900);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 72px;
  align-items: center;
}

.trust-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-items span:last-child {
  border-right: 0;
}

.trust-items svg {
  width: 19px;
  fill: none;
  stroke: var(--gold-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person div:last-child {
  display: grid;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.76rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-200);
}

.testimonial-card blockquote {
  margin: 24px 0 0;
}

/* Pain */
.pain {
  background: var(--paper-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pain-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(7, 24, 40, 0.04);
}

.pain-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 46px;
  fill: none;
  stroke: var(--navy-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.pain-card h3 {
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--gold-500);
  font-family: var(--display);
  font-size: 1.2rem;
}

/* Solution */
.solution {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #dfe7ee;
  background: var(--navy-900);
}

.solution-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%) 0 0 / 160px 100%,
    radial-gradient(circle at 14% 50%, rgba(201,169,104,.22), transparent 25%);
}

.solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.solution h2,
.authority h2 {
  color: var(--white);
}

.solution p {
  max-width: 690px;
}

.solution blockquote {
  margin: 32px 0 0;
  padding: 14px 0 14px 24px;
  border-left: 2px solid var(--gold-400);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.65rem;
  font-style: italic;
}

.solution-mark {
  position: relative;
  display: grid;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(219, 192, 131, 0.3);
  border-radius: 50%;
  place-items: center;
}

.solution-mark::before,
.solution-mark::after {
  position: absolute;
  border: 1px solid rgba(219, 192, 131, 0.13);
  border-radius: 50%;
  content: "";
}

.solution-mark::before { inset: 24px; }
.solution-mark::after { inset: 50px; }

.solution-mark span {
  position: relative;
  z-index: 1;
  color: var(--gold-400);
  font-family: var(--display);
  font-size: 7.5rem;
  line-height: 1;
}

.solution-mark svg {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 18px;
  width: 90px;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1;
}

/* Process */
.process {
  background: var(--paper-light);
}

.process-grid {
  display: grid;
  position: relative;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0 0 90px;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 25px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid li {
  position: relative;
  padding: 0 15px;
  text-align: center;
}

.process-grid li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--paper-light);
  font-family: var(--display);
  font-size: 1rem;
  place-items: center;
}

.process-grid strong {
  display: block;
  min-height: 40px;
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.55;
}

.whatsapp-bonus {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.whatsapp-bonus h3 {
  margin-bottom: 13px;
  font-size: 2rem;
}

.whatsapp-bonus > div:last-child > p:not(.kicker) {
  color: var(--muted);
}

.whatsapp-icon {
  display: grid;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 14px 32px rgba(7, 24, 40, 0.16);
  place-items: center;
}

.whatsapp-icon svg {
  width: 52px;
  fill: none;
  stroke: var(--gold-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

/* Receives */
.receives {
  background: var(--paper);
}

.receive-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.receive-card {
  position: relative;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.receive-card h3 {
  max-width: 480px;
  margin: 26px 0;
  font-size: 2.1rem;
}

.receive-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gold-label {
  color: var(--navy-950);
  background: var(--gold-400);
}

.mini-cover {
  position: absolute;
  top: 42px;
  right: 42px;
  display: flex;
  width: 92px;
  height: 122px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-700), var(--navy-950));
  box-shadow: 8px 10px 20px rgba(7, 24, 40, 0.18);
  flex-direction: column;
  text-align: center;
  transform: rotate(3deg);
}

.mini-cover span {
  color: var(--gold-400);
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1;
}

.mini-cover small {
  font-size: 0.48rem;
  letter-spacing: 0.07em;
}

.main-product h3 {
  padding-right: 80px;
}

.bonus-card {
  color: #dfe7ee;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.bonus-card h3 {
  color: var(--white);
}

.bonus-card .benefit-list li::before {
  color: var(--navy-900);
}

.bonus-icon {
  width: 42px;
  margin-top: 30px;
  fill: none;
  stroke: var(--gold-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.perceived-value {
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.bonus-card .perceived-value {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.delivery-note {
  display: block;
  margin-top: 16px;
  color: #acbac5;
  line-height: 1.5;
}

/* Offer */
.offer-section {
  background: var(--paper-light);
}

.offer-section .container {
  display: grid;
  place-items: center;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 22px;
  color: #dfe7ee;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.offer-section .offer-card {
  width: min(100%, 660px);
}

.offer-card::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 480px;
  height: 300px;
  border: 1px solid rgba(219, 192, 131, 0.2);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.offer-topline {
  position: relative;
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card h3 {
  position: relative;
  margin: 14px 0 30px;
  color: var(--white);
  font-size: 2.4rem;
}

.offer-products {
  display: grid;
  gap: 12px;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.5;
}

.offer-products div {
  padding: 14px 18px;
  border: 1px solid rgba(219, 192, 131, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.offer-products strong,
.offer-products small {
  display: block;
}

.offer-products small {
  margin-top: 3px;
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-breakdown {
  margin: 28px 0 0;
  font-size: 0.8rem;
}

.price-breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-breakdown dd {
  margin: 0;
}

.price-breakdown s {
  color: #b9c4cd;
  text-decoration-color: var(--gold-400);
  text-decoration-thickness: 1px;
}

.price-breakdown .total {
  color: var(--white);
  font-weight: 800;
}

.offer-price {
  margin: 26px 0 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(219, 192, 131, 0.35);
  border-bottom: 1px solid rgba(219, 192, 131, 0.35);
}

.offer-price p {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-price > span {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.offer-price > strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--gold-400);
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.9;
}

.offer-price > strong small {
  font-size: 1.2rem;
}

.offer-card .button {
  width: 100%;
}

/* Final sections */
.serious-talk {
  text-align: center;
}

.reading-column {
  position: relative;
}

.reading-column > p:not(.kicker) {
  font-size: 1.05rem;
}

.editorial-mark {
  display: block;
  height: 74px;
  color: var(--gold-500);
  font-family: var(--display);
  font-size: 8rem;
  line-height: 1;
}

.authority {
  padding: 66px 0;
  color: #dfe7ee;
  background: var(--navy-950);
}

.authority-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}

.brand-seal {
  display: flex;
  width: 200px;
  align-items: center;
}

.brand-seal img {
  width: 100%;
  height: auto;
}

.authority-grid > div:last-child {
  max-width: 760px;
}

.faq {
  background: var(--paper);
}

.faq-container {
  max-width: 900px;
}

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

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

.accordion summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--navy-900);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 1px;
  background: var(--navy-900);
  content: "";
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

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

.accordion details p {
  max-width: 730px;
  margin-bottom: 24px;
  color: var(--muted);
}

.final-cta {
  margin-top: 50px;
  text-align: center;
}

.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer {
  padding: 42px 0;
  color: #aebbc6;
  background: #05111d;
}

.footer-content {
  text-align: center;
}

.footer-content small {
  font-size: 0.7rem;
}

.mobile-buy-bar {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 30px;
  }

  .book-stage {
    width: 420px;
    height: 420px;
  }

  .book {
    width: 270px;
  }

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

  .process-grid::before {
    display: none;
  }

  .fit-grid {
    gap: 45px;
  }
}

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

  .hero {
    min-height: auto;
    padding-top: 66px;
  }

  .hero-grid,
  .split-heading,
  .solution-grid,
  .themes-panel,
  .receive-grid,
  .fit-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .split-heading,
  .solution-grid,
  .authority-grid {
    gap: 30px;
  }

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

  .pain-card {
    min-height: 0;
  }

  .pain-card > svg {
    margin-bottom: 28px;
  }

  .solution-mark,
  .brand-seal {
    width: 160px;
    height: 160px;
  }

  .brand-seal {
    height: auto;
  }

  .solution-mark span {
    font-size: 5.8rem;
  }

  .themes-intro {
    padding: 42px;
  }

  .receive-grid {
    max-width: 680px;
    margin: 0 auto;
  }

  .fit-grid {
    max-width: 700px;
    margin: 0 auto;
  }

  .authority-grid {
    text-align: center;
  }

  .brand-seal {
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 0;
    font-size: 15px;
  }

  .container {
    width: min(100% - 32px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.1rem, 9.6vw, 2.6rem);
  }

  h2 {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
  }

  .hero {
    padding: 43px 0 26px;
  }

  .hero::before {
    width: 4px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-copy,
  .hero-lead,
  .split-heading,
  .intro-copy,
  .pain-card,
  .solution,
  .whatsapp-bonus,
  .authority-grid,
  .accordion,
  .footer-content {
    text-align: center;
  }

  .hero-story-image {
    width: 100%;
    height: auto;
    margin: 23px auto 20px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-offer {
    margin-top: 24px;
  }

  .price {
    font-size: 2.8rem;
  }

  .hero-copy > .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .book-stage {
    width: 340px;
    height: 340px;
  }

  .book {
    width: 245px;
  }

  .book-cover-fallback {
    padding: 34px 25px 27px 38px;
  }

  .book-cover-fallback strong {
    font-size: 2.25rem;
  }

  .book-cover-fallback strong b {
    font-size: 4.6rem;
  }

  .format-chip {
    right: 3px;
    bottom: 55px;
  }

  .trust-items {
    min-height: 64px;
  }

  .trust-items span {
    gap: 5px;
    border: 0;
    font-size: 0.56rem;
    letter-spacing: 0.04em;
  }

  .trust-items svg {
    width: 15px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .pain-card,
  .receive-card,
  .offer-card {
    padding: 30px 24px;
  }

  .pain-card > svg {
    margin-right: auto;
    margin-left: auto;
  }

  .card-number {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .solution {
    padding: 72px 0;
  }

  .solution-mark {
    margin: 0 auto;
  }

  .solution blockquote {
    font-size: 1.4rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 8px;
  }

  .process-grid li {
    padding: 0 5px;
  }

  .process-grid strong {
    min-height: 0;
  }

  .whatsapp-bonus {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 24px;
  }

  .whatsapp-icon {
    margin: 0 auto;
  }

  .whatsapp-bonus .benefit-list li {
    padding-left: 0;
  }

  .whatsapp-bonus .benefit-list li::before {
    position: static;
    display: inline-grid;
    margin-right: 7px;
    vertical-align: 1px;
  }

  .mini-cover {
    position: static;
    margin-top: 25px;
  }

  .main-product h3 {
    padding-right: 0;
  }

  .receive-card h3 {
    font-size: 1.8rem;
  }

  .offer-card h3 {
    font-size: 2rem;
  }

  .offer-price > strong {
    font-size: 3.6rem;
  }

  .accordion summary {
    min-height: 70px;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    font-size: 1.16rem;
    line-height: 1.25;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px max(14px, env(safe-area-inset-left)) calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.14);
    color: var(--white);
    background: rgba(7, 24, 40, 0.97);
    box-shadow: 0 -10px 30px rgba(7, 24, 40, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(12px);
  }

  .mobile-buy-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-buy-bar > div {
    display: grid;
    line-height: 1.1;
  }

  .mobile-buy-bar > div span {
    color: #bfcbd5;
    font-size: 0.58rem;
    text-transform: uppercase;
  }

  .mobile-buy-bar > div strong {
    color: var(--gold-400);
    font-family: var(--display);
    font-size: 1.55rem;
  }

  .mobile-buy-bar .button {
    min-height: 46px;
    padding: 0 15px;
    color: var(--navy-950);
    background: var(--gold-400);
    font-size: 0.69rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
