:root{
  --bg:#0b0a12;
  --panel:#141226;
  --panel2:#191733;
  --text:#f1f0f7;
  --muted:#b7b4c9;
  --line:#2b2742;
  --purple:#7a3df0;
  --gold:#d4af37;
  --warm:#ff7a18;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
}

*{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, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    linear-gradient(90deg, rgba(14,16,48,1) 0%, rgba(14,16,48,1) 52%, rgba(18,10,10,1) 52%, rgba(18,10,10,1) 100%);
  background-color:var(--bg);
}

a{color:var(--text); text-decoration:none}
a:hover{opacity:.9; text-decoration:underline}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.topbar{
  padding:22px 0 10px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo{
  width:34px;height:34px;border-radius:12px;
  background:
    radial-gradient(circle at 25% 25%, rgba(122,61,240,1) 0%, rgba(122,61,240,.2) 45%, rgba(0,0,0,0) 70%),
    radial-gradient(circle at 75% 70%, rgba(255,122,24,1) 0%, rgba(255,122,24,.25) 40%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(20,18,38,1) 0%, rgba(11,10,18,1) 100%);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand b{letter-spacing:.4px}
.nav{
  display:flex;
  gap:16px;
  color:var(--muted);
  font-size:14px;
}

.hero{
  padding:22px 0 46px 0;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(20,18,38,.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.cardInner{padding:26px}

.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.2px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 12px;
  font-weight:700;
  font-size:12px;
  color:#fff;
  background:rgba(122,61,240,.95);
}
.pill.warm{background:rgba(255,122,24,.95)}
.pill.gold{background:rgba(212,175,55,.95); color:#201a0a}

h1{
  margin:14px 0 10px 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}

@media (max-width: 520px){
  h1{font-size:36px}
}

.subhead{
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  margin:0 0 18px 0;
}

.bullets{
  margin:18px 0 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
}
.dot{
  width:10px;height:10px;margin-top:6px;border-radius:4px;
  background:linear-gradient(135deg, rgba(122,61,240,1), rgba(212,175,55,1));
  box-shadow: 0 0 0 3px rgba(122,61,240,.18);
}

.form{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width: 520px){ .row2{grid-template-columns:1fr} }

input, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(11,10,18,.72);
  color:var(--text);
  outline:none;
}
input:focus, select:focus{
  border-color: rgba(122,61,240,.9);
  box-shadow: 0 0 0 4px rgba(122,61,240,.18);
}

button{
  cursor:pointer;
  border:none;
  border-radius:14px;
  padding:13px 14px;
  font-weight:800;
  letter-spacing:.2px;
  color:#0b0a12;
  background: linear-gradient(90deg, rgba(212,175,55,1), rgba(255,122,24,1));
  box-shadow: var(--shadow);
}
button:hover{filter:brightness(1.05)}
button:disabled{opacity:.6; cursor:not-allowed}

.micro{
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}

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

.mini{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(11,10,18,.55);
}

.mini b{display:block; margin-bottom:6px}
.mini p{margin:0; color:var(--muted); font-size:13px; line-height:1.45}

.section{
  margin:28px 0 0 0;
  padding:22px 0 0 0;
  border-top:1px solid rgba(43,39,66,.65);
}

.section h2{
  margin:0 0 12px 0;
  font-size:20px;
  letter-spacing:-.2px;
}

.faq{
  display:grid;
  gap:10px;
}
.faq details{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(20,18,38,.55);
  padding:12px 14px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{
  margin:10px 0 0 0;
  color:var(--muted);
  line-height:1.55;
}

.footer{
  padding:28px 0 34px 0;
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.note{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(11,10,18,.55);
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.success{
  border-color: rgba(212,175,55,.55);
}
.error{
  border-color: rgba(255,122,24,.65);
}

.status{
  font-size:13px;
  color:var(--muted);
}
