@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #f4efe5;
  --muted: #b9b2a6;
  --night: #0b1018;
  --night-soft: #121b26;
  --wine: #682f45;
  --gold: #d7b46a;
  --gold-light: #f1d99b;
  --line: rgba(215, 180, 106, .24);
  --serif: "DM Sans", Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --radius: 1.5rem;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(104, 47, 69, .35), transparent 30rem),
    radial-gradient(circle at 90% 35%, rgba(51, 74, 91, .25), transparent 36rem),
    var(--night);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='6' cy='12' r='.7' fill='%23f1d99b'/%3E%3Ccircle cx='83' cy='33' r='.45' fill='%23f1d99b'/%3E%3Ccircle cx='39' cy='91' r='.55' fill='%23f1d99b'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 20; padding: .7rem 1rem; background: var(--ink); color: var(--night); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.eyebrow { margin: 0 0 1rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 700; line-height: 1.12; text-wrap: balance; }
h1 { margin-bottom: 1.25rem; font-size: clamp(2.75rem, 12vw, 6.2rem); letter-spacing: -.04em; }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 7vw, 3.8rem); letter-spacing: -.03em; }
h3 { font-size: 1.5rem; line-height: 1.2; }
p { margin-top: 0; }
.lead { max-width: 44rem; color: #eee9df; font-size: clamp(1.05rem, 3vw, 1.25rem); line-height: 1.7; }
.site-header { position: relative; z-index: 10; border-bottom: 1px solid var(--line); }
.nav { min-height: 4.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { text-decoration: none; font-family: var(--serif); font-size: 1.45rem; letter-spacing: .08em; }
.brand span { color: var(--gold); }
.nav-links { display: none; align-items: center; gap: 1.4rem; }
.nav-links a { color: var(--muted); font-size: .9rem; text-decoration: none; }
.languages { display: flex; gap: .25rem; padding: .25rem; border: 1px solid var(--line); border-radius: 999px; }
.languages a { min-width: 2.4rem; padding: .35rem .55rem; border-radius: 999px; color: var(--muted); font-size: .72rem; font-weight: 700; text-align: center; text-decoration: none; }
.languages a[aria-current="page"] { color: var(--night); background: var(--gold-light); }
.hero { position: relative; display: flex; flex-direction: column; align-items: center; padding: 2rem 0 3rem; text-align: center; }
.hero::after { content: "78"; position: absolute; right: -1.5rem; bottom: -4rem; z-index: -1; color: rgba(215, 180, 106, .055); font-family: var(--serif); font-size: min(70vw, 38rem); line-height: 1; }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hero h1 { font-size: clamp(2rem, 8vw, 3.8rem); margin-bottom: 0; }
.hero .lead { max-width: 36rem; font-size: clamp(.95rem, 2.5vw, 1.1rem); }
.hero-video { position: relative; width: 100%; max-width: 28rem; aspect-ratio: 9/16; border: 1px solid var(--line); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow); }
.hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-cta { margin-top: .5rem; }
.button { display: inline-flex; min-height: 3.4rem; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid var(--gold); border-radius: 999px; color: var(--night); background: var(--gold-light); font-size: .9rem; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #fff0bd; }
.button-secondary { color: var(--ink); background: transparent; }
.button-secondary:hover { background: rgba(215, 180, 106, .1); }
.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: .7rem .5rem; text-align: center; }
.trust-item strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.trust-item span { color: var(--muted); font-size: .7rem; }
.section { padding: 5.5rem 0; }
.section-compact { padding: 3rem 0; }
.section-compact .section-head { margin-bottom: 1.5rem; }
.section-compact h2 { font-size: clamp(1.5rem, 5vw, 2.4rem); margin-bottom: .5rem; }
.steps-row { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: center; }
.steps-row .step { color: var(--muted); font-size: .9rem; }
.steps-row .step strong { color: var(--gold-light); margin-right: .3rem; }
.section-head { max-width: 47rem; margin-bottom: 2.5rem; }
.mechanism-grid, .feature-grid, .bonus-grid { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
.card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); }
.card-compact { padding: 1rem; }
.card-compact .card-number { margin-bottom: 1.2rem; }
.card-compact h3 { font-size: 1.1rem; }
.card-compact p { font-size: .85rem; color: #b8aa9c; }
.card-number { display: inline-grid; width: 2.2rem; height: 2.2rem; place-items: center; margin-bottom: 2.5rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); font-family: var(--serif); }
.card p, .bonus-card p { margin-bottom: 0; color: #d2cbc0; font-size: 1rem; line-height: 1.7; }
.editorial { background: var(--ink); color: #151923; }
.editorial .eyebrow { color: var(--wine); }
.editorial .lead, .editorial .card p { color: #55545a; }
.editorial .card { border-color: rgba(18,27,38,.15); background: rgba(255,255,255,.45); }
.editorial .card-number { border-color: var(--wine); color: var(--wine); }
.guide-hero-img { margin: 0 0 2rem; text-align: center; }
.guide-hero-img img { max-width: 20rem; margin: 0 auto; border-radius: 1rem; border: 1px solid rgba(18,27,38,.15); }
.guide-hero-img figcaption { margin-top: .5rem; color: #55545a; font-size: .8rem; }
.bonus-card { position: relative; min-height: 18rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--night-soft); }
.bonus-card::after { content: attr(data-number); position: absolute; right: -.2rem; bottom: -3.8rem; color: rgba(215,180,106,.08); font-family: var(--serif); font-size: 11rem; }
.bonus-card h3, .bonus-card p { position: relative; z-index: 1; }
.bonus-card h3 { margin-top: 5rem; }
.deliverables-showcase { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.deliverables-showcase figure { margin: 0; text-align: center; }
.deliverables-showcase img { width: 100%; border-radius: 1rem; border: 1px solid var(--line); }
.deliverables-showcase figcaption { margin-top: .75rem; color: var(--muted); font-size: .85rem; }
.offer { background: linear-gradient(180deg, transparent, rgba(104,47,69,.18), transparent); }
.plans { display: grid; gap: 1.25rem; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line); border-radius: 1.8rem; background: #111924; box-shadow: var(--shadow); }
.plan-featured { border-color: var(--gold); background: linear-gradient(160deg, #2b2630, #111924 55%); }
.plan-label { align-self: flex-start; margin: -.2rem 0 1.4rem; padding: .35rem .7rem; border-radius: 999px; color: var(--night); background: var(--gold-light); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-name { margin-bottom: .4rem; font-size: 2.2rem; }
.price { margin-bottom: .1rem; color: var(--gold-light); font-family: var(--serif); font-size: 3.4rem; line-height: 1; }
.price-note { min-height: 3rem; color: var(--muted); font-size: .8rem; }
.plan ul { flex-grow: 1; padding: 0; margin: 1.5rem 0; list-style: none; }
.plan li { position: relative; padding: .75rem 0 .75rem 1.65rem; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; line-height: 1.55; }
.plan li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.plan .excluded { color: #85817b; text-decoration: line-through; }
.plan .excluded::before { content: "—"; color: #85817b; }
.plan .button { width: 100%; }
.checkout-feedback { position: fixed; right: 1rem; bottom: 1rem; z-index: 30; width: min(26rem, calc(100% - 2rem)); padding: 1rem 1.2rem; border: 1px solid var(--gold); border-radius: 1rem; color: var(--ink); background: #18212b; box-shadow: var(--shadow); font-size: .9rem; }
.guarantee { display: grid; gap: 2rem; align-items: center; padding: 2rem; border: 1px solid var(--gold); border-radius: var(--radius); }
.guarantee-mark { width: 8rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); font-family: var(--serif); font-size: 2.3rem; text-align: center; line-height: .8; }
.guarantee-mark small { display: block; font-family: var(--sans); font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
.faq { max-width: 52rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.35rem 2.5rem 1.35rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; line-height: 1.4; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; color: var(--gold); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-right: 2rem; color: var(--muted); }
.final-cta { padding: 5rem 0 7rem; text-align: center; }
.final-cta h2 { max-width: 58rem; margin-inline: auto; }
.final-cta .lead { margin-inline: auto; }
.site-footer { padding: 2rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }

.exit-popup { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; }
.exit-popup[hidden] { display: none; }
.exit-popup-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.exit-popup-modal { position: relative; width: min(26rem, calc(100% - 2rem)); padding: 2.5rem 2rem; border: 1px solid var(--gold); border-radius: 1.5rem; background: #111924; text-align: center; box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.exit-popup-close { position: absolute; top: .75rem; right: 1rem; background: none; border: 0; color: var(--muted); font-size: 1.8rem; cursor: pointer; line-height: 1; }
.exit-popup-close:hover { color: var(--ink); }
.exit-popup-eyebrow { margin: 0 0 .75rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.exit-popup-modal h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.exit-popup-modal h2 span { color: var(--gold-light); }
.exit-popup-modal p { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; }
.exit-popup-btn { width: 100%; font-size: 1rem; }

@media (min-width: 720px) {
  .container { width: min(1120px, calc(100% - 4rem)); }
  .mechanism-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-showcase { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plan { padding: 2.2rem; }
  .guarantee { grid-template-columns: auto 1fr; padding: 3rem; }
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 8rem 0; }
  .section-compact { padding: 4rem 0; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .bonus-grid { grid-template-columns: repeat(4, 1fr); }
  .plan-featured { transform: translateY(-1rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
