:root{
  --bg:#020817;
  --bg2:#07112a;
  --card:#0d1730;
  --card2:#101d3d;
  --text:#f8fafc;
  --muted:#a9b7cf;
  --muted2:#7f8fa8;
  --line:rgba(148,163,184,.22);
  --brand:#3b82f6;
  --brand2:#60a5fa;
  --good:#22c55e;
  --warn:#f59e0b;
  --soon:#38bdf8;
  --shadow:0 24px 80px rgba(0,0,0,.38);
  --radius:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 15% 20%, rgba(59,130,246,.2), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(37,99,235,.22), transparent 35%),
    linear-gradient(180deg, #020817, #020817 55%, #061124);
  z-index:-3;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(96,165,250,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,.08) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom, black, transparent 75%);
  z-index:-2;
}

a{color:inherit}
code{color:#bfdbfe;background:rgba(96,165,250,.12);padding:2px 6px;border-radius:8px}
.site-shell{overflow:hidden}
.section-pad{max-width:1180px;margin:0 auto;padding:82px 24px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:min(1180px, calc(100% - 32px));
  margin:14px auto 0;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(2,8,23,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.logo-wrap{
  position:relative;
  width:50px;
  height:50px;
  border-radius:50%;
  display:grid;
  place-items:center;
}
.logo-wrap::before{
  content:"";
  position:absolute;
  inset:-10px;
  background:radial-gradient(circle, rgba(59,130,246,.42), transparent 65%);
  filter:blur(10px);
  opacity:.85;
}
.brand img,.footer-brand img{
  position:relative;
  width:46px;
  height:46px;
  object-fit:cover;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.55);
  background:#000;
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-size:17px;letter-spacing:.01em}
.brand-text small{font-size:11px;color:var(--muted);margin-top:4px}
.nav-cta,.primary-btn,.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.nav-cta{
  min-height:45px;
  padding:0 19px;
  background:linear-gradient(135deg, #2563eb, #38bdf8);
  color:white;
  box-shadow:0 12px 32px rgba(37,99,235,.32);
}
.nav-cta:hover,.primary-btn:hover,.secondary-btn:hover,.product-card:hover{transform:translateY(-3px)}

.hero{
  position:relative;
  min-height:700px;
  display:flex;
  align-items:center;
  padding-top:130px;
}
.hero-bg{position:absolute;inset:0;z-index:-1;overflow:hidden}
.grid-layer{
  position:absolute;
  inset:-10%;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(96,165,250,.14) 50%, transparent 51% 100%),
    linear-gradient(0deg, transparent 0 49%, rgba(96,165,250,.14) 50%, transparent 51% 100%);
  background-size:70px 70px;
  opacity:.38;
  animation:gridFloat 22s linear infinite;
}
.glow{position:absolute;border-radius:50%;filter:blur(12px);opacity:.85}
.glow-one{width:380px;height:380px;background:rgba(37,99,235,.25);right:8%;top:15%}
.glow-two{width:260px;height:260px;background:rgba(14,165,233,.18);left:5%;bottom:12%}
.orb{position:absolute;border-radius:50%;border:1px solid rgba(96,165,250,.25);box-shadow:0 0 80px rgba(37,99,235,.22)}
.orb-one{width:300px;height:300px;right:9%;top:190px;animation:floatOrb 8s ease-in-out infinite}
.orb-two{width:90px;height:90px;right:29%;top:150px;animation:floatOrb 7s ease-in-out infinite reverse}

.hero-content{max-width:900px}
.eyebrow{
  margin:0 0 16px;
  color:var(--brand2);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:900;
}
h1{
  max-width:980px;
  margin:0;
  font-size:clamp(48px, 7vw, 96px);
  line-height:.96;
  letter-spacing:-.07em;
}
.hero-subtitle{
  max-width:680px;
  margin:28px 0 0;
  color:#dbeafe;
  font-size:clamp(17px, 2.2vw, 23px);
  line-height:1.55;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:34px}
.primary-btn,.secondary-btn{min-height:56px;padding:0 22px}
.primary-btn{background:linear-gradient(135deg, #2563eb, #60a5fa);box-shadow:0 16px 40px rgba(37,99,235,.32)}
.secondary-btn{border-color:rgba(219,234,254,.34);background:rgba(15,23,42,.42);color:#eaf2ff}
.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:38px;
}
.hero-stats div{
  min-width:130px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(15,23,42,.55);
}
.hero-stats strong{display:block;font-size:28px;color:#fff}
.hero-stats span{display:block;color:var(--muted);font-size:13px;margin-top:4px}

.trust-strip{
  width:min(1180px, calc(100% - 48px));
  margin:-76px auto 0;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg, rgba(15,23,42,.96), rgba(17,31,64,.96));
  box-shadow:var(--shadow);
}
.trust-strip article{
  display:flex;
  gap:18px;
  padding:28px;
  border-right:1px solid var(--line);
}
.trust-strip article:last-child{border-right:0}
.trust-strip span{font-size:34px;line-height:1}
.trust-strip h2{font-size:20px;margin:0 0 6px}
.trust-strip p{margin:0;color:var(--muted);line-height:1.45}

.trusted{padding-top:70px;padding-bottom:34px}
.pill-row{display:flex;flex-wrap:wrap;gap:12px}
.pill-row span{
  display:inline-flex;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(96,165,250,.1);
  border:1px solid rgba(96,165,250,.22);
  color:#dbeafe;
  font-weight:800;
}
.section-heading{max-width:760px;margin-bottom:28px}
.section-heading h2{
  margin:0;
  font-size:clamp(32px, 4vw, 52px);
  line-height:1;
  letter-spacing:-.045em;
}
.section-heading p{margin:14px 0 0;color:var(--muted);font-size:17px;line-height:1.6}
.controls{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:14px;
  margin-bottom:26px;
}
input,select{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(2,8,23,.62);
  color:var(--text);
  outline:0;
}
input::placeholder{color:var(--muted2)}
input:focus,select:focus{border-color:rgba(96,165,250,.75);box-shadow:0 0 0 4px rgba(59,130,246,.14)}
.product-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
}
.product-card,.loading-card{
  min-height:310px;
  display:flex;
  flex-direction:column;
  position:relative;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(16,29,61,.96), rgba(11,20,41,.96));
  box-shadow:0 16px 48px rgba(0,0,0,.24);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover{border-color:rgba(96,165,250,.5);box-shadow:0 24px 70px rgba(37,99,235,.18)}
.product-icon{
  width:56px;height:56px;
  display:grid;place-items:center;
  border-radius:16px;
  background:rgba(59,130,246,.16);
  font-size:28px;
  margin-bottom:20px;
}
.product-category{font-size:12px;color:var(--brand2);font-weight:900;margin-bottom:8px}
.product-card h3{font-size:22px;line-height:1.12;margin:0 0 12px;letter-spacing:-.02em}
.product-card p{margin:0;color:var(--muted);line-height:1.5}
.product-actions{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:14px;padding-top:24px}
.badge{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:7px 11px;font-size:12px;font-weight:900;white-space:nowrap}
.badge.live{background:rgba(34,197,94,.14);color:#86efac}
.badge.beta{background:rgba(245,158,11,.14);color:#fbbf24}
.badge.soon{background:rgba(56,189,248,.16);color:#7dd3fc}
.product-link{font-weight:900;text-decoration:none;color:#fff;white-space:nowrap}
.product-link:hover{color:#93c5fd}

.about-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(15,23,42,.62);
  box-shadow:var(--shadow);
}
.about-card p{color:var(--muted);line-height:1.7;margin:0 0 16px}
.about-card p:last-child{margin-bottom:0}
.about-highlight{border:1px solid rgba(96,165,250,.25);border-radius:22px;background:rgba(96,165,250,.08);padding:24px}
.about-highlight h3{margin:0 0 12px}
.contact-card{
  text-align:center;
  padding:54px 24px;
  border:1px solid rgba(96,165,250,.25);
  border-radius:28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(37,99,235,.42), transparent 24%),
    linear-gradient(135deg, rgba(15,23,42,.95), rgba(15,35,87,.95));
  box-shadow:var(--shadow);
}
.contact-card h2{margin:0;font-size:clamp(32px,4vw,52px);letter-spacing:-.045em}
.contact-card p{max-width:650px;margin:14px auto 26px;color:var(--muted);font-size:17px;line-height:1.6}
.site-footer{border-top:1px solid var(--line);background:rgba(2,8,23,.88)}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
  padding:38px 24px;
  display:grid;
  grid-template-columns:1fr 190px 190px;
  gap:28px;
}
.footer-brand{display:flex;gap:14px;align-items:flex-start}
.footer-brand p{margin:7px 0 0;color:var(--muted)}
.site-footer h3{font-size:13px;margin:0 0 12px;color:#fff}
.site-footer a{display:block;color:var(--muted);text-decoration:none;margin:8px 0}
.site-footer a:hover{color:#fff}
.copyright{border-top:1px solid var(--line);padding:18px;text-align:center;color:var(--muted2);font-size:13px}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .65s ease, transform .65s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

@keyframes gridFloat{from{transform:translate3d(0,0,0)}to{transform:translate3d(70px,70px,0)}}
@keyframes floatOrb{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}

@media (max-width:1020px){
  .product-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .trust-strip{grid-template-columns:1fr;margin-top:-45px}
  .trust-strip article{border-right:0;border-bottom:1px solid var(--line)}
  .trust-strip article:last-child{border-bottom:0}
  .hero{min-height:640px}
}
@media (max-width:700px){
  .site-header{width:calc(100% - 20px);border-radius:22px;margin-top:10px}
  .brand-text small{display:none}
  .brand-text strong{font-size:15px}
  .nav-cta{min-height:42px;padding:0 14px}
  .section-pad{padding:64px 18px}
  .hero{padding-top:100px;min-height:620px}
  h1{font-size:clamp(42px, 13vw, 64px)}
  .hero-actions{display:grid;grid-template-columns:1fr;width:100%}
  .primary-btn,.secondary-btn{width:100%}
  .trust-strip{width:calc(100% - 28px)}
  .trust-strip article{padding:22px}
  .controls{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr}
  .about-card{grid-template-columns:1fr;padding:24px}
  .footer-inner{grid-template-columns:1fr}
}
