*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #2f1a1a;
  --bg-deep: #261414;
  --bg-card: #452626;
  --text: #f7f2ee;
  --text-2: #d8c9c2;
  --text-muted: #b09090;
  --gold: #d4af37;
  --gold-h: #e2be4a;
  --border: rgba(212, 175, 55, 0.22);
  --shadow: 0 14px 36px rgba(18, 6, 6, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.8;
  background:
    radial-gradient(900px 380px at 10% -10%, rgba(212, 175, 55, 0.08) 0%, transparent 72%),
    radial-gradient(820px 340px at 90% 8%, rgba(212, 175, 55, 0.06) 0%, transparent 74%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

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

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

.container {
  width: min(1320px, 95vw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 30px;
}

.pre-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

p {
  color: var(--text-2);
}

.muted {
  color: var(--text-muted);
}

.accent {
  color: var(--gold);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep);
  border: 0;
  font-size: 1rem;
  font-weight: 800;
  padding: 17px 34px;
  border-radius: 12px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 28px rgba(18, 6, 6, 0.35);
  text-align: center;
}

.btn:hover {
  background: var(--gold-h);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(18, 6, 6, 0.42);
}

.btn-lg {
  padding: 20px 44px;
  border-radius: 14px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-sub {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.4);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.08);
  color: var(--text-2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--bg-deep);
  text-align: center;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 0.85rem;
}

.topbar.expired {
  background: var(--bg-card);
  color: var(--text-2);
}

.countdown {
  font-weight: 800;
}

.nav {
  position: sticky;
  top: 41px;
  z-index: 90;
  background: rgba(38, 20, 20, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.06);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--gold);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.84rem;
  color: var(--text-2);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.11);
  color: var(--text);
}

.hero {
  padding: 118px 0 84px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-block;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.09);
  color: var(--text-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero-copy p {
  margin-top: 16px;
  max-width: 58ch;
}

.trust-pills {
  margin-top: 18px;
}

.cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.cover-wrap::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.cover-wrap img {
  width: min(360px, 85%);
  transform: rotate(-2deg);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(18, 6, 6, 0.4);
  position: relative;
  z-index: 1;
}

.proof-bar {
  padding: 28px 0;
}

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

.proof-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  color: var(--gold);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 7px;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.pain-item,
.inside-part,
.for-whom-item,
.step,
.feature-item,
.outcome-item {
  padding: 16px;
}

.pain-item {
  font-size: 0.92rem;
  color: var(--text-2);
}

.problem-solution {
  padding: 26px;
}

.quote-box {
  margin: 18px 0 22px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
}

.steps {
  margin-top: 28px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.4rem;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.inside-parts {
  display: grid;
  gap: 14px;
}

.inside-part-num {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.inside-highlight {
  padding: 24px;
  position: sticky;
  top: 120px;
}

.check-list {
  list-style: none;
  margin: 14px 0 18px;
  display: grid;
  gap: 8px;
}

.check-list li {
  color: var(--text-2);
  font-size: 0.93rem;
}

.check-list li::before {
  content: "?";
  color: var(--gold);
  margin-right: 8px;
}

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

.testimonial-card {
  padding: 20px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.for-whom-item::before {
  content: "?";
  color: var(--gold);
  font-weight: 800;
  margin-right: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
}

.pricing-card {
  padding: 28px;
}

.launch-badge {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  padding: 5px 10px;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 8px;
}

.price-new {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
}

.kpi-stack {
  display: grid;
  gap: 12px;
}

.kpi-card {
  padding: 18px;
  text-align: center;
}

.kpi-card .value {
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
}

.guarantee-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 26px;
  text-align: center;
}

.guarantee-emoji {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text);
  border: 0;
  padding: 17px 18px;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-body-inner {
  padding: 0 18px 18px;
  color: var(--text-2);
  font-size: 0.92rem;
}

.final-cta {
  text-align: center;
  padding: 86px 0;
  background:
    radial-gradient(620px 250px at 50% 10%, rgba(212, 175, 55, 0.14) 0%, transparent 70%),
    linear-gradient(180deg, rgba(38, 20, 20, 0.6) 0%, rgba(38, 20, 20, 0.2) 100%);
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.link-card {
  padding: 20px;
  display: block;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 34px;
}

.footer p {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-2);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.center {
  text-align: center;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-14 {
  margin-top: 14px;
}

.final-text {
  max-width: 58ch;
  margin: 14px auto 0;
}

.page-hero {
  padding: 92px 0 54px;
}

.page-hero .container {
  max-width: 980px;
}

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

.feature-item {
  padding: 20px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timeline .card {
  padding: 18px;
  text-align: center;
}

.author-hero {
  padding: 94px 0 60px;
}

.author-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.author-photo-wrap {
  padding: 12px;
}

.author-photo-wrap img {
  width: 100%;
  border-radius: 14px;
}

.author-pills {
  margin-top: 14px;
}

.quote-highlight {
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.08);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split-2,
  .inside-grid,
  .pricing-grid,
  .author-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .proof-item:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .steps,
  .testimonials-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }

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

  .inside-highlight {
    position: static;
  }

  .hero-media {
    order: -1;
  }
}

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

  .hero {
    padding: 80px 0 64px;
    min-height: auto;
  }

  .nav {
    top: 43px;
  }

  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 54px;
    right: 0;
    left: 0;
    background: rgba(38, 20, 20, 0.96);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .steps,
  .testimonials-grid,
  .link-cards,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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