:root {
  --bg: #0d0906;
  --bg-alt: #17110a;
  --card: #1e150c;
  --card-border: #35281a;
  --gold: #c9a35a;
  --gold-light: #e8caa0;
  --cream: #f3ead9;
  --muted: #b3a390;
  --muted-dark: #7d7060;
  --danger-strike: #7d7060;
  --radius: 4px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 760px; }

.center { text-align: center; }

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 20px;
}

h1 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--gold-light);
}

h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; color: var(--gold-light); }

p { margin: 0 0 16px; color: var(--cream); }

.lead { font-size: 1.1rem; color: var(--muted); }

a { color: inherit; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
}

/* Topbar */
.topbar {
  background: var(--gold);
  color: #1a1206;
  text-align: center;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.topbar span { font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 9, 6, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--card-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
}
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #dbb46e, var(--gold));
  color: #1a1206;
  box-shadow: 0 8px 24px rgba(201, 163, 90, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(201, 163, 90, 0.35); }
.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.btn-block { display: block; text-align: center; width: 100%; }

/* Hero */
.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 46ch;
}
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin: 24px 0 32px;
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust-row.center { justify-content: center; }
.trust-row li { position: relative; padding-left: 16px; }
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-visual { display: flex; justify-content: center; }
.cover-img {
  max-width: 340px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px var(--card-border);
  transform: rotate(1.5deg);
}

/* Sections */
.section { padding: 72px 0; }
.section-dark { background: var(--bg-alt); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }

/* Mirror */
.mirror-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.mirror-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
}
.mirror-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.mirror-close { text-align: center; font-size: 1.05rem; color: var(--cream); max-width: 640px; margin: 0 auto; }

/* Chapters */
.chapters {
  display: grid;
  gap: 2px;
  margin-top: 40px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.chapter {
  background: var(--bg-alt);
  padding: 28px 28px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.chapter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.chapter h3 { margin-bottom: 8px; }
.chapter p { color: var(--muted); margin: 0; }

/* Challenge quote */
.challenge-quote {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 28px;
  text-align: left;
}
.challenge-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.challenge-quote span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.03em; }

/* Author */
.author p { color: var(--muted); }

/* Offer stack */
.stack { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.stack-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.stack-main { border-color: var(--gold); background: linear-gradient(180deg, #241a0f, var(--card)); }
.stack-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
}
.stack-body h3 { margin-bottom: 6px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stack-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: #1a1206;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 700;
}
.stack-body p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.stack-total {
  margin-top: 36px;
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.stack-total-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  padding: 8px 0;
}
.stack-today {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stack-total .btn { margin-top: 20px; }

/* Guarantee */
.guarantee-badge {
  width: 90px; height: 90px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  margin: 0 auto 24px;
}
.guarantee p { color: var(--muted); }

/* FAQ */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--cream);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 14px;
  color: var(--gold);
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* Final CTA */
.final-cta h2 { margin-bottom: 32px; }

/* Footer */
.site-footer { padding: 48px 0; }
.footer-inner { text-align: center; }
.footer-inner .brand-name {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.disclaimer, .legal { color: var(--muted-dark); font-size: 0.8rem; max-width: 620px; margin: 0 auto 8px; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .mirror-grid { grid-template-columns: 1fr; }
  .stack-item { grid-template-columns: 40px 1fr; }
}
