:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:#0C1328;
  --text:#E9EEFF;
  --muted:#9AA6C3;
  --line:rgba(255,255,255,.08);
  --gold1:#F2D48A;
  --gold2:#B48A3A;
  --shadow:0 18px 60px 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,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(1000px 600px at 30% -20%, rgba(242,212,138,.18), transparent 60%),
             radial-gradient(900px 540px at 80% 20%, rgba(80,120,255,.18), transparent 55%),
             linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:1100px; margin:0 auto; padding:0 20px}

.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background:rgba(7,10,18,.55);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{width:34px; height:34px; border-radius:10px; box-shadow:0 8px 18px rgba(0,0,0,.35); object-fit:cover}
.brand__name{font-weight:800; letter-spacing:.2px}
.nav{display:flex; gap:16px; color:var(--muted); font-weight:600; font-size:14px}
.nav a{padding:8px 10px; border-radius:10px}
.nav a:hover{background:rgba(255,255,255,.05); color:var(--text)}
.header__cta{display:flex; gap:10px}

.hero{padding:56px 0 30px}
.hero__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:stretch}
@media (max-width: 900px){.hero__grid{grid-template-columns:1fr;}}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  letter-spacing:.6px;
  font-size:12px;
}

h1{margin:14px 0 10px; font-size:48px; line-height:1.05; letter-spacing:-.8px}
@media (max-width: 520px){h1{font-size:38px}}
.lead{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6; max-width:56ch}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(242,212,138,.95), rgba(180,138,58,.95));
  color:#1A1204;
  box-shadow:0 16px 40px rgba(180,138,58,.25);
}
.btn--ghost{
  background:rgba(255,255,255,.04);
  color:var(--text);
  box-shadow:none;
}
.hero__buttons{display:flex; gap:12px; flex-wrap:wrap}

.badges{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.section{padding:44px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.02), transparent)}
h2{margin:0 0 16px; font-size:28px; letter-spacing:-.2px}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.card--hero{padding:18px 18px 16px}
.card__title{font-weight:900; letter-spacing:.2px; margin-bottom:12px}
.muted{color:var(--muted)}
.small{font-size:12px}

.countdown{display:grid; grid-template-columns: repeat(4, 1fr); gap:10px; margin-bottom:10px}
.countdown__item{padding:12px; border-radius:16px; background:rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.07)}
.countdown__num{font-size:26px; font-weight:900}
.countdown__lbl{font-size:12px; color:var(--muted); font-weight:700; margin-top:4px}

.divider{height:1px; background:var(--line); margin:16px 0}
.mini-grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px}
.mini-label{font-size:12px; color:var(--muted); font-weight:800; text-transform:uppercase; letter-spacing:.6px}
.mini-value{font-weight:900; margin-top:4px}

.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
@media (max-width: 900px){.grid3{grid-template-columns:1fr;}}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
@media (max-width: 900px){.grid2{grid-template-columns:1fr;}}

.step{
  width:30px; height:30px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background:rgba(242,212,138,.18);
  border:1px solid rgba(242,212,138,.28);
  color:var(--gold1);
  margin-bottom:10px;
}

h3{margin:0 0 8px; font-size:18px}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.list strong{color:var(--text)}
.mt{margin-top:14px}

.faq{display:grid; gap:10px}
.faq__item{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
}
.faq__item summary{cursor:pointer; font-weight:900}
.faq__item p{margin:10px 0 0; color:var(--muted); line-height:1.6}

.footer{border-top:1px solid var(--line); padding:24px 0; background:rgba(0,0,0,.18)}
.footer__inner{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:flex-start}
.footer__right{display:flex; gap:14px; color:var(--muted); font-weight:700}
.brand--footer .brand__logo{width:28px; height:28px}


/* Tiny flag carousel */
.flagbar{
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.15);
}
.flagbar__track{
  display:flex;
  gap:10px;
  padding:10px 0;
  overflow:auto;
  scrollbar-width:none;
}
.flagbar__track::-webkit-scrollbar{ display:none; }
.flag{
  width:22px;
  height:16px;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(255,255,255,.10);
  flex:0 0 auto;
}
.flag img{width:100%;height:100%;object-fit:cover;display:block;}
