:root {
  --bg: #0b0b0d;
  --bg-2: #121319;
  --card: #16171f;
  --line: #24262f;
  --text: #e9ebf0;
  --muted: #a6adbb;
  --gold: #f5b301;
  --gold-2: #ffd257;
  --radius: 16px;
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
.grad { background: linear-gradient(120deg, var(--gold), var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #000; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem 1.25rem; border-radius: 12px; font-weight: 700; font-size: .98rem; border: 1px solid transparent; transition: transform .12s ease, background .2s ease, border-color .2s; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #f0f0f0; }
.btn-buy { background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #241a00; box-shadow: 0 6px 20px rgba(245, 179, 1, .28); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
[aria-disabled="true"] { opacity: .6; pointer-events: none; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 1.5rem; padding: .9rem clamp(1rem, 4vw, 2.5rem); background: rgba(11,11,13,.72); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.brand img { filter: drop-shadow(0 0 6px rgba(245,179,1,.4)); }
.brand-name b { font-weight: 800; color: var(--gold); }
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: .4rem; }

/* Hero */
.hero { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem) 2rem; display: grid; grid-template-columns: 1.3fr .9fr; gap: 2rem; align-items: center; overflow: hidden; }
.hero-glow { position: absolute; inset: -20% 30% auto -10%; height: 480px; background: radial-gradient(closest-side, rgba(245,179,1,.16), transparent 70%); filter: blur(10px); z-index: 0; }
.hero-inner { position: relative; z-index: 1; }
.eyebrow { color: var(--gold); font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); font-weight: 800; }
.lede { color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.18rem); max-width: 36ch; margin: 1.25rem 0 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.micro { color: var(--muted); font-size: .85rem; margin-top: 1rem; }
.hero-art { position: relative; z-index: 1; display: grid; place-items: center; }
.hero-art img { width: min(360px, 80%); filter: drop-shadow(0 20px 50px rgba(245,179,1,.25)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Sections */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem); }
.section-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; text-align: center; }
.section-sub { color: var(--muted); text-align: center; margin: .8rem auto 0; max-width: 44ch; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s, transform .15s; }
.card:hover { border-color: rgba(245,179,1,.5); transform: translateY(-3px); }
.card .ic { font-size: 1.6rem; margin-bottom: .8rem; }
.card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 2.5rem auto 0; max-width: 760px; display: grid; gap: 1rem; }
.steps li { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.3rem; }
.step-n { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #241a00; background: linear-gradient(120deg, var(--gold), var(--gold-2)); }
.steps h3 { font-size: 1.05rem; }
.steps p { color: var(--muted); margin: .25rem 0 0; font-size: .94rem; }

/* Pricing */
.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 760px; margin: 2.5rem auto 0; }
.price { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: relative; }
.price-pro { border-color: rgba(245,179,1,.55); box-shadow: 0 12px 40px rgba(245,179,1,.12); }
.price h3 { font-size: 1.1rem; color: var(--muted); font-weight: 700; }
.amount { font-size: 2.6rem; font-weight: 800; margin: .3rem 0 1.1rem; }
.amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .6rem; color: var(--muted); font-size: .95rem; }
.price li::before { content: "✓"; color: var(--gold); font-weight: 800; margin-right: .5rem; }
.price .btn { width: 100%; }
.badge { position: absolute; top: -12px; right: 16px; background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #241a00; font-size: .72rem; font-weight: 800; padding: .3rem .7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }

/* Download */
.download { text-align: center; }
.download .btn { margin: 2rem auto .5rem; }

/* FAQ */
.faq { max-width: 720px; margin: 2.5rem auto 0; display: grid; gap: .7rem; }
.faq details { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 0 1.2rem; }
.faq summary { cursor: pointer; font-weight: 700; padding: 1.05rem 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin: 0 0 1.1rem; }
.faq a { color: var(--gold-2); }

/* Footer */
.foot { border-top: 1px solid var(--line); margin-top: 3rem; padding: 2rem clamp(1rem, 4vw, 2.5rem); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; max-width: var(--maxw); margin-inline: auto; }
.foot-brand { display: flex; align-items: center; gap: .5rem; font-weight: 600; }
.foot-brand b { color: var(--gold); font-weight: 800; }
.foot-legal { color: var(--muted); font-size: .88rem; margin: 0; }
.foot-legal a { color: var(--muted); text-decoration: underline; }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .grid { grid-template-columns: 1fr 1fr; }
  .prices { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
}
