
:root{
  --bg: #05060a;
  --text: #f5f6fb;
  --muted: rgba(245,246,251,.78);
  --glass: rgba(255,255,255,.08);
  --glass2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.16);
  --gold1: #f7d46b;
  --gold2: #fff1b0;
  --gold3: #d6a73a;
  --shadow: 0 22px 70px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding: 18px 16px 24px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.07), transparent 35%),
    radial-gradient(circle at 82% 22%, rgba(255,215,0,.08), transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.85) 100%),
    url("bg.jpg") center/cover no-repeat;
}

.sparkle{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.16), transparent 38%),
    radial-gradient(circle at 85% 35%, rgba(255,215,0,.10), transparent 42%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 45%, transparent 70%);
  mix-blend-mode: screen;
  filter: blur(.2px);
  opacity:.9;
}

.topbar{
  width: min(980px, 100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  position:relative;
  z-index:2;
}

.brand{display:flex; align-items:center; gap:10px;}
.logo{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, var(--gold1), var(--gold2), var(--gold3));
  color:#111;
  box-shadow: 0 14px 34px rgba(214,167,58,.22);
}
.brandTitle{font-weight:800; letter-spacing:.2px; font-size:14px;}
.brandSub{font-weight:600; color: var(--muted); font-size:12px; margin-top:1px;}

.lang select{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  outline:none;
  backdrop-filter: blur(10px);
}

.card{
  width: min(980px, 100%);
  margin-top: 16px;
  position:relative;
  z-index:2;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 16px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size: 11px;
}

.title{
  margin: 14px 0 10px;
  font-size: clamp(24px, 4.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.desc{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 10px;
}

.cta{
  position:relative;
  border-radius: 16px;
  padding: 16px 16px;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.18);
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
  width: 100%;
  max-width: 520px;
}

.primary{
  color:#111;
  background: linear-gradient(90deg, var(--gold1), var(--gold2), var(--gold3));
  box-shadow: 0 16px 50px rgba(214,167,58,.20);
  overflow:hidden;
}

.ctaGlow{
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(18deg);
  animation: shine 2.8s infinite;
  opacity:.75;
}
@keyframes shine{
  0%{transform:translateX(-140%) rotate(18deg)}
  60%{transform:translateX(240%) rotate(18deg)}
  100%{transform:translateX(240%) rotate(18deg)}
}

.ghost{
  background: rgba(0,0,0,.28);
  color: var(--text);
}
.ghost:hover{background: rgba(0,0,0,.35)}
.primary:hover{filter: brightness(1.04)}
.cta:active{transform: translateY(1px)}

.ctaArrow{
  font-size: 18px;
  line-height: 0;
  opacity: .9;
}

.fine{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(245,246,251,.72);
  font-size: 12px;
}
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,215,0,.55);
  box-shadow: 0 0 18px rgba(255,215,0,.25);
}

.divider{
  height:1px;
  width:100%;
  background: rgba(255,255,255,.12);
  margin: 14px 0;
}

.steps{
  display:grid;
  gap: 10px;
}
.step{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--glass2);
  border: 1px solid rgba(255,255,255,.10);
}
.stepNum{
  width: 26px; height: 26px;
  border-radius: 10px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
}
.stepText{
  color: rgba(245,246,251,.86);
  font-size: 13px;
  line-height: 1.35;
}

.fallback{
  display:inline-block;
  margin-top: 14px;
  color: rgba(255,241,176,.95);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.fallback:hover{text-decoration: underline}

.footer{
  width: min(980px, 100%);
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 6px;
  color: rgba(245,246,251,.66);
  font-size: 12px;
  position:relative;
  z-index:2;
}

@media (min-width: 720px){
  .card{padding: 22px 22px 18px}
  .cta{width:auto; min-width: 280px}
  .ctaRow{gap: 14px}
}
