:root{
  --bg: #0b0f16;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.14);
  --brand: #6de3ff;
  --brand2:#9cffc6;
  --shadow: 0 24px 64px rgba(0,0,0,.55);
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(109,227,255,.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(156,255,198,.14), transparent 55%),
    radial-gradient(900px 700px at 30% 95%, rgba(109,227,255,.10), transparent 60%),
    linear-gradient(180deg, #05070b 0%, var(--bg) 55%, #05070b 100%);
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(1120px, 92vw); margin:0 auto; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(5,7,11,.55);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0; }
.brand{ display:flex; align-items:center; gap:12px; min-width: 220px; }
.brand img{ width:40px; height:40px; object-fit:contain; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
.brand strong{ letter-spacing:.3px; font-weight:700; }
.nav{
  display:flex; align-items:center; gap:18px;
  font-weight:600;
  color: var(--muted);
}
.nav a{ padding:8px 10px; border-radius:10px; }
.nav a:hover{ background: rgba(255,255,255,.06); text-decoration:none; color: var(--text); }

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

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:11px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); text-decoration:none; }
.btn.primary{
  border-color: rgba(109,227,255,.45);
  background: linear-gradient(135deg, rgba(109,227,255,.18), rgba(156,255,198,.12));
}
.btn.primary:hover{ border-color: rgba(156,255,198,.55); }
.btn.ghost{ box-shadow:none; }

.menu-btn{ display:none; }

/* Hero */
.hero{ padding:56px 0 30px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight:700;
  letter-spacing:.2px;
}
.dot{ width:9px; height:9px; border-radius:99px; background: var(--brand); box-shadow: 0 0 0 5px rgba(109,227,255,.10); }
.hero h1{ font-size: clamp(28px, 3.2vw, 44px); line-height:1.12; margin:14px 0 10px; }
.hero p{ margin:0 0 18px; color: var(--muted); font-size: 16px; line-height:1.55; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.hero-meta{ color: var(--muted); font-weight:700; margin-top:16px; }

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  box-shadow: var(--shadow);
}
.hero-card{ padding:18px; display:flex; flex-direction:column; gap:14px; }
.hero-card h3{ margin:0; font-size:16px; letter-spacing:.2px; }
.pills{ display:flex; flex-wrap:wrap; gap:8px; }
.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
  color: var(--muted);
  font-size:12px;
}
.stats{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.stat{ padding:12px; border-radius:16px; border:1px solid var(--line); background: rgba(255,255,255,.05); }
.stat b{ display:block; font-size:18px; }
.stat span{ color:var(--muted); font-weight:700; font-size:12px; }

.divider{ height:1px; background: var(--line); margin:22px 0; }

/* Sections */
.section{ padding:40px 0; }
.section h2{ margin:0 0 10px; font-size:24px; }
.section p.lead{ margin:0 0 18px; color: var(--muted); line-height:1.6; }

.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }

.tile{ padding:16px; border-radius:18px; border:1px solid var(--line); background: rgba(255,255,255,.04); }
.tile h3{ margin:0 0 6px; font-size:16px; }
.tile p{ margin:0 0 10px; color: var(--muted); line-height:1.55; }
.tags{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{ font-size:12px; font-weight:800; color:rgba(255,255,255,.75); border:1px solid var(--line); background: rgba(255,255,255,.05); padding:7px 9px; border-radius:999px; }

.list{ margin:0; padding-left:18px; color: var(--muted); line-height:1.7; }

/* Forms */
.form{
  display:grid;
  gap:10px;
}
.field{ display:flex; flex-direction:column; gap:6px; }
label{ font-weight:800; color: rgba(255,255,255,.82); font-size:12px; letter-spacing:.2px; }
input, select, textarea{
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding:12px 12px;
  outline:none;
  font: inherit;
}
textarea{ min-height:110px; resize:vertical; }
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.45); }
select{ cursor:pointer; }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.small{ font-size:12px; color: var(--muted); line-height:1.45; }

/* Footer */
.footer{ padding:22px 0 34px; border-top:1px solid var(--line); background: rgba(5,7,11,.55); }
.footer-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.footer-brand{ display:flex; gap:12px; align-items:flex-start; }
.footer-brand img{ width:34px; height:34px; object-fit:contain; }
.footer-brand p{ margin:6px 0 0; color: var(--muted); max-width: 560px; }
.footer-links{ display:flex; flex-direction:column; gap:10px; color: var(--muted); font-weight:700; }
.footer-links a{ padding:6px 10px; border-radius:10px; }
.footer-links a:hover{ background: rgba(255,255,255,.06); text-decoration:none; color: var(--text); }

/* Mobile */
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(3, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .header-cta{ gap:8px; }
  .form-row{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .footer-top{ flex-direction:column; }
}

/* Drawer */
.drawer{
  position:fixed; inset:0; z-index:60;
  background: rgba(0,0,0,.55);
  display:none;
}
.drawer[aria-hidden="false"]{ display:block; }
.drawer-panel{
  position:absolute; top:0; right:0; height:100%; width:min(360px, 88vw);
  background: rgba(7,10,15,.92);
  border-left:1px solid var(--line);
  backdrop-filter: blur(14px);
  padding:16px;
}
.drawer-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.drawer-nav{ display:flex; flex-direction:column; gap:6px; margin-top:10px; }
.drawer-nav a{ padding:12px 12px; border-radius:14px; border:1px solid var(--line); background: rgba(255,255,255,.04); color: var(--text); font-weight:800; }
.drawer-nav a:hover{ background: rgba(255,255,255,.07); text-decoration:none; }

.notice{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(156,255,198,.25);
  background: rgba(156,255,198,.08);
  color: rgba(255,255,255,.82);
  font-weight:700;
  display:none;
}
.notice.show{ display:block; }
