:root{
  --bg:#070707;
  --panel:#111;
  --panel2:#0c0c0c;
  --text:#ffffff;
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.52);
  --stroke:rgba(255,255,255,.09);

  --red:#ff2b2b;
  --red2:#e60000;

  --shadow:0 20px 70px rgba(0,0,0,.65);
  --radius:22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 70% 10%, rgba(255,43,43,.12), transparent 60%),
    radial-gradient(700px 400px at 20% 0%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
}

a{color:inherit}
.wrap{
  width:100%;
  max-width:1020px;
  margin:0 auto;
  padding:26px 18px 60px;
  position:relative;
}

.logo-top-center{ text-align:center; margin:6px 0 22px; }
.logo-top-center img{ height:64px; width:auto; }

.logo-top-right{
  position:absolute;
  top:16px;
  right:18px;
}
.logo-top-right img{ height:42px; width:auto; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.pad{ padding:26px; }
@media (max-width:640px){ .pad{ padding:20px; } }

h1{margin:0 0 10px; font-size:40px; letter-spacing:-.02em}
h2{margin:0 0 10px; font-size:22px; letter-spacing:-.01em}
p{margin:10px 0; color:var(--muted); line-height:1.65}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  border:none;
  cursor:pointer;
  text-decoration:none;
  transition:.2s transform, .2s filter;
}
.btn:active{transform:scale(.98)}
.btnPrimary{
  color:#fff;
  background:linear-gradient(180deg, rgba(255,43,43,.98), rgba(230,0,0,.98));
  box-shadow:0 12px 30px rgba(255,43,43,.25);
  border:1px solid rgba(255,43,43,.35);
}
.btnGhost{
  color:#fff;
  background:rgba(0,0,0,.24);
  border:1px solid var(--stroke);
  box-shadow:none;
  font-weight:750;
}
.smallNote{font-size:13px; color:var(--muted2); margin-top:12px}

.hr{border-top:1px solid var(--stroke)}

.progress{
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.progress > div{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, rgba(255,43,43,.98), rgba(230,0,0,.98));
  transition:.25s;
}

.stepBox{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}

.qTitle{font-weight:850; margin:0 0 10px; font-size:18px}
.qHint{margin:0 0 14px; color:var(--muted); font-size:13px; line-height:1.5}

.grid2{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px}
@media (max-width:680px){ .grid2{grid-template-columns:1fr} }

input{display:none}
label.opt{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  cursor:pointer;
  user-select:none;
  transition:.2s;
  font-weight:750;
}
label.opt:hover{transform:translateY(-1px)}
input:checked + label.opt{
  border-color:rgba(255,43,43,.70);
  background:rgba(255,43,43,.18);
  box-shadow:0 10px 26px rgba(255,43,43,.10);
}
.tag{
  margin-left:auto;
  font-size:12px;
  color:rgba(255,255,255,.60);
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  font-weight:650;
}

textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:#fff;
  padding:12px;
  font-family:inherit;
  outline:none;
  min-height:120px;
  resize:vertical;
}

.actions{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.kpiRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.kpi{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  font-size:13px;
  font-weight:750;
  color:rgba(255,255,255,.86);
}

.prefGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
@media (max-width:900px){ .prefGrid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:640px){ .prefGrid{grid-template-columns:1fr} }

.prefChip{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.prefChip .k{color:rgba(255,255,255,.60); font-size:12px}
.prefChip .v{font-weight:850; margin-top:3px}

.cardGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
@media (max-width:900px){ .cardGrid{grid-template-columns:1fr} }

.placeCard{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}
.placeCard .name{font-weight:900; font-size:16px; margin-bottom:6px}
.placeCard .meta{color:rgba(255,255,255,.68); font-size:13px; line-height:1.55}
.placeCard a{color:var(--red); text-decoration:none; font-weight:850}

.loadingRow{
  display:flex; gap:12px; align-items:center;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  margin-top:14px;
}
.spinner{
  width:22px;height:22px;border-radius:50%;
  border:3px solid rgba(255,255,255,.18);
  border-top-color:var(--red);
  animation:spin 1s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.overlay{
  position:fixed; inset:0;
  background:rgba(7,7,7,.92);
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.overlayBox{
  width:min(520px,92%);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
  border-radius:22px;
  padding:22px;
  text-align:center;
}