:root {
  --bg-1: #090b2a;
  --bg-2: #1b1f5a;
  --accent: #ffd400;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 430px; /* mobile-first */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.8px) 0 0 / 170px 170px,
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.7px) 0 0 / 210px 210px,
    linear-gradient(90deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  padding: 0 0 env(safe-area-inset-bottom);
}

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

.container {
  width: min(calc(100% - 20px), var(--max));
  margin: 0 auto;
}

.shell { padding: 10px 0 20px; }

.panel {
  background: linear-gradient(180deg, rgba(68, 18, 117, 0.98), rgba(27, 16, 67, 0.98));
  border: 1px solid rgba(255, 212, 0, 0.32);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: calc(100vh - 20px);
}

.topbar{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.brand{
  font-size:14px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--accent);
}

.top-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  font-size:13px;
  color: var(--muted);
}

.top-links a{
  padding:8px 14px;
  border-radius:999px;
  border:0;
  background: var(--accent);
  color:#201145;
  font-weight:800;
  box-shadow: 0 16px 28px rgba(255,212,0,0.2);
}

.hero{
  padding:30px 18px 20px;
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  margin-bottom:18px;
  border:1px solid rgba(255,212,0,0.38);
  border-radius:999px;
  font-size:13px;
  color: var(--accent);
  background: rgba(255,212,0,0.08);
}

h1{
  margin:0;
  font-size: clamp(28px, 9vw, 40px);
  line-height:1.12;
  letter-spacing:-0.03em;
}

.hero-subtitle{
  max-width:100%;
  margin:18px auto 0;
  font-size:16px;
  line-height:1.6;
  color: var(--muted);
}

.hero-icon{
  width:76px;
  height:76px;
  margin:22px auto 0;
  display:grid;
  place-items:center;
  border-radius:24px;
  background: rgba(255,212,0,0.08);
  border: 1px solid rgba(255,212,0,0.26);
}

.hero-icon svg{
  width:40px;
  height:40px;
  stroke: var(--accent);
  stroke-width:2.2;
  fill:none;
}

.divider{
  height:2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.benefits{
  padding:18px;
  display:grid;
  gap:12px;
}

.benefit{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:12px;
  align-items:center;
  padding:16px 14px;
  border-radius: var(--radius-sm);
  background: rgba(78,35,137,0.52);
  border: 1px solid rgba(255,255,255,0.06);
}

.benefit-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background: var(--accent);
  color:#24124b;
  font-size:18px;
  font-weight:800;
}

.benefit strong{
  display:block;
  font-size:20px;
  line-height:1.35;
}

.cta-block{ padding: 0 18px 18px; }
.cta-card{
  padding:22px 16px;
  text-align:center;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,212,0,0.72);
}

.cta-card h2{
  margin:0;
  color: var(--accent);
  font-size: clamp(24px, 7vw, 32px);
  line-height:1.2;
}

.cta-card p{
  max-width:100%;
  margin:16px auto 0;
  color: var(--muted);
  font-size:16px;
  line-height:1.6;
}

.cta-actions{ margin-top:24px; }

.button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:52px;
  padding:0 22px;
  border:0;
  border-radius:999px;
  background: var(--accent);
  color:#201145;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 16px 28px rgba(255,212,0,0.2);
}

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

.trust-note{
  margin-top:18px;
  font-size:13px;
  color: var(--muted);
}

.content-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  padding: 0 18px 18px;
}

.section-card{
  padding:18px 16px;
  border-radius: var(--radius);
  background: rgba(27, 12, 61, 0.78);
  border: 1px solid rgba(255,255,255,0.06);
}

.section-card h2, .section-card h3{
  margin:0 0 14px;
  font-size:23px;
  line-height:1.25;
}

.feature-list, .faq-list{
  display:grid;
  gap:10px;
}

.feature-item, .faq-item{
  padding:14px 14px;
  border-radius:14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.feature-item strong, .faq-item strong{
  display:block;
  margin-bottom:6px;
}

.stat-row{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
}

.stat{
  padding:16px;
  border-radius:16px;
  background: rgba(255,212,0,0.08);
  border: 1px solid rgba(255,212,0,0.16);
}

.stat strong{
  display:block;
  font-size:24px;
  color: var(--accent);
}

.footer{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  padding: 18px 16px 24px;
  font-size:13px;
  color: var(--muted);
  text-align:center;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
