:root{
  --bg:#060606;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.14);
  --line2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.56);
  --shadow: 0 18px 60px rgba(0,0,0,.60);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(900px 600px at 30% 10%, rgba(255,255,255,.06), transparent 60%),
              radial-gradient(800px 500px at 80% 90%, rgba(255,255,255,.05), transparent 60%),
              linear-gradient(180deg, #050505, #0a0a0a);
  overflow-x:hidden;
}

.bg{ position:fixed; inset:0; pointer-events:none; }

.grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity:.18;
  mask-image: radial-gradient(circle at 30% 20%, black 0%, transparent 60%);
}

.spotlight{
  position:absolute; inset:-20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.10), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,.08), transparent 55%);
  filter: blur(10px);
  opacity:.9;
}

.grain{
  position:absolute; inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  transform:rotate(6deg);
  mix-blend-mode:overlay;
  opacity:.28;
}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:28px 18px;
  max-width:980px;
  margin:0 auto;
}

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

.logo{
  height:54px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.40));
}

.badge{
  padding:10px 14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.35);
  border-radius:999px;
  font-weight:800;
  letter-spacing:1.8px;
  font-size:12px;
  color: rgba(255,255,255,.86);
  text-transform:uppercase;
  backdrop-filter: blur(10px);
}

.hero{ padding:34px 2px 22px; }

.kicker{
  margin:0 0 10px;
  color: rgba(255,255,255,.76);
  letter-spacing:.9px;
  text-transform:uppercase;
  font-size:12px;
}

h1{
  font-size: clamp(40px, 6vw, 72px);
  line-height:1.02;
  margin: 10px 0 12px;
  letter-spacing:-1px;
}

.sub{
  margin:0 0 22px;
  max-width:64ch;
  color:var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height:1.65;
}

.ctaCard{
  margin-top:18px;
  padding:22px;
  border-radius:var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border:1px solid var(--line2);
  box-shadow:var(--shadow);
  backdrop-filter: blur(14px);
}

.ctaCard h2{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:.2px;
}

.tiny{
  margin:0 0 14px;
  color:var(--muted2);
  font-size:14px;
}

.form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

input{
  flex:1 1 260px;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.45);
  color:var(--text);
  outline:none;
}
input::placeholder{ color: rgba(255,255,255,.40); }
input:focus{
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}

button{
  flex:0 0 auto;
  padding:13px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.20);
  cursor:pointer;
  font-weight:900;
  letter-spacing:.4px;
  color:#0a0a0a;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
}
button:hover{ transform: translateY(-1px); }
button:active{ transform: translateY(0px); }

.note{
  margin-top:12px;
  min-height:18px;
  color: rgba(255,255,255,.82);
  font-size:14px;
}

.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line2);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.80);
  font-weight:700;
  font-size:13px;
  backdrop-filter: blur(10px);
}

.foot{
  padding:18px 2px 6px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  color:var(--muted2);
  font-size:13px;
}

.links{ display:flex; gap:14px; }
a{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}
a:hover{ border-bottom-color: rgba(255,255,255,.45); }

.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;
}

@media (max-width:520px){
  .badge{ display:none; }
  .logo{ height:48px; }
  .ctaCard{ padding:18px; }
}
