:root{
  --bg:#0b0f14;
  --card:#0f1722;
  --text:#e9f0ff;
  --muted:rgba(233,240,255,.72);
  --line:rgba(233,240,255,.12);
  --accent:#7B3FE4;
  --accent2:#28d17c;

  --radius:20px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --shadow2: 0 10px 26px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(123,63,228,.22), transparent 55%),
    radial-gradient(900px 550px at 90% 10%, rgba(40,209,124,.14), transparent 60%),
    radial-gradient(900px 600px at 40% 100%, rgba(245,197,66,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 18px 60px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}

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

.logo{
  width:42px;height:42px;border-radius:14px;
  background: rgba(123,63,228,.18);
  border:1px solid rgba(123,63,228,.30);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  font-size:18px;
}

.brand h1{
  margin:0;
  font-size:16px;
  letter-spacing:.2px;
  font-weight:900;
}
.brand .tag{
  margin:0;
  font-size:12px;
  color:var(--muted);
  font-weight:650;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
}

.hero{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  overflow:hidden;
  position:relative;
}

.hero h2{
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: .2px;
}

.hero p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 72ch;
}

.grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.card h3{
  margin:0 0 10px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing:.2px;
}

.mutedP{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.bullets li{margin:6px 0}

.choices{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px){
  .choices{grid-template-columns:1fr}
}

.btn{
  width:100%;
  text-align:left;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  box-shadow: var(--shadow2);
  transition: transform .06s ease, border-color .12s ease, background .12s ease;
  font-weight: 900;
  letter-spacing:.2px;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(233,240,255,.22)}
.btn:active{transform: translateY(0px)}
.btn:focus-visible{
  outline: 3px solid rgba(123,63,228,.45);
  outline-offset: 2px;
}

.btn small{
  display:block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.panel{
  margin-top: 12px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(123,63,228,.12), rgba(255,255,255,.03));
  box-shadow: var(--shadow2);
  padding: 16px;
  display:none;
}
.panel.is-open{display:block}

.panel h4{
  margin:0 0 8px;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing:.2px;
}
.panel p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  max-width: 80ch;
}

.alert{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  font-weight: 800;
}
.alert.err{
  background: rgba(255, 90, 122, .12);
  border-color: rgba(255, 90, 122, .25);
  color: rgba(255, 230, 236, .95);
}
.alert.ok{
  background: rgba(40, 209, 124, .12);
  border-color: rgba(40, 209, 124, .25);
  color: rgba(223, 252, 239, .98);
}

/* Form */
.sfq-form{margin-top: 12px}
.label{
  display:block;
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(233,240,255,.84);
}
.input, .textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(233,240,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
}
.textarea{resize: vertical; min-height: 92px}

.input:focus, .textarea:focus{
  border-color: rgba(123,63,228,.45);
  box-shadow: 0 0 0 3px rgba(123,63,228,.20);
}

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

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233,240,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(233,240,255,.78);
  font-size: 12px;
  font-weight: 700;
}
.consent input{margin-top: 2px}

.ctaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ctaBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid rgba(40,209,124,.35);
  background: rgba(40,209,124,.10);
  color: #dffcef;
  font-weight: 950;
  text-decoration:none;
  font-size: 13px;
  cursor:pointer;
}
.ctaBtn:focus-visible{
  outline: 3px solid rgba(40,209,124,.35);
  outline-offset: 2px;
}

.note{
  color: rgba(233,240,255,.62);
  font-size: 12px;
  font-weight: 650;
}

footer{
  margin-top: 16px;
  color: rgba(233,240,255,.55);
  font-size: 12px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  padding: 0 2px;
}

.kbd{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(233,240,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(233,240,255,.78);
  font-weight: 800;
  font-size: 11px;
}

/* Honeypot */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
}