:root{
  --bg:#050914;
  --bg2:#071024;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.52);
  --accent:#26e6e3;
  --accent2:#2aa7ff;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 28px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 65% -10%, rgba(38,230,227,.20), transparent 55%),
    radial-gradient(700px 500px at 15% 0%, rgba(42,167,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  min-height:100vh;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}
.small{font-size:13px; color:var(--muted2)}
/* Nav */
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5,9,20,.82), rgba(5,9,20,.55));
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:20;
}
.navInner{max-width:var(--max); margin:0 auto; padding:0 24px; width:100%; display:flex; align-items:center; justify-content:space-between;}
.brand img{height:42px; display:block}
.navLinks{display:flex; gap:12px; align-items:center; color:var(--muted)}
.navLinks a{padding:10px 12px; border-radius:12px}
.navLinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.navLinks a.active{background:rgba(255,255,255,.08); color:var(--text); border:1px solid rgba(255,255,255,.10)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.18)}
.btnPrimary{
  border:none;
  background: linear-gradient(135deg, rgba(38,230,227,.95), rgba(42,167,255,.85));
  color:#04111e;
  box-shadow: 0 16px 45px rgba(38,230,227,.18);
}
.btnPrimary:hover{transform:translateY(-2px)}

/* Layout bits */
.pageHeader{padding:28px 0 10px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 4px rgba(38,230,227,.10);
}
h1{
  margin:14px 0 10px;
  font-size:52px;
  line-height:1.05;
  letter-spacing:-.8px;
}
h2{margin:0; font-size:28px; letter-spacing:-.3px}
h3{margin:0; font-size:18px}
.sub{margin:0 0 18px; color:var(--muted); font-size:18px; line-height:1.55; max-width:70ch}
.section{padding:26px 0}
.sectionHeader{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:14px}
.lead{margin:6px 0 0; color:var(--muted); max-width:78ch; line-height:1.65}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.card p{margin:8px 0 12px; color:var(--muted); line-height:1.6}
.list{margin:0; padding-left:18px; color:rgba(255,255,255,.72); line-height:1.85}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:800;
  color:rgba(255,255,255,.74);
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}

/* Hero */
.hero{
  padding:34px 0 18px;
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:center;
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.heroCard{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCardTop{padding:16px 16px 0; display:flex; align-items:center; justify-content:space-between; color:var(--muted); font-size:13px}
.pill{padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.20); color:rgba(255,255,255,.70); font-weight:800;}
.viz{
  height:220px;
  background:
    radial-gradient(220px 140px at 45% 45%, rgba(38,230,227,.22), transparent 60%),
    radial-gradient(220px 160px at 75% 20%, rgba(42,167,255,.20), transparent 65%),
    radial-gradient(240px 170px at 35% 90%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.18));
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.ring{
  width:160px; height:160px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.03);
  position:relative;
}
.ring::before{
  content:"";
  position:absolute; inset:-18px;
  border-radius:50%;
  border:1px dashed rgba(38,230,227,.35);
  transform:rotate(18deg);
}
.ring::after{
  content:"";
  position:absolute; inset:28px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,.05) 60%, transparent 70%);
  border:1px solid rgba(255,255,255,.12);
}
.heroCardBody{padding:16px}
.statRow{display:flex; gap:14px; flex-wrap:wrap}
.stat{
  flex:1; min-width:150px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.stat b{display:block; font-size:15px}
.stat span{color:var(--muted2); font-size:13px; display:block; margin-top:6px}

/* CTA Block */
.ctaBlock{
  margin:18px 0 10px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 280px at 25% 0%, rgba(38,230,227,.18), transparent 60%),
    radial-gradient(700px 280px at 90% 30%, rgba(42,167,255,.16), transparent 65%),
    rgba(255,255,255,.04);
  padding:20px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  box-shadow: var(--shadow);
}
.ctaBlock p{margin:6px 0 0; color:var(--muted); line-height:1.5}

/* Forms */
form{display:grid; gap:12px}
label{font-size:13px; color:rgba(255,255,255,.78); font-weight:800}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:var(--text);
  font-family:inherit;
}
textarea{min-height:120px; resize:vertical}

/* Footer */
.footer{
  padding:22px 0 40px;
  color:rgba(255,255,255,.55);
  font-size:13px;
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
}

/* Responsive */
@media (max-width: 980px){
  .hero{grid-template-columns: 1fr}
  h1{font-size:42px}
}
@media (max-width: 860px){
  .grid3{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
  .navLinks{display:none}
  .brand img{height:38px}
}


/* Brand logo sizing */
.header-brand img,
.nav-brand img,
.brand img,
.site-brand img{
  height: 54px;
  width: auto;
  display: block;
}

/* Slightly larger on desktop */
@media (min-width: 900px){
  .header-brand img,
  .nav-brand img,
  .brand img,
  .site-brand img{
    height: 64px;
  }
}

/* Make header spacing accommodate larger logo */
header, .site-header, .nav, .navbar{
  scroll-margin-top: 90px;
}


/* --- Motion (subtle, premium) --- */
.scanner-hero img{
  position: relative;
  z-index: 1;
  transform-origin: 50% 85%;
}

50% { transform: translateY(-10px); }
}
50% { transform: scaleX(.92); opacity: .58; }
}
50% { opacity: .70; filter: blur(3px); }
}


.scanner-hero{
  padding-bottom: 10px;
}


/* =====================================================
   HEADER LOGO (NEW FILE) — SIZE & LAYOUT
===================================================== */
header{
  overflow: visible;
}

.brand img, .header-brand img, .site-brand img{
  height: 88px;
  width: auto;
  display: block;
}

@media (min-width: 900px){
  .brand img, .header-brand img, .site-brand img{
    height: 104px;
  }
}


/* =====================================================
   RESPONSIVE OPTIMISATION (MOBILE + DESKTOP)
===================================================== */

:root{
  --container-max: 1120px;
  --gutter: 22px;
}

.container{
  width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

img{ max-width: 100%; height: auto; }

/* Type scale */
h1{ font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; }
h2{ font-size: clamp(22px, 2.4vw, 34px); line-height: 1.15; }
p, li{ font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65; }

/* Buttons touch targets */
.button, .btn, button, a.button{
  min-height: 44px;
  padding: 12px 16px;
}

/* Header + nav */
header{
  position: sticky;
  top: 0;
  z-index: 2000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Make nav wrap cleanly on smaller screens */
.nav, .navbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
}

nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

/* Mobile menu button */
.menu-btn{
  display:none;
  appearance:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 10px 12px;
  line-height: 0;
}
.menu-btn svg{ width: 22px; height: 22px; }

/* Hero layout safety */
.hero{
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero > *{
  min-width: 0;
}

/* Cards/grids should collapse */
.grid-2, .grid-3, .grid-4{
  display:grid;
  gap: 18px;
}
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

/* Product hero block */
.scanner-hero{
  width: min(460px, 100%);
  margin-inline: auto;
}

/* --- MOBILE --- */
@media (max-width: 860px){
  :root{ --gutter: 16px; }

  .nav, .navbar{ flex-wrap: wrap; }
  .menu-btn{ display:inline-flex; align-items:center; justify-content:center; margin-left:auto; }

  /* Collapsible nav */
  header nav{
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0 6px 0;
  }
  header.nav-open nav{ display:flex; }

  /* Make links easier to tap */
  header nav a{
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
  }
  header nav a:hover{
    background: rgba(255,255,255,.05);
  }

  /* Collapse grids */
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }

  /* Reduce hero spacing */
  .hero{ padding-top: 40px; padding-bottom: 40px; }
}

/* --- LARGE DESKTOP --- */
@media (min-width: 1200px){
  :root{ --container-max: 1180px; }
}

