:root {
  --navy: #06182a;
  --navy-soft: #0d2942;
  --ink: #132331;
  --ivory: #fbf7ef;
  --cream: #f1e8d8;
  --gold: #cf9b3d;
  --gold-light: #edcf8b;
  --line: rgba(207, 155, 61, 0.28);
  --muted: #68747b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

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

.site-header {
  min-height: 86px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid rgba(10, 35, 55, 0.09);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: 0.34em;
}

nav {
  display: flex;
  gap: 38px;
  font-size: 0.88rem;
}

nav a,
footer a {
  transition: color 0.2s ease;
}

nav a:hover,
footer a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  border: 1px solid var(--gold);
  color: #9a6718;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 0.85rem;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 51% 49%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.9), transparent 43%),
    linear-gradient(90deg, var(--ivory) 0 49%, var(--navy) 49% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, var(--gold) 1px, transparent 1px),
    linear-gradient(150deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 44%, transparent);
}

.hero-glow {
  position: absolute;
  width: 34vw;
  height: 34vw;
  right: 8vw;
  top: 12%;
  border-radius: 50%;
  background: rgba(207, 155, 61, 0.18);
  filter: blur(70px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 9vh 6vw 6vh 7.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: #a46e1c;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 27px;
  font-size: clamp(3.6rem, 6.2vw, 7.1rem);
  line-height: 0.83;
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
  color: #af751f;
  font-style: italic;
  font-size: 0.78em;
  margin-top: 18px;
}

.hero-hook {
  max-width: 660px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 17px 25px;
  border-radius: 9px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  color: #fff;
  background: linear-gradient(135deg, #b57920, #dba94c);
  box-shadow: 0 13px 34px rgba(156, 99, 20, 0.18);
}

.button-gold:hover {
  box-shadow: 0 15px 38px rgba(156, 99, 20, 0.32);
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  white-space: nowrap;
}

.hero-signals {
  margin-top: 45px;
  display: flex;
  gap: 0;
  color: #5a676e;
  font-size: 0.75rem;
}

.hero-signals span {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.hero-signals span:first-child {
  padding-left: 0;
  border-left: 0;
}

.cover-stage {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(67, 119, 163, 0.38), transparent 38%),
    radial-gradient(circle at 50% 60%, rgba(207, 155, 61, 0.13), transparent 55%);
}

.cover-stage::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(207, 155, 61, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 155, 61, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

.book-cover {
  width: min(48%, 390px);
  max-height: 73vh;
  object-fit: contain;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.48));
  transform: perspective(1100px) rotateY(-6deg) rotateX(1deg);
  animation: float 7s ease-in-out infinite;
}

.arch {
  position: absolute;
  border: 1px solid rgba(237, 207, 139, 0.45);
  border-radius: 50% 50% 16% 16%;
  z-index: 1;
}

.arch-one {
  width: 70%;
  height: 82%;
  top: 10%;
}

.arch-two {
  width: 62%;
  height: 75%;
  top: 14%;
  box-shadow: inset 0 0 70px rgba(207, 155, 61, 0.09);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(117, 171, 211, 0.24);
  border-radius: 50%;
  z-index: 0;
}

.orbit-one {
  width: 78%;
  aspect-ratio: 1;
  transform: rotate(16deg) scaleY(0.47);
}

.orbit-two {
  width: 66%;
  aspect-ratio: 1;
  transform: rotate(-25deg) scaleY(0.62);
}

.cover-note {
  position: absolute;
  bottom: 4%;
  z-index: 5;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.section {
  padding: 110px 8vw;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
}

h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.intro-copy {
  max-width: 700px;
  color: #4f5e66;
  font-size: 1.05rem;
  line-height: 1.85;
}

blockquote {
  margin: 38px 0 0;
  padding: 5px 0 5px 28px;
  border-left: 2px solid var(--gold);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
}

.story-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  min-height: 350px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(19, 35, 49, 0.11);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 20px;
}

.story-card p {
  margin-bottom: auto;
  color: #a46e1c;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.story-card span {
  color: var(--muted);
  line-height: 1.7;
}

.feature-card {
  color: white;
  background:
    linear-gradient(rgba(4, 23, 40, 0.75), rgba(4, 23, 40, 0.94)),
    radial-gradient(circle at 70% 25%, #477fa4, transparent 36%),
    var(--navy);
}

.feature-card span {
  color: #cbd4da;
}

.characters {
  color: white;
  background: var(--navy);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}

.characters-heading > p:last-child {
  max-width: 560px;
  color: #aebbc5;
  line-height: 1.8;
}

.character-list article {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(237, 207, 139, 0.22);
}

.character-list article > span {
  color: var(--gold);
  font-size: 0.75rem;
}

.character-list h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.character-list p {
  margin-bottom: 0;
  color: #aebbc5;
  line-height: 1.65;
}

.excerpt {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
  background: #e9dfce;
}

.excerpt-kicker span {
  color: #a46e1c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.excerpt-kicker p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.excerpt-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.6;
}

.excerpt-question {
  margin-top: 32px;
  color: #617079;
}

.excerpt-answer {
  color: #9f6819;
  font-size: 1.25em;
  font-style: italic;
}

.light-link {
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 0.85rem;
}

.reader-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10vw;
}

.reader-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reader-grid li {
  padding: 18px 0 18px 38px;
  position: relative;
  border-bottom: 1px solid rgba(19, 35, 49, 0.11);
  color: #53616a;
  line-height: 1.65;
}

.reader-grid li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.author {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 9vw;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, #07192b, #0c2b45);
}

.author-mark {
  width: min(300px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 207, 139, 0.36);
  border-radius: 50% 50% 18% 18%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 7rem;
  background: radial-gradient(circle, rgba(207, 155, 61, 0.17), transparent 68%);
}

.author h2 {
  margin-bottom: 20px;
}

.author p:last-child {
  max-width: 700px;
  color: #b9c5cd;
  font-size: 1.06rem;
  line-height: 1.85;
}

.gift {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 9vw;
  background:
    radial-gradient(circle at 16% 45%, rgba(207, 155, 61, 0.18), transparent 34%),
    #f3eadb;
}

.gift-cover-wrap {
  position: relative;
  justify-self: center;
}

.gift-cover {
  display: block;
  width: min(100%, 390px);
  max-height: 670px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 55px rgba(49, 35, 17, 0.28);
  transform: perspective(1000px) rotateY(5deg);
}

.gift-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: -28px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(4, 19, 33, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-copy {
  max-width: 720px;
}

.gift-copy h2 {
  margin-bottom: 28px;
}

.gift-copy > p:not(.section-label) {
  color: #53616a;
  font-size: 1.08rem;
  line-height: 1.8;
}

.gift-copy ul {
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.gift-copy li {
  padding: 12px 0 12px 34px;
  position: relative;
  border-bottom: 1px solid rgba(19, 35, 49, 0.1);
  color: #53616a;
  line-height: 1.6;
}

.gift-copy li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.gift-copy small {
  display: block;
  margin-top: 17px;
  color: #78838a;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--ivory);
}

.final-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(30deg, var(--gold) 1px, transparent 1px),
    linear-gradient(150deg, var(--gold) 1px, transparent 1px);
  background-size: 75px 44px;
  mask-image: radial-gradient(circle, #000, transparent 69%);
}

.final-cta > *:not(.final-pattern) {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 22px;
}

.final-cta > p:not(.section-label) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta small {
  display: block;
  margin-top: 16px;
  color: #7e898f;
}

footer {
  min-height: 100px;
  padding: 30px 6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #9dabb5;
  background: #041321;
  font-size: 0.8rem;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1100px) rotateY(-6deg) rotateX(1deg)
      translateY(0);
  }
  50% {
    transform: perspective(1100px) rotateY(-4deg) rotateX(1deg)
      translateY(-10px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background: var(--ivory);
  }

  .hero-copy {
    padding: 80px 7vw 55px;
  }

  .cover-stage {
    min-height: 680px;
    background: var(--navy);
  }

  .intro,
  .characters,
  .excerpt,
  .reader-grid,
  .author,
  .gift {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .story-card {
    min-height: 270px;
  }

  .author-mark {
    width: 220px;
  }

  .gift-cover {
    width: min(58vw, 360px);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
    padding-inline: 22px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: 3.9rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    text-align: center;
  }

  .hero-signals {
    flex-wrap: wrap;
    gap: 12px 0;
  }

  .cover-stage {
    min-height: 590px;
  }

  .book-cover {
    width: 58%;
  }

  .gift-badge {
    left: -12px;
    font-size: 0.62rem;
  }

  .section {
    padding: 78px 7vw;
  }

  .story-card {
    padding: 28px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer > a:last-child {
    justify-self: center;
  }
}

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

  .book-cover {
    animation: none;
  }
}

/* Halaman jualan */
.sales-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--ivory);
}

.sales-header {
  min-height: 82px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(207, 155, 61, 0.18);
  background: #071a2c;
  color: #f7f0e3;
}

.sales-back {
  color: #c4ced5;
  font-size: 0.84rem;
}

.sales-back:hover {
  color: var(--gold-light);
}

.sales-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 35%, rgba(255, 255, 255, 0.9), transparent 40%),
    var(--ivory);
}

.sales-copy {
  padding: 9vh 5vw 8vh 7.5vw;
  align-self: center;
}

.sales-copy h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 5.35vw, 6.7rem);
  line-height: 0.93;
}

.sales-copy h1 span {
  margin-top: 16px;
  color: #a96f1d;
  font-size: 0.63em;
  line-height: 1.04;
}

.sales-lead {
  max-width: 650px;
  color: #58666f;
  font-size: 1.05rem;
  line-height: 1.8;
}

.launch-offer {
  width: fit-content;
  margin: 34px 0 28px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(207, 155, 61, 0.38);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 45px rgba(61, 43, 20, 0.08);
}

.launch-offer > div {
  padding-right: 25px;
  border-right: 1px solid rgba(19, 35, 49, 0.12);
}

.launch-offer > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.offer-label,
.regular-price span {
  display: block;
  margin-bottom: 4px;
  color: #717d84;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-offer strong {
  color: #9d6619;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.launch-offer .future-price {
  display: block;
  color: #7c878d;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.offer-note {
  max-width: 150px;
  color: #59666e;
  font-size: 0.78rem;
  line-height: 1.45;
}

.sales-main-button {
  min-width: min(100%, 370px);
}

.sales-fineprint {
  max-width: 480px;
  margin: 14px 0 0;
  color: #7a858b;
  font-size: 0.76rem;
  line-height: 1.55;
}

.sales-cover-stage {
  min-height: 720px;
  padding: 7vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  color: white;
  background:
    linear-gradient(rgba(5, 22, 38, 0.22), rgba(5, 22, 38, 0.8)),
    radial-gradient(circle at 50% 30%, #28577a, transparent 43%),
    #06182a;
}

.sales-cover-stage::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border: 1px solid rgba(237, 207, 139, 0.38);
  border-radius: 50% 50% 13% 13%;
  box-shadow: inset 0 0 90px rgba(207, 155, 61, 0.08);
}

.sales-halo {
  width: 55%;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50%;
  background: rgba(207, 155, 61, 0.2);
  filter: blur(60px);
}

.sales-cover-stage img {
  width: min(50%, 360px);
  max-height: 68vh;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.52));
  transform: perspective(1100px) rotateY(-7deg);
}

.sales-cover-kicker {
  position: absolute;
  top: 6%;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mystery-teaser {
  max-width: 280px;
  padding: 16px 20px;
  position: absolute;
  right: 6%;
  bottom: 7%;
  z-index: 3;
  border: 1px solid rgba(237, 207, 139, 0.4);
  border-radius: 13px;
  background: rgba(5, 23, 40, 0.82);
  backdrop-filter: blur(16px);
}

.mystery-teaser span {
  display: block;
  margin-bottom: 5px;
  color: #9eafba;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mystery-teaser strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.sales-promise {
  padding: 22px 6vw;
  display: flex;
  justify-content: center;
  gap: 0;
  color: #c1cbd2;
  background: #041321;
  font-size: 0.76rem;
}

.sales-promise span {
  padding: 0 30px;
  border-left: 1px solid rgba(237, 207, 139, 0.24);
}

.sales-promise span:first-child {
  border-left: 0;
}

.sales-section {
  padding: 110px 8vw;
}

.sales-story {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 10vw;
}

.sales-story-copy {
  max-width: 720px;
  color: #52616a;
  font-size: 1.05rem;
  line-height: 1.85;
}

.sales-value {
  color: white;
  background:
    radial-gradient(circle at 14% 22%, rgba(55, 108, 148, 0.28), transparent 28%),
    #06182a;
}

.sales-value-intro {
  max-width: 900px;
  margin-bottom: 60px;
}

.sales-value-intro > p:last-child {
  max-width: 650px;
  color: #adbbc4;
  line-height: 1.8;
}

.sales-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(237, 207, 139, 0.25);
  border-bottom: 1px solid rgba(237, 207, 139, 0.25);
}

.sales-value-grid article {
  min-height: 260px;
  padding: 32px 30px;
  border-left: 1px solid rgba(237, 207, 139, 0.18);
}

.sales-value-grid article:first-child {
  border-left: 0;
}

.sales-value-grid article > span {
  color: var(--gold);
  font-size: 0.72rem;
}

.sales-value-grid h3 {
  margin: 48px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 400;
}

.sales-value-grid p {
  margin-bottom: 0;
  color: #aebbc5;
  line-height: 1.68;
}

.sales-excerpt {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
  background: #eae0cf;
}

.sales-excerpt-meta {
  display: flex;
  flex-direction: column;
  color: #68757d;
  line-height: 1.65;
}

.sales-excerpt-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.6;
}

.sales-excerpt-question {
  margin-top: 30px;
  color: #617078;
}

.sales-excerpt-text strong {
  color: #9f6819;
  font-size: 1.25em;
  font-style: italic;
  font-weight: 400;
}

.sales-reader {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10vw;
}

.sales-reader ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sales-reader li {
  padding: 20px 0 20px 38px;
  position: relative;
  border-bottom: 1px solid rgba(19, 35, 49, 0.12);
  color: #53616a;
  line-height: 1.65;
}

.sales-reader li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.sales-bonus {
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(207, 155, 61, 0.17), transparent 27%),
    linear-gradient(135deg, #07192b, #0c2b45);
}

.sales-bonus-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 8vw;
}

.sales-bonus-heading h2 {
  margin-bottom: 0;
}

.sales-bonus-heading > p {
  margin-bottom: 7px;
  color: #b8c4cc;
  font-size: 1.03rem;
  line-height: 1.8;
}

.bonus-book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bonus-book-card {
  min-height: 390px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(135px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  border: 1px solid rgba(237, 207, 139, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(207, 155, 61, 0.11), transparent 28%),
    rgba(255, 255, 255, 0.035);
}

.bonus-book-cover {
  width: 100%;
  max-width: 180px;
  max-height: 310px;
  justify-self: center;
  object-fit: contain;
  border-radius: 7px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
  transform: perspective(900px) rotateY(4deg);
}

.bonus-book-copy {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bonus-book-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bonus-book-card h3 {
  margin: 28px 0 17px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 1.85vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.bonus-book-card p {
  margin-bottom: 0;
  color: #b8c4cc;
  line-height: 1.72;
}

.bonus-book-card small {
  margin-top: auto;
  padding-top: 25px;
  color: #8798a3;
}

.bonus-book-featured {
  min-height: 390px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.55fr);
  align-items: center;
  gap: 55px;
  background:
    radial-gradient(circle at 18% 50%, rgba(207, 155, 61, 0.17), transparent 28%),
    rgba(255, 255, 255, 0.045);
}

.bonus-book-featured .bonus-book-cover {
  width: min(100%, 235px);
  max-height: 330px;
  transform: perspective(900px) rotateY(5deg);
}

.bonus-book-featured h3 {
  margin-top: 38px;
}

.bonus-assurance {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bonus-assurance span {
  padding: 11px 15px;
  border: 1px solid rgba(237, 207, 139, 0.28);
  border-radius: 999px;
  color: #d6dfe4;
  font-size: 0.78rem;
}

.sales-offer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 10vw;
}

.sales-offer-copy > p:not(.section-label) {
  max-width: 650px;
  color: #5a676f;
  font-size: 1.05rem;
  line-height: 1.8;
}

.sales-offer-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.sales-offer-copy li {
  padding: 13px 0 13px 34px;
  position: relative;
  color: #53616a;
}

.sales-offer-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a76f1d;
  font-weight: 700;
}

.sales-price-card {
  padding: 44px;
  border: 1px solid rgba(207, 155, 61, 0.36);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 10%, rgba(207, 155, 61, 0.16), transparent 34%),
    white;
  box-shadow: 0 25px 70px rgba(58, 40, 17, 0.12);
}

.price-card-label {
  color: #9e681a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-row {
  margin: 15px 0 5px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.price-row strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.price-future {
  max-width: 130px;
  color: #879198;
  font-size: 0.9rem;
  line-height: 1.45;
}

.sales-price-card > p {
  color: #727e85;
}

.sales-price-card .button {
  width: 100%;
  margin-top: 14px;
}

.sales-price-card small {
  display: block;
  margin-top: 15px;
  color: #7a858b;
  line-height: 1.55;
  text-align: center;
}

.sales-faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
  background: #f1e8d8;
}

.faq-list {
  border-top: 1px solid rgba(19, 35, 49, 0.14);
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid rgba(19, 35, 49, 0.14);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.faq-list details p {
  max-width: 700px;
  margin: 17px 0 0;
  color: #5e6b73;
  line-height: 1.7;
}

.sales-final {
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  background: #06182a;
}

.sales-final-glow {
  width: 55vw;
  height: 55vw;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(237, 207, 139, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 155, 61, 0.14), transparent 60%);
  transform: translate(-50%, -50%);
}

.sales-final > *:not(.sales-final-glow) {
  position: relative;
  z-index: 1;
}

.sales-final h2 {
  max-width: 850px;
  margin: 0 auto 25px;
}

.sales-final > p:not(.section-label) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #b6c2ca;
  line-height: 1.8;
}

.sales-final small {
  display: block;
  margin-top: 18px;
  color: #91a1ac;
}

@media (max-width: 980px) {
  .sales-hero {
    grid-template-columns: 1fr;
  }

  .sales-cover-stage {
    min-height: 680px;
  }

  .sales-story,
  .sales-excerpt,
  .sales-reader,
  .sales-offer,
  .sales-faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .sales-bonus-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-book-grid {
    grid-template-columns: 1fr;
  }

  .bonus-book-featured {
    grid-column: auto;
  }

  .sales-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sales-value-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(237, 207, 139, 0.18);
  }

  .sales-value-grid article:nth-child(4) {
    border-top: 1px solid rgba(237, 207, 139, 0.18);
  }
}

@media (max-width: 620px) {
  .sales-header {
    min-height: 72px;
    padding-inline: 22px;
    grid-template-columns: 1fr auto;
  }

  .sales-back {
    display: none;
  }

  .sales-copy {
    padding: 70px 7vw 55px;
  }

  .sales-copy h1 {
    font-size: 3.55rem;
  }

  .launch-offer {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 17px;
  }

  .launch-offer > div {
    padding-right: 17px;
  }

  .offer-note {
    max-width: 100%;
    padding-top: 2px;
    border-right: 0 !important;
  }

  .sales-cover-stage {
    min-height: 600px;
  }

  .sales-cover-stage img {
    width: 60%;
  }

  .mystery-teaser {
    right: 5%;
    bottom: 5%;
    max-width: 230px;
  }

  .sales-promise {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .sales-promise span {
    padding: 0;
    border-left: 0;
  }

  .sales-section {
    padding: 78px 7vw;
  }

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

  .sales-value-grid article {
    min-height: auto;
    border-top: 1px solid rgba(237, 207, 139, 0.18);
    border-left: 0;
  }

  .sales-value-grid article:first-child {
    border-top: 0;
  }

  .sales-value-grid h3 {
    margin-top: 25px;
  }

  .bonus-book-grid {
    grid-template-columns: 1fr;
  }

  .bonus-book-card {
    min-height: auto;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bonus-book-card h3 {
    margin-top: 30px;
  }

  .bonus-book-cover,
  .bonus-book-featured .bonus-book-cover {
    width: min(62vw, 230px);
    max-width: 230px;
    max-height: 340px;
  }

  .bonus-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .sales-price-card {
    padding: 32px 24px;
  }

  .price-row strong {
    font-size: 4.15rem;
  }
}
