:root{
  --bg:#0e0f14;
  --panel:#121522;
  --panel2:#0f1220;
  --text:#eef0ff;
  --muted:rgba(238,240,255,.70);
  --muted2:rgba(238,240,255,.55);
  --line:rgba(255,255,255,.10);
  --blue:#2f77ff;
  --blue2:#1e52c9;
  --glow:rgba(47,119,255,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 800px at 50% 10%, rgba(47,119,255,.16), transparent 60%),
              radial-gradient(900px 600px at 10% 80%, rgba(47,119,255,.10), transparent 55%),
              linear-gradient(180deg, #090a10 0%, var(--bg) 45%, #070811 100%);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.noise{
  pointer-events:none;
  position:fixed; inset:0;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="140" height="140" filter="url(%23n)" opacity=".18"/></svg>');
  opacity:.12;
  mix-blend-mode: overlay;
}

.topbar{
  position:sticky; top:0; z-index:20;
  display:flex; align-items:center; gap:14px;
  padding:14px 16px;
  background: rgba(10,12,18,.62);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}

.hamburger{
  width:44px; height:44px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:14px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.hamburger span{
  width:18px; height:2px; background: rgba(238,240,255,.88);
  border-radius:2px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  cursor:pointer;
  user-select:none;
}
.brand-icon{ width:34px; height:34px; border-radius:10px; filter: drop-shadow(0 0 16px var(--glow)); }
.brand-name{ font-weight:800; letter-spacing:2px; }
.brand-sub{ font-size:12px; color:var(--muted2); margin-top:2px; }

.container{ max-width: 1080px; margin: 0 auto; padding: 22px 16px 40px; }

.hero{
  padding: 26px 10px 18px;
  text-align:center;
}
.hero-logo{
  width: 220px;
  max-width: 60vw;
  filter: drop-shadow(0 0 26px var(--glow));
}
.hero-title{
  margin: 16px 0 8px;
  font-size: 46px;
  letter-spacing: 6px;
}
.hero-tag{
  margin:0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions{
  margin: 18px 0 10px;
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}

.pill-row{
  margin-top: 14px;
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
}
.pill{
  padding: 8px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 13px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.btn.primary{
  border-color: rgba(47,119,255,.55);
  background: linear-gradient(135deg, rgba(47,119,255,.22), rgba(47,119,255,.10));
  box-shadow: 0 18px 40px rgba(47,119,255,.12), 0 14px 30px rgba(0,0,0,.25);
}

.grid{
  display:grid;
  grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) );
  gap: 14px;
  margin-top: 18px;
}

.card{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.card-link{ text-decoration:none; color:inherit; position:relative; }
.card-title{ font-weight:800; letter-spacing:.6px; margin-bottom:6px; }
.card-text{ color: var(--muted); line-height: 1.5; }
.card-cta{
  margin-top: 12px;
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(47,119,255,.45);
  background: rgba(47,119,255,.10);
  color: rgba(238,240,255,.92);
  font-size: 12px;
}

.page-head h1{ margin: 10px 0 6px; letter-spacing: 1px; }
.page-head p{ margin:0 0 16px; color: var(--muted); }

.stack{ display:flex; flex-direction:column; gap:14px; }
.panel{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(18,21,34,.72);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.panel h2{ margin:0 0 10px; }
.panel p, .panel li{ color: var(--muted); line-height:1.55; }
.subtle{ color: var(--muted2); }

.form{ display:flex; flex-direction:column; gap:10px; margin-top: 10px; }
label{ font-size: 13px; color: var(--muted2); }
input, textarea{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(47,119,255,.55); box-shadow: 0 0 0 3px rgba(47,119,255,.14); }

.footer{
  padding: 20px 16px;
  border-top: 1px solid var(--line);
  background: rgba(10,12,18,.50);
  text-align:center;
  color: var(--muted2);
}
.footer-sub{ margin-top: 6px; font-size: 12px; color: var(--muted2); }

/* Drawer */
.drawer{
  position: fixed; top: 0; left: -320px;
  width: 300px; max-width: 86vw; height: 100%;
  background: rgba(14,16,24,.95);
  border-right: 1px solid var(--line);
  box-shadow: 18px 0 60px rgba(0,0,0,.45);
  z-index: 40;
  transition: left .22s ease;
  display:flex; flex-direction:column;
}
.drawer.open{ left: 0; }
.drawer-head{
  display:flex; align-items:center; gap:10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.drawer-icon{ width: 36px; height: 36px; filter: drop-shadow(0 0 16px var(--glow)); }
.drawer-title{ font-weight:900; letter-spacing:2px; }
.drawer-sub{ font-size:12px; color: var(--muted2); margin-top:2px; }
.drawer-close{
  margin-left:auto;
  width:40px; height:40px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
}
.drawer-nav{ padding: 10px 10px 0; display:flex; flex-direction:column; gap:6px; }
.nav-link{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(238,240,255,.9);
  text-decoration:none;
  background: transparent;
}
.nav-link:hover{ background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.nav-link.active{ background: rgba(47,119,255,.12); border-color: rgba(47,119,255,.30); }

.drawer-foot{
  margin-top:auto;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}
.tiny{ font-size: 12px; color: var(--muted2); }

.backdrop{
  position: fixed; inset:0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease;
  z-index: 35;
}
.backdrop.show{ opacity: 1; pointer-events:auto; }

@media (max-width: 520px){
  .hero-title{ font-size: 40px; letter-spacing: 5px; }
  .hero-logo{ width: 200px; }
  .brand-sub{ display:none; }
}
