:root{
  --bg1:#05070d;
  --bg2:#0a1020;
  --text:#e8eefc;
  --muted:#a9b3c7;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --shadow:rgba(0,0,0,.45);
  --accent:#ff7a18;
  --accent2:#ffb35c;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(255,122,24,.18), transparent 60%),
    radial-gradient(650px 420px at 20% 80%, rgba(90,140,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

.wrap{
  width:min(900px, 100%);
}

.card{
  text-align:center;
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:38px 22px 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 80px var(--shadow);
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(255,122,24,.14), transparent 60%),
    radial-gradient(520px 260px at 0% 30%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}

.top{ position:relative; z-index:1; }

.logo{
  width:86px;
  height:86px;
  object-fit:contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
  margin-bottom:10px;
}

.logo-mark{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:800;
  font-size:52px;
  letter-spacing:1px;
  margin-bottom:10px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
}

.bracket{
  color:rgba(232,238,252,.9);
  opacity:.85;
}

.fd{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 0 22px rgba(255,122,24,.24);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  color:var(--muted);
  font-size:14px;
  margin:6px 0 18px;
}

h1{
  position:relative;
  z-index:1;
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height:1.1;
}

.subtitle{
  position:relative;
  z-index:1;
  margin:0 auto 24px;
  max-width:52ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.5;
}

.buttons{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-bottom:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:650;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  min-width:140px;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
}

.btn:active{
  transform: translateY(0);
}

.btn.primary{
  border-color: rgba(255,122,24,.55);
  background: linear-gradient(180deg, rgba(255,179,92,.18), rgba(255,122,24,.10));
}

.btn.primary:hover{
  border-color: rgba(255,122,24,.9);
}

.btn.ghost{
  background: transparent;
}

.progress-wrap{
  position:relative;
  z-index:1;
  max-width:560px;
  margin:0 auto;
}

.progress-row{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.progress{
  height:12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}

.bar{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 18px rgba(255,122,24,.25);
  transition: width 900ms ease;
}

.launch{
  margin:14px 0 0;
  color:var(--muted);
}

.footer{
  position:relative;
  z-index:1;
  margin-top:26px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  color:rgba(169,179,199,.85);
  font-size:13px;
}

.dot{ opacity:.6; }

@media (prefers-reduced-motion: reduce){
  .btn, .bar{ transition:none; }
}
