:root {
  --charcoal: #0f0f10;
  --charcoal-soft: #181715;
  --green-deep: #0b3b2e;
  --green-gourmet: #0f4a36;
  --orange: #f97316;
  --orange-burnt: #e85d04;
  --gold: #d9a441;
  --warm-white: #fff9f0;
  --cream: #faf6ef;
  --cream-strong: #efe2ce;
  --muted: #cfc6b7;
  --text: #221f1b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--orange);
  color: var(--charcoal);
  border-radius: var(--radius);
}

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

.narrow {
  width: min(100% - 2rem, 880px);
}

.center {
  text-align: center;
}

.section {
  padding: 4.5rem 0;
  background: var(--cream);
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 164, 65, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--charcoal) 0%, #101510 48%, var(--green-deep) 100%);
  color: var(--warm-white);
}

.section-kicker,
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 800;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 4.75rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 5.8vw, 4.1rem);
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.copy-block {
  display: grid;
  gap: 1rem;
  color: rgba(34, 31, 27, 0.82);
  font-size: 1.03rem;
}

.section-dark .copy-block {
  color: rgba(255, 249, 240, 0.84);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary,
.btn-small {
  background: linear-gradient(135deg, var(--orange), var(--orange-burnt));
  color: #160b04;
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 249, 240, 0.22);
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  min-height: 42px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
}

.microcopy {
  margin-top: 1rem;
  color: rgba(255, 249, 240, 0.72);
  font-size: 0.9rem;
}

.microcopy.dark {
  color: rgba(34, 31, 27, 0.68);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.9);
  border-bottom: 1px solid rgba(255, 249, 240, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 76px;
  height: 58px;
  object-fit: contain;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 249, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--warm-white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  inset: 74px 1rem auto 1rem;
  display: none;
  padding: 1rem;
  background: rgba(15, 15, 16, 0.98);
  border: 1px solid rgba(255, 249, 240, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 0.85rem;
}

.site-nav a:not(.btn) {
  color: rgba(255, 249, 240, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
}

.hero-grid,
.split-grid,
.guarantee-grid,
.stack-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 720px;
  margin-top: 1.25rem;
  color: rgba(255, 249, 240, 0.88);
  font-size: clamp(1.08rem, 3.5vw, 1.35rem);
}

.support {
  margin-top: 1rem;
  color: rgba(255, 249, 240, 0.72);
  font-weight: 600;
}

.hero-highlight,
.quote-box {
  margin-top: 1.4rem;
  padding: 1.1rem;
  border: 1px solid rgba(217, 164, 65, 0.48);
  border-radius: var(--radius);
  background: rgba(217, 164, 65, 0.08);
  color: var(--warm-white);
  font-weight: 800;
}

.hero-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-visual,
.offer-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before,
.offer-visual::before {
  content: "";
  position: absolute;
  width: min(86vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.24), rgba(217, 164, 65, 0.1) 42%, transparent 68%);
  filter: blur(6px);
}

.book-cover {
  position: relative;
  z-index: 1;
  width: min(76vw, 430px);
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 28px rgba(249, 115, 22, 0.16));
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  color: rgba(34, 31, 27, 0.76);
  font-size: 1.05rem;
}

.section-dark .section-heading p:not(.section-kicker) {
  color: rgba(255, 249, 240, 0.74);
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.check-list,
.mini-list,
.trust-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-list li,
.trust-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before,
.mini-list li::before,
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 4px rgba(15, 15, 16, 0.16);
}

.check-list-bright li {
  color: rgba(255, 249, 240, 0.9);
}

.lifestyle-card,
.proof-card {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 74, 54, 0.84), rgba(15, 15, 16, 0.9)),
    repeating-linear-gradient(45deg, rgba(255, 249, 240, 0.08) 0 12px, transparent 12px 24px);
  border: 1px solid rgba(15, 74, 54, 0.22);
  box-shadow: var(--shadow);
}

.optional-photo {
  position: relative;
  background-size: cover;
  background-position: center;
}

.optional-photo.has-image .placeholder-content {
  display: none;
}

.placeholder-content {
  min-height: inherit;
  display: grid;
  align-content: end;
  gap: 0.25rem;
  padding: 1.25rem;
  color: var(--warm-white);
}

.placeholder-content span {
  color: rgba(255, 249, 240, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.placeholder-content strong {
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.belief .narrow {
  display: grid;
  gap: 1.25rem;
}

.proof-grid,
.feature-grid,
.bonus-grid {
  display: grid;
  gap: 1rem;
}

.proof-card {
  min-height: 240px;
}

.statement-panel,
.benefit-panel,
.feature-card,
.bonus-card,
.stack-card,
.offer-card {
  border-radius: var(--radius);
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: var(--shadow);
}

.statement-panel {
  padding: 1.4rem;
  background: rgba(217, 164, 65, 0.11);
}

.statement-panel p {
  color: var(--warm-white);
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
}

.feature-card {
  min-height: 132px;
  padding: 1.15rem;
  background: #fffdfa;
}

.feature-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--warm-white);
  font-weight: 800;
  font-size: 0.8rem;
}

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

.benefit-panel {
  padding: 1.25rem;
  background: rgba(255, 249, 240, 0.06);
}

.accent-panel {
  background: rgba(217, 164, 65, 0.1);
}

.accent-panel h3 {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.65rem;
}

.accent-panel .btn {
  width: 100%;
  margin-top: 1.35rem;
}

.offer {
  background: linear-gradient(180deg, var(--cream), #fffaf2);
}

.offer-card {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(11, 59, 46, 0.08), rgba(249, 115, 22, 0.06)),
    #fffdfa;
}

.offer-card .book-cover {
  width: min(72vw, 360px);
}

.offer-subtitle {
  margin-top: 0.85rem;
  color: rgba(34, 31, 27, 0.76);
  font-size: 1.1rem;
  font-weight: 700;
}

.price-box,
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.3rem 0;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--warm-white);
}

.price-box span,
.price-row span {
  color: rgba(255, 249, 240, 0.72);
  font-weight: 700;
}

.price-box strong,
.price-row strong {
  color: var(--gold);
  font-size: 2rem;
}

.bonus-card {
  padding: 1.25rem;
  background: rgba(255, 249, 240, 0.07);
}

.bonus-card p {
  margin-top: 0.7rem;
  color: rgba(255, 249, 240, 0.74);
}

.gift-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.42);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 800;
}

.value-stack {
  background: #fffaf2;
}

.stack-card {
  padding: 1.25rem;
  background: #fffdfa;
}

.guarantee-copy {
  margin-top: 1rem;
  color: rgba(255, 249, 240, 0.86);
  font-size: 1.08rem;
  font-weight: 700;
}

.trust-list li {
  color: rgba(255, 249, 240, 0.86);
}

.hotmart-mark {
  width: fit-content;
  min-width: 180px;
  min-height: 58px;
  display: grid;
  align-content: center;
  margin-top: 1.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 249, 240, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hotmart-mark.has-image span,
.hotmart-mark.has-image strong {
  visibility: hidden;
}

.hotmart-mark span {
  color: rgba(255, 249, 240, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
}

.hotmart-mark strong {
  color: var(--warm-white);
  font-size: 1.2rem;
}

.guarantee-seal {
  width: min(76vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-self: center;
  text-align: center;
 /** border-radius: 50%;
  border: 2px solid rgba(217, 164, 65, 0.58);
  background:
    radial-gradient(circle, rgba(217, 164, 65, 0.28), rgba(217, 164, 65, 0.08) 54%, rgba(15, 15, 16, 0.8) 55%),
    linear-gradient(135deg, rgba(217, 164, 65, 0.2), rgba(249, 115, 22, 0.08));
  box-shadow: 0 0 50px rgba(217, 164, 65, 0.18);**/
  background-size: cover;
  background-position: center;
}

.guarantee-seal.has-image span,
.guarantee-seal.has-image strong {
  visibility: hidden;
}

.guarantee-seal span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guarantee-seal strong {
  color: var(--warm-white);
  font-family: var(--font-title);
  font-size: clamp(3rem, 14vw, 5rem);
  line-height: 0.95;
}

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

.faq-item {
  border: 1px solid rgba(11, 59, 46, 0.16);
  border-radius: var(--radius);
  background: #fffdfa;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--warm-white);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  color: rgba(34, 31, 27, 0.76);
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1rem;
}

.final-cta p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: rgba(255, 249, 240, 0.78);
  font-size: 1.08rem;
}

.final-cta .btn {
  margin-top: 1.6rem;
}

.site-footer {
  padding: 2rem 0;
  background: #090909;
  color: var(--warm-white);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-inner img {
  width: 64px;
  height: 52px;
  object-fit: contain;
}

.footer-inner p {
  color: rgba(255, 249, 240, 0.66);
  font-size: 0.92rem;
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-ghost {
    min-width: 220px;
  }

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

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

  .bonus-card.wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 6.5rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  }

  .split-grid.reverse {
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  }

  .split-grid.reverse > :first-child {
    order: 2;
  }

  .benefit-layout,
  .offer-card,
  .stack-wrap,
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card,
  .stack-card,
  .benefit-panel {
    padding: 2rem;
  }

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

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

@media (min-width: 1080px) {
  .hero {
    padding: 4rem 0 5rem;
  }

  .book-cover {
    width: min(34vw, 470px);
  }

  .hero-visual {
    transform: translateY(1rem);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
