@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/jost-normal.woff2') format('woff2');
}

:root {
  --bg: #11111a;
  --bg-soft: #171a28;
  --bg-card: rgba(22, 25, 38, 0.92);
  --paper: #f5f1ea;
  --paper-card: #ffffff;
  --ink: #f7f3ed;
  --ink-muted: #b9b3c7;
  --text-dark: #212433;
  --text-dark-soft: #6b7388;
  --gold: #d6a84a;
  --gold-soft: #ecd28d;
  --plum: #51326d;
  --plum-soft: #72528d;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(33, 36, 51, 0.08);
  --shadow: 0 26px 70px rgba(6, 7, 13, 0.28);
  --shadow-soft: 0 22px 48px rgba(17, 17, 26, 0.1);
  --radius: 28px;
  --radius-sm: 20px;
  --container: min(1140px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(81, 50, 109, 0.24), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(214, 168, 74, 0.1), transparent 16%),
    linear-gradient(180deg, #0f1018 0%, #141725 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--gold-soft), var(--gold));
  box-shadow: 0 0 16px rgba(214, 168, 74, 0.34);
  transition: width 0.08s linear;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(17, 17, 26, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.topbar__inner,
.footer__grid,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__inner {
  min-height: 5rem;
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #241400;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(214, 168, 74, 0.22);
}

.brand__text {
  display: grid;
  gap: 0.04rem;
}

.brand__name {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__sub {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn--primary {
  color: #231400;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  box-shadow: 0 14px 30px rgba(214, 168, 74, 0.22);
}

.btn--ghost,
.btn--ghost-light {
  border: 1px solid;
}

.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn--ghost-light {
  color: var(--ink);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--compact {
  min-height: 3rem;
  padding-inline: 1.1rem;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.8rem 0 4.8rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(81, 50, 109, 0.32), transparent 26%),
    radial-gradient(circle at 78% 14%, rgba(214, 168, 74, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(17, 17, 26, 0.2) 0%, rgba(17, 17, 26, 0.62) 100%);
  pointer-events: none;
}

.hero__grid,
.split,
.offer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__grid,
.offer {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--plum);
}

.hero__title,
.section__intro h2,
.split h2,
.offer__copy h2,
.bundle-item h2,
.included-card h3,
.reason-card h3,
.step-card h3,
.pricing-card__price {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero__title {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.1rem);
  font-weight: 900;
}

.hero__title span {
  display: block;
  color: var(--gold-soft);
}

.hero__lead,
.section__text,
.included-card__description,
.reason-card p,
.step-card p,
.quote-panel__lead,
.footer__text,
.price-box__note,
.pricing-card__note {
  line-height: 1.75;
}

.hero__lead {
  max-width: 38rem;
  margin: 1.15rem 0 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 168, 74, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.price-box {
  margin-top: 1.7rem;
  max-width: 29rem;
}

.price-box__old {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  text-decoration: line-through;
}

.price-box__current {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
}

.price-box__current strong {
  color: var(--gold-soft);
}

.price-box__note {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
}

.hero__actions,
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__actions {
  margin-top: 1.5rem;
}

.hero__trust,
.list-check,
.included-card__list,
.faq {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__trust,
.list-check {
  display: grid;
  gap: 0.78rem 1rem;
  margin-top: 1.7rem;
}

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

.hero__trust li,
.list-check li,
.included-card__list li {
  position: relative;
  padding-left: 1.1rem;
}

.hero__trust li::before,
.list-check li::before,
.included-card__list li::before {
  content: '';
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 10px rgba(214, 168, 74, 0.32);
}

.bundle-card,
.included-card,
.reason-card,
.step-card,
.proof-card,
.quote-panel,
.pricing-card,
.faq__item {
  border-radius: var(--radius);
}

.bundle-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(24, 26, 40, 0.98) 0%, rgba(17, 17, 26, 1) 100%);
  border: 1px solid rgba(214, 168, 74, 0.16);
  box-shadow: var(--shadow);
}

.bundle-card__eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bundle-card__items {
  display: grid;
  gap: 1rem;
}

.bundle-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bundle-item__index {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle-item h2 {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
}

.bundle-item__pages {
  flex-shrink: 0;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 168, 74, 0.12);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.bundle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bundle-card__footer strong {
  display: block;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 900;
}

.bundle-card__footer span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.section {
  padding: 5.2rem 0;
}

.section--paper,
.section--proof,
.section--offer {
  background: var(--paper);
  color: var(--text-dark);
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(81, 50, 109, 0.12), transparent 22%),
    linear-gradient(180deg, #11131f 0%, #171a28 100%);
}

.section__intro {
  margin-bottom: 2rem;
}

.section__intro--narrow {
  max-width: 42rem;
}

.section__intro h2,
.split h2,
.offer__copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section__intro--dark h2 {
  color: var(--ink);
}

.section__text {
  margin: 1rem 0 0;
  color: var(--text-dark-soft);
  font-size: 1.04rem;
}

.included-grid,
.reasons-grid,
.steps-list,
.proof-grid,
.faq {
  display: grid;
  gap: 1.2rem;
}

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

.included-card {
  padding: 1.45rem;
  background: var(--paper-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.included-card__index {
  margin: 0;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
}

.included-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.included-card__header span {
  flex-shrink: 0;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(214, 168, 74, 0.12);
  color: #7a5c16;
  font-size: 0.75rem;
  font-weight: 800;
}

.included-card__description {
  margin: 0.9rem 0 0;
  color: var(--text-dark-soft);
}

.included-card__list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--text-dark);
}

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

.reason-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reason-card h3 {
  color: var(--ink);
  font-size: 1.22rem;
}

.reason-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--paper-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.step-card__number {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #221400;
  font-size: 0.95rem;
  font-weight: 900;
}

.step-card h3 {
  color: var(--text-dark);
  font-size: 1.18rem;
}

.step-card p {
  margin: 0.45rem 0 0;
  color: var(--text-dark-soft);
}

.proof-card,
.quote-panel {
  padding: 1.5rem;
  background: var(--paper-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.proof-card strong {
  display: block;
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-dark-soft);
  font-size: 0.95rem;
}

.quote-panel {
  margin-top: 1.2rem;
}

.quote-panel__lead {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.06rem;
}

.quote-panel__meta {
  margin: 0.85rem 0 0;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 1.2rem 1.3rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq__question::after {
  content: '+';
  float: right;
  color: var(--gold-soft);
  font-size: 1.3rem;
  line-height: 1;
}

.faq__question[aria-expanded='true']::after {
  content: '−';
}

.faq__answer {
  display: none;
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-muted);
}

.faq__item.is-open .faq__answer {
  display: block;
}

.pricing-card {
  padding: 1.6rem;
  background: linear-gradient(145deg, rgba(23, 26, 40, 0.98) 0%, rgba(17, 17, 26, 1) 100%);
  border: 1px solid rgba(214, 168, 74, 0.18);
  box-shadow: var(--shadow);
}

.pricing-card__label {
  display: inline-flex;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 168, 74, 0.12);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card__price {
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
}

.pricing-card__price span {
  margin-right: 0.18rem;
  color: var(--gold-soft);
  font-size: 0.38em;
  font-weight: 600;
  vertical-align: top;
}

.pricing-card__note {
  margin: 0.75rem 0 1.15rem;
  color: var(--ink-muted);
}

.footer {
  padding: 2rem 0 5.8rem;
  background: #0f1018;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand--footer .brand__name {
  font-size: 0.94rem;
}

.brand--footer .brand__sub {
  font-size: 0.76rem;
}

.footer__brand {
  max-width: 34rem;
}

.footer__text {
  margin: 1rem 0 0;
  color: var(--ink-muted);
}

.footer__bottom {
  flex-wrap: wrap;
  padding-top: 1.2rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 40;
  transform: translateX(-50%) translateY(140px);
  display: none;
  min-width: min(92vw, 28rem);
  justify-content: center;
  align-items: center;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #221400;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 40px rgba(214, 168, 74, 0.26);
  transition: transform 220ms ease;
}

.mobile-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  .hero__grid,
  .split,
  .offer,
  .included-grid,
  .reasons-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    order: 1;
  }

  .hero__summary {
    order: 2;
  }
}

@media (max-width: 860px) {
  .topbar__inner,
  .footer__grid,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__inner {
    padding: 0.9rem 0;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 6rem;
  }

  .hero__trust,
  .bundle-card__footer,
  .included-card__header {
    grid-template-columns: 1fr;
  }

  .bundle-card__footer,
  .included-card__header,
  .bundle-item,
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 4.25rem 0;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .footer {
    padding-bottom: 6.8rem;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: 2.55rem;
  }

  .bundle-card,
  .included-card,
  .reason-card,
  .step-card,
  .proof-card,
  .quote-panel,
  .pricing-card {
    padding: 1.15rem;
  }

  .step-card {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
