:root{
  --bg0:#060A12;
  --bg1:#0B1630;
  --fg:#F2F6FF;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.52);
  --glass:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --brand0:#FF6B35;
  --brand1:#2DD4BF;
  --ok:#34d399;
  --bad:#fb7185;
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--fg);
  background:
    radial-gradient(900px 700px at 16% 18%, rgba(255,107,53,.18), transparent 68%),
    radial-gradient(900px 700px at 84% 28%, rgba(45,212,191,.14), transparent 62%),
    radial-gradient(900px 700px at 55% 120%, rgba(255,196,0,.06), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

.wrap{width:min(1100px, calc(100% - 48px)); margin:0 auto}

.bg{position:fixed; inset:0; pointer-events:none; z-index:-1}
.grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 55% at 50% 30%, rgba(0,0,0,.9), transparent 72%);
  opacity:.65;
}
.noise{
  position:absolute; inset:-20%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity:.08;
  transform:rotate(2deg);
}
.orb{position:absolute; width:680px; height:680px; border-radius:999px; filter: blur(38px); opacity:.55}
.orb-a{left:-220px; top:-160px; background:radial-gradient(circle at 30% 30%, rgba(255,107,53,.82), rgba(255,107,53,0) 60%)}
.orb-b{right:-240px; top:120px; background:radial-gradient(circle at 35% 35%, rgba(45,212,191,.80), rgba(45,212,191,0) 60%)}

.top{padding:28px 0 12px}
.top-row{display:flex; align-items:center; justify-content:space-between; gap:16px}
.brand{display:flex; align-items:center; gap:12px; font-family:"Space Grotesk", Manrope, sans-serif; letter-spacing:.2px}
.mark{
  width:12px; height:12px; border-radius:999px;
  background:linear-gradient(135deg, var(--brand0), var(--brand1));
  box-shadow:0 0 0 6px rgba(255,107,53,.10), 0 0 24px rgba(45,212,191,.14);
}
.word{font-weight:600}
.nav{display:flex; align-items:center; gap:12px}
.link{
  color:var(--muted);
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}
.link:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.05)}

.hero{padding:56px 0 72px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(234,240,255,.78);
  letter-spacing:.18em;
  font-size:12px;
  font-weight:700;
}
h1{
  margin:18px 0 10px;
  font-family:"Space Grotesk", Manrope, sans-serif;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height:1.06;
  letter-spacing:-.02em;
}
.sub{
  margin:0;
  max-width: 68ch;
  font-size: 18px;
  line-height:1.55;
  color:var(--muted);
}

.panel{
  margin-top:26px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.panel-kicker{font-weight:700; color:rgba(234,240,255,.88); margin-bottom:10px}
.form{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
input[type="email"]{
  flex: 1 1 260px;
  min-width: 240px;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  outline:none;
  color:var(--fg);
  background:rgba(4,6,16,.45);
  border:1px solid rgba(255,255,255,.14);
  transition:border-color .15s ease, box-shadow .15s ease;
}
input[type="email"]::placeholder{color:rgba(234,240,255,.38)}
input[type="email"]:focus{
  border-color: rgba(45,212,191,.52);
  box-shadow: 0 0 0 6px rgba(45,212,191,.12);
}
button{
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border:0;
  color:#081018;
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  background: linear-gradient(135deg, rgba(45,212,191,1), rgba(255,107,53,1));
  box-shadow: 0 16px 50px rgba(255,107,53,.16);
  transition: transform .15s ease, filter .15s ease;
}
button:hover{transform:translateY(-1px); filter:saturate(1.06)}
button:disabled{opacity:.6; cursor:not-allowed; transform:none}

.captcha{
  margin-top:12px;
  padding:12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  display:flex;
  justify-content:flex-start;
}

.fine{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted2);
  font-size:13px;
}
.fine-right{white-space:nowrap}
#status[data-kind="ok"]{color:rgba(52,211,153,.95)}
#status[data-kind="bad"]{color:rgba(251,113,133,.95)}

.cards{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  padding:16px 16px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow: 0 12px 44px rgba(0,0,0,.28);
}
.card-k{font-size:12px; letter-spacing:.12em; font-weight:800; color:rgba(234,240,255,.72)}
.card-v{margin-top:8px; font-weight:800; font-size:18px}
.card-h{margin-top:6px; color:var(--muted); line-height:1.45}

.footer{padding:22px 0 30px; color:rgba(234,240,255,.55)}
.footer-row{display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap}
.sep{opacity:.35}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.trap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

@media (max-width: 900px){
  .cards{grid-template-columns: 1fr}
  .fine{flex-direction:column; align-items:flex-start}
  .fine-right{white-space:normal}
}

@media (prefers-reduced-motion: reduce){
  .link, button, input[type="email"]{transition:none}
  .noise{display:none}
}
