:root{
  --bg: #070A12;
  --card: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --muted2: rgba(255,255,255,0.5);
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --radius: 18px;

  --a: #7C3AED;
  --b: #22D3EE;
  --c: #A78BFA;
  --d: #60A5FA;

  --grad: linear-gradient(135deg, var(--a), var(--b));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

.muted{color:var(--muted)}

.bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background: radial-gradient(1200px 800px at 15% 10%, rgba(124,58,237,0.18), transparent 55%),
              radial-gradient(900px 700px at 90% 20%, rgba(34,211,238,0.16), transparent 50%),
              radial-gradient(700px 600px at 40% 95%, rgba(96,165,250,0.10), transparent 50%),
              #070A12;
}

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

.glow{
  position:absolute;
  width:520px;
  height:520px;
  filter: blur(60px);
  opacity:0.55;
  border-radius:999px;
}
.glow-1{
  left:-120px;
  top:180px;
  background: rgba(124,58,237,0.35);
}
.glow-2{
  right:-140px;
  top:90px;
  background: rgba(34,211,238,0.28);
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:0.2px;
}
.brand-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background: var(--grad);
  box-shadow: 0 0 0 6px rgba(124,58,237,0.15);
}
.brand-text{
  font-size:16px;
}
.brand-text span{
  color: rgba(255,255,255,0.75);
  font-weight:600;
}

.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
  color: var(--muted);
  font-weight:500;
}
.nav-links a{
  transition: 0.2s ease;
}
.nav-links a:hover{
  color: var(--text);
}

.nav-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:600;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border .15s ease;
  user-select:none;
}

.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

.btn-primary{
  background: var(--grad);
  color:#06101a;
  box-shadow: 0 16px 40px rgba(124,58,237,0.25);
}
.btn-secondary{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}

.arrow{font-weight:900}

.hamburger{
  display:none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding:10px 12px;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(255,255,255,0.85);
  margin:4px 0;
  border-radius:999px;
}

.hero{
  padding: 72px 0 42px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.pill-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--grad);
}

h1{
  margin:16px 0 12px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  letter-spacing:-0.8px;
}
.grad{
  background: var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.subtitle{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 52ch;
}

.cta{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}

.trust{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.trust-item{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 16px;
  border-radius: 16px;
  min-width: 170px;
}
.trust-num{
  font-size:18px;
  font-weight:800;
}
.trust-text{
  margin-top:4px;
  color: var(--muted2);
  font-size:13px;
}

.hero-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 250px at 30% 0%, rgba(124,58,237,0.35), transparent 60%),
              radial-gradient(500px 250px at 90% 10%, rgba(34,211,238,0.28), transparent 55%);
  opacity:0.9;
  z-index:-1;
}

.hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}
.chip{
  font-size:12px;
  font-weight:800;
  letter-spacing:0.7px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.status{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--muted);
  font-weight:700;
  font-size:12px;
}
.status-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.12);
}

.hud{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.hud-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  font-size:13px;
}
.hud-label{color: var(--muted)}
.hud-value{
  font-weight:800;
  letter-spacing:0.4px;
}

.scan{
  position:relative;
  height: 180px;
  margin: 14px 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  overflow:hidden;
}
.scan-line{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  top:0;
  background: var(--grad);
  animation: scan 2.2s linear infinite;
  opacity:0.95;
}
@keyframes scan{
  0%{transform: translateY(0)}
  100%{transform: translateY(180px)}
}
.scan-shape{
  position:absolute;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(124,58,237,0.10);
  left: 22px;
  top: 28px;
  transform: rotate(14deg);
}
.scan-shape.small{
  width: 78px;
  height: 78px;
  left: 160px;
  top: 56px;
  background: rgba(34,211,238,0.10);
  transform: rotate(-10deg);
}
.scan-shape.tiny{
  width: 52px;
  height: 52px;
  left: 260px;
  top: 92px;
  background: rgba(96,165,250,0.10);
  transform: rotate(18deg);
}

.hero-card-bottom{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.mini{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 12px;
}
.mini-title{
  font-size:12px;
  font-weight:800;
}
.mini-sub{
  margin-top:4px;
  font-size:12px;
  color: var(--muted);
}

.strip{
  padding: 18px 0 10px;
}
.strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.strip-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.strip-tags span{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}

.section{
  padding: 72px 0;
}
.section.alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head{
  max-width: 680px;
  margin-bottom: 26px;
}
.section-head h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:-0.4px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.card .icon{
  font-size:22px;
}
.card h3{
  margin: 12px 0 8px;
  font-size:18px;
}
.card p{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.55;
}
.card ul{
  margin:0;
  padding-left: 18px;
  color: var(--muted2);
  line-height:1.7;
}

.tech-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:start;
}
.features{
  margin-top: 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.feature{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 14px;
}
.badge{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight:900;
  color: rgba(255,255,255,0.85);
}
.feature h4{
  margin:0 0 6px;
}
.feature p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
}

.panel{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel-title{
  font-weight:900;
  letter-spacing:0.6px;
  margin-bottom: 12px;
}
.panel-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.panel-item{
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.p-title{
  font-weight:800;
}
.p-sub{
  margin-top:6px;
  color: var(--muted);
  font-size:13px;
}

.panel-note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  display:flex;
  align-items:center;
  gap:10px;
}
.pulse{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--grad);
  box-shadow: 0 0 0 8px rgba(124,58,237,0.12);
}

.usecases{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.usecase{
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.usecase h3{
  margin:0 0 8px;
  font-size:16px;
}
.usecase p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.contact-cards{
  margin-top: 16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.contact-card{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  min-width: 220px;
}
.c-title{
  font-weight:800;
}
.c-sub{
  margin-top:6px;
  color: var(--muted);
}

.form{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.form label{
  display:block;
  margin-bottom: 12px;
}
.form span{
  display:block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.form input, .form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(34,211,238,0.35);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.10);
}
.form-note{
  margin: 12px 0 0;
  color: var(--muted2);
  font-size:12px;
}

.footer{
  padding: 40px 0 20px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  flex-wrap:wrap;
}
.footer-right{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color: var(--muted);
}
.footer-right a:hover{color:var(--text)}

.footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.brand.small .brand-text{font-size:14px}

@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr; gap:18px}
  .tech-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .usecases{grid-template-columns: 1fr 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .nav-links{display:none}
  .hamburger{display:block}
}

.mobile-open .nav-links{
  display:flex !important;
  position:absolute;
  left: 4%;
  right: 4%;
  top: 62px;
  flex-direction:column;
  padding: 14px;
  background: rgba(7,10,18,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  gap:12px;
}
