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

:root {
  --bg: #0a0f19;
  --bg2: #0e1420;
  --panel: #131d30;
  --panel2: #172336;
  --line: #223049;
  --text: #eaf0f8;
  --muted: #9aa8bf;
  --gold: #e0b94d;
  --gold-d: #c9a227;
  --green: #35d07f;
  --radius: 16px;
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .brand-name { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.eyebrow { color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.gold { color: var(--gold); }

/* ---------- announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  color: #1a1305; text-align: center; font-size: 14px; font-weight: 600;
  padding: 10px 16px; letter-spacing: .01em;
}
.announce strong { font-weight: 800; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 25, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 34px; width: auto; }
.brand-name { font-weight: 700; font-size: 19px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
  font-family: 'Inter', sans-serif;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-d)); color: #1a1305; box-shadow: 0 8px 24px rgba(224,185,77,.25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(224,185,77,.35); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.nav .btn { margin-left: 4px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 84px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 54px; line-height: 1.05; font-weight: 800; }
.hero p.lead { color: var(--muted); font-size: 19px; margin: 22px 0 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.trust-row .ti { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; font-weight: 500; }
.trust-row .ti svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-visual .glow {
  position: absolute; inset: 0; margin: auto; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(224,185,77,.22), transparent 65%); filter: blur(30px);
}
.hero-visual img { position: relative; width: 330px; max-width: 80%; filter: drop-shadow(0 24px 50px rgba(0,0,0,.55)); }

/* ---------- stats bar ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 22px; }
.stat { text-align: center; }
.stat .n { font-family: 'Sora'; font-size: 30px; font-weight: 700; color: var(--gold); }
.stat .l { color: var(--muted); font-size: 13.5px; margin-top: 2px; }

/* ---------- section heads ---------- */
.shead { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.shead h2 { font-size: 38px; font-weight: 800; margin: 12px 0 14px; }
.shead p { color: var(--muted); font-size: 17px; }

/* ---------- features ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(224,185,77,.4); }
.card .ic {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(224,185,77,.12); color: var(--gold); margin-bottom: 18px;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; padding: 0 10px; }
.step .num {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: 'Sora'; font-weight: 700; font-size: 22px;
  color: var(--gold); border: 2px solid var(--gold); background: rgba(224,185,77,.08);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; margin: 0 auto; }
.price {
  background: linear-gradient(180deg, var(--panel), var(--bg2));
  border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; position: relative;
}
.price.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 20px 50px rgba(0,0,0,.4); }
.price .tag { position: absolute; top: -13px; right: 26px; background: var(--gold); color: #1a1305; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.price h3 { font-size: 22px; }
.price .amt { font-family: 'Sora'; font-size: 44px; font-weight: 800; margin: 12px 0 2px; }
.price .amt span.per { font-size: 17px; color: var(--muted); font-weight: 500; }
.price .amt .old { font-size: 24px; color: var(--muted); text-decoration: line-through; font-weight: 600; margin-right: 10px; }
.price .lock { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.price .lock svg { width: 15px; height: 15px; }
.price .note { color: var(--muted); font-size: 12.5px; margin-top: 14px; line-height: 1.5; }
.price .sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price ul { list-style: none; margin-bottom: 26px; }
.price li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; color: var(--text); font-size: 15px; }
.price li svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: 2px; }
.price .btn { width: 100%; }

/* ---------- security band ---------- */
.band { background: linear-gradient(135deg, var(--panel2), var(--bg2)); border: 1px solid var(--line); border-radius: 24px; padding: 50px; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.band h2 { font-size: 32px; margin-bottom: 14px; }
.band p { color: var(--muted); font-size: 16px; margin-bottom: 10px; }
.checklist { list-style: none; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: 15.5px; }
.checklist svg { width: 22px; height: 22px; color: var(--green); flex: none; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: 0 auto; }
details { border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); margin-bottom: 12px; padding: 4px 22px; }
details summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--gold); font-size: 24px; font-weight: 400; }
details[open] summary::after { content: "\2013"; }
details p { color: var(--muted); font-size: 15px; padding: 0 0 20px; }

/* ---------- cta ---------- */
.cta-band { text-align: center; background: linear-gradient(135deg, rgba(224,185,77,.14), rgba(53,208,127,.08)); border: 1px solid var(--line); border-radius: 24px; padding: 60px 30px; }
.cta-band h2 { font-size: 36px; margin-bottom: 14px; }
.cta-band p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--line); background: var(--bg2); padding: 54px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.foot-grid p { color: var(--muted); font-size: 14.5px; margin-top: 12px; max-width: 320px; }
.foot-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text); font-size: 15px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13.5px; }

/* ---------- legal pages ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: 60px 22px 90px; }
.legal h1 { font-size: 34px; margin-bottom: 8px; }
.legal h2 { font-size: 20px; margin: 30px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal strong { color: var(--text); }
.legal .meta { font-size: 13.5px; margin-bottom: 24px; }
.legal .card { margin: 18px 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .band-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero h1 { font-size: 40px; }
  .grid3, .steps { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .prices { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .band { padding: 32px; }
  .section { padding: 64px 0; }
}
