/* assets/style.css */
:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --muted:#9fb0d0;
  --text:#eaf0ff;
  --line:#1d2b47;
  --accent:#4f8cff;
  --ok:#2ee59d;
  --warn:#ffcc66;
  --danger:#ff5c7a;
  --radius:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1100px 700px at 15% 0%, rgba(79,140,255,.18), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(46,229,157,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:24px}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center; font-weight:700}
.logo{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--ok));
  box-shadow: var(--shadow);
}
.navlinks{display:flex; gap:14px; align-items:center}
.navlinks a{color:var(--muted); font-weight:600}
.navlinks a:hover{color:var(--text)}

.hero{
  display:grid; grid-template-columns:1.2fr .8fr;
  gap:22px; align-items:stretch; margin-top:14px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}
.card{
  background: rgba(15,26,46,.8);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  backdrop-filter: blur(8px);
}
.h1{font-size:44px; line-height:1.05; margin:10px 0}
.p{color:var(--muted); line-height:1.55; font-size:16px}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  border:1px solid var(--line);
  padding:8px 10px; border-radius:999px;
  color:var(--muted); font-weight:650; font-size:13px;
  background: rgba(255,255,255,.03);
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 14px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:750;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #7a5cff);
  border-color: transparent;
}
.btn.ok{
  background: linear-gradient(135deg, var(--ok), #2ea7e5);
  border-color: transparent;
}
.kv{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:10px;
}
.kv .item{padding:12px; border:1px solid var(--line); border-radius:12px}
.kv .label{color:var(--muted); font-size:12px; font-weight:700; letter-spacing:.3px}
.kv .value{margin-top:6px; font-weight:800}
@media (max-width: 520px){.kv{grid-template-columns:1fr}}

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

.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
.input::placeholder{color:rgba(159,176,208,.65)}
.field{display:flex; flex-direction:column; gap:8px; margin-top:12px}
.field label{color:var(--muted); font-weight:700; font-size:13px}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 800px){.row{grid-template-columns:1fr}}

.hr{height:1px; background: var(--line); margin:16px 0}
.small{color:var(--muted); font-size:12.5px; line-height:1.45}
.toast{
  margin-top:12px;
  padding:12px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.toast.ok{border-color: rgba(46,229,157,.4)}
.toast.err{border-color: rgba(255,92,122,.45)}
footer{margin:32px 0 12px; color:var(--muted); font-size:13px}
.footerlinks{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.footerlinks a{color:var(--muted)}
.footerlinks a:hover{color:var(--text)}

.platformPills{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.pill{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  font-weight:800;
}
.pill.active{
  border-color: rgba(79,140,255,.55);
  box-shadow: 0 0 0 3px rgba(79,140,255,.12);
}
