:root{
  --bg0:#070A12;
  --bg1:#0B1024;
  --txt:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --glass:rgba(10,14,30,.48);
  --stroke:rgba(255,255,255,.10);
  --glow:rgba(130,170,255,.22);
  --accent: #8AB6FF;
  --accent2:#B18CFF;
}

*{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% 20%, var(--bg1), var(--bg0));
  color:var(--txt);
  overflow-x:hidden;
}

#nn{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  z-index:0;
}

.fx-layer{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(900px 500px at 70% 25%, rgba(177,140,255,.16), transparent 60%),
    radial-gradient(900px 600px at 30% 65%, rgba(138,182,255,.14), transparent 60%),
    radial-gradient(600px 600px at 50% 50%, rgba(255,255,255,.03), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.55));
  /* subtle grain */
  mask-image: radial-gradient(circle at 50% 40%, black 60%, transparent 100%);
}

.wrap{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:72px 18px;
}

.card{
  width:min(980px, 92vw);
  padding:42px 34px;
  border-radius:26px;
  background: linear-gradient(180deg, rgba(10,14,30,.72), rgba(10,14,30,.34));
  border:1px solid var(--stroke);
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 60px var(--glow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(10px);
  opacity:0;
  animation: popIn .9s ease-out forwards;
}

@keyframes popIn{
  to{ transform: translateY(0); opacity:1; }
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.86);
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.badge .dot{
  width:10px;height:10px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #D7E6FF, var(--accent));
  box-shadow: 0 0 18px rgba(138,182,255,.55);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:.9; }
  50%{ transform: scale(1.18); opacity:1; }
}

.headline{
  margin:18px 0 10px;
  font-size: clamp(28px, 5vw, 54px);
  line-height:1.06;
  letter-spacing:-0.02em;
  text-transform: lowercase;
  background:
    radial-gradient(600px 200px at 20% 30%, rgba(138,182,255,.8), transparent 70%),
    linear-gradient(90deg, #EAF0FF, #BFD2FF 40%, #E7D9FF 78%, #EAF0FF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}

.sub{
  margin:0 0 24px;
  color:var(--muted);
  font-size: clamp(14px, 1.8vw, 18px);
  max-width: 60ch;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color:var(--txt);
  font-weight:600;
  letter-spacing:.2px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  user-select:none;
}

.btn.primary{
  background: linear-gradient(135deg, rgba(138,182,255,.95), rgba(177,140,255,.85));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(138,182,255,.18);
}

.btn.ghost{
  background: rgba(255,255,255,.06);
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 45px rgba(0,0,0,.38);
}
.btn:active{
  transform: translateY(0);
}

.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}

.pill{
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color: rgba(234,240,255,.82);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}

.section{
  position:relative;
  z-index:2;
  padding:54px 18px;
}
.section-inner{
  width:min(980px, 92vw);
  margin:0 auto;
  padding:28px 26px;
  border-radius:22px;
  background: rgba(10,14,30,.32);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.section h2{
  margin:0 0 8px;
  font-size: clamp(18px, 2.6vw, 28px);
}
.section p{
  margin:0;
  color:var(--muted);
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .card{ animation:none; opacity:1; transform:none; }
  .badge .dot{ animation:none; }
}
