:root{
  --bg:#060816;
  --bg2:#0b0f2a;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.14);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --accent1:#7c3aed; /* purple */
  --accent2:#06b6d4; /* cyan */
  --accent3:#f59e0b; /* amber */
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 0%, #141a4d 0%, var(--bg) 55%, #050615 100%);
  overflow-x:hidden;
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding: 18px 18px}
.narrow{max-width:840px}

/* background blobs */
.blob{
  position:fixed; inset:auto;
  width:520px; height:520px;
  filter: blur(50px);
  opacity:.35; z-index:-1;
  border-radius: 999px;
}
.blob-1{top:-160px; left:-160px; background: radial-gradient(circle at 30% 30%, var(--accent2), transparent 60%)}
.blob-2{top:140px; right:-220px; background: radial-gradient(circle at 30% 30%, var(--accent1), transparent 60%)}
.blob-3{bottom:-220px; left:10%; background: radial-gradient(circle at 30% 30%, var(--accent3), transparent 60%)}

/* header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,8,22,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{display:flex; align-items:center; gap:12px}
.brand-badge{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  font-weight:900;
}
.brand-title{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:12px; color: var(--muted); margin-top:-2px}

.menu{display:flex; align-items:center; gap:18px}
.menu a{font-weight:650; font-size:14px; color: rgba(234,240,255,.9)}
.menu a:hover{opacity:.9}
.menu .cta{
  padding:10px 14px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  box-shadow: 0 12px 34px rgba(0,0,0,.38);
}

/* hamburger */
.menu-btn{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius:14px;
  backdrop-filter: blur(10px);
}
.menu-btn span{
  display:block; height:2px; width:18px; margin:4px auto;
  background: rgba(234,240,255,.9);
  border-radius:99px;
}

/* hero */
.hero{padding: 44px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(234,240,255,.85);
  backdrop-filter: blur(10px);
  font-size:13px;
}
.hero-title{
  margin-top:12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  letter-spacing:-0.6px;
  font-weight: 950;
}
.grad-text{
  background: linear-gradient(90deg, var(--accent3), var(--accent2), var(--accent1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-desc{margin-top:12px; color: var(--muted); max-width:58ch}

.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.95);
  font-weight:800;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
}
.btn.ghost{background: rgba(255,255,255,.04)}

.hero-cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini-card{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.mini-card.wide{grid-column: 1 / -1}
.mini-icon{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(6,182,212,.25), rgba(124,58,237,.25));
  border:1px solid rgba(255,255,255,.12);
}
.mini-title{font-weight:900; font-size:12px; color: rgba(234,240,255,.9)}
.mini-text{font-size:13px; color: rgba(234,240,255,.75)}

/* glass big card */
.glass-card{
  padding:18px;
  border-radius:26px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.glass-top{display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
.glass-title{font-weight:950}
.glass-sub{font-size:13px; color: var(--muted)}
.sparkle{
  width:42px;height:42px;border-radius:16px;
  display:grid;place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(245,158,11,.5), rgba(6,182,212,.22));
  border:1px solid rgba(255,255,255,.14);
}
.feature-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
.feature{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px;
  border-radius:20px;
  background: rgba(0,0,0,.14);
  border:1px solid rgba(255,255,255,.10);
}
.f-ic{
  width:40px;height:40px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(6,182,212,.25), rgba(245,158,11,.22));
  border:1px solid rgba(255,255,255,.12);
}
.f-title{font-weight:900}
.f-desc{font-size:13px; color: var(--muted)}
.glass-bottom{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/* sections */
.section{padding: 46px 0}
.section.alt{
  background: radial-gradient(900px 500px at 10% 0%, rgba(6,182,212,.12), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(124,58,237,.12), transparent 55%),
              rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{margin-bottom:16px}
.section-head h2{font-size:28px; font-weight:950}
.section-head p{color: var(--muted); margin-top:6px}
.section-head.center{text-align:center}

.grid.cards{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  padding:16px;
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.card-ic{
  width:44px;height:44px;border-radius:18px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(245,158,11,.30), rgba(6,182,212,.25));
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
}
.card h3{font-weight:950}
.card p{margin-top:6px; color: var(--muted); font-size:13px}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items:start;
}
.tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.tag{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  color: rgba(234,240,255,.85);
}
.quote-box{
  padding:18px;
  border-radius:26px;
  background: linear-gradient(135deg, rgba(245,158,11,.16), rgba(6,182,212,.10));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.quote-box h3{font-weight:950}
.quote-box p{color: var(--muted); margin:8px 0 12px}

.grid.stats{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat{
  padding:16px;
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.stat-num{font-size:26px; font-weight:950}
.stat-title{margin-top:6px; font-weight:900}
.stat-text{margin-top:6px; color: var(--muted); font-size:13px}

/* contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.contact-card{
  margin-top:12px;
  padding:16px;
  border-radius:24px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.contact-row{display:flex; gap:12px; padding:10px 0}
.contact-row + .contact-row{border-top:1px solid rgba(255,255,255,.06)}
.c-ic{
  width:40px;height:40px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(6,182,212,.22));
  border:1px solid rgba(255,255,255,.12);
}
.c-title{font-weight:900; font-size:13px}
.c-text{color: var(--muted); font-size:13px}
.c-text a{color: rgba(234,240,255,.9); text-decoration:underline}

.map-wrap{margin-top:14px}
.map{
  width:100%;
  height:260px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background: rgba(0,0,0,.15);
}
.hint{font-size:12px; color: rgba(234,240,255,.6); margin-top:6px}

.form.glass{
  padding:18px;
  border-radius:26px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.form h3{font-weight:950; margin-bottom:12px}
label span{display:block; font-size:12px; color: rgba(234,240,255,.75); margin-bottom:6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(234,240,255,.95);
  outline:none;
}
textarea{resize:vertical}
input::placeholder, textarea::placeholder{color: rgba(234,240,255,.45)}
label{display:block; margin-bottom:12px}
.form-msg{margin:10px 0 0; font-weight:800}
.tiny{margin-top:10px; font-size:12px; color: rgba(234,240,255,.55)}

/* footer */
.footer{
  padding:18px 0 30px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; align-items:center;
  color: rgba(234,240,255,.7);
  font-size:13px;
}
.footer-links{display:flex; gap:10px; align-items:center}
.footer-links a{text-decoration:underline; color: rgba(234,240,255,.85)}
.footer-links span{opacity:.6}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .split{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .grid.cards{grid-template-columns:1fr}
  .grid.stats{grid-template-columns:1fr}
  .hero-cards{grid-template-columns:1fr}
  .menu-btn{display:block}
  .menu{
    position:absolute;
    top:66px; right:18px;
    display:none;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius:20px;
    background: rgba(6,8,22,.75);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    width:min(240px, calc(100vw - 36px));
  }
  .menu.active{display:flex}
  .menu .cta{width:100%; text-align:center}
}
