/* Lumitech – refreshed look & feel */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --bg0:#05070b;
  --bg1:#0b1220;
  --surface:rgba(255,255,255,.06);
  --surface2:rgba(255,255,255,.09);
  --stroke:rgba(255,255,255,.14);
  --stroke2:rgba(255,255,255,.22);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --muted2:rgba(234,242,255,.55);
  --accent:#03B1D5;
  --accent2:#7C3AED;
  --good:#22c55e;
  --warn:#f59e0b;
  --shadow:0 12px 50px rgba(0,0,0,.35);
  --radius:22px;
  --radius-sm:16px;
  --max:1180px;
  --pad:24px;
}

*{box-sizing:border-box}
html{color-scheme:dark}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg0),var(--bg1) 60%, #070b12);
  overflow-x:hidden;
}

/* animated ambient glow */
body::before{
  content:"";
  position:fixed;
  inset:-35vmax;
  z-index:-2;
  background:
    radial-gradient(closest-side at 20% 20%, rgba(3,177,213,.45), transparent 60%),
    radial-gradient(closest-side at 85% 10%, rgba(124,58,237,.35), transparent 65%),
    radial-gradient(closest-side at 70% 85%, rgba(34,197,94,.18), transparent 55%);
  filter:blur(30px);
  opacity:.75;
  animation:glowShift 16s ease-in-out infinite;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.2;
}

@keyframes glowShift{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(2.5%, -2%, 0) scale(1.04)}
}

img, video{max-width:100%; display:block}
a{color:inherit}

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

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 14px;
  background:#000;
  color:#fff;
  border-radius:12px;
  z-index:9999;
}
.skip:focus{left:12px}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter: blur(16px);
  background:rgba(7,10,16,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
header.scrolled{background:rgba(7,10,16,.72)}

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

.brandLockup{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brandLockup img{height:144px; width:auto}
.brandName{
  font-weight:800;
  letter-spacing:-.5px;
  font-size:16px;
}

nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
nav a:hover{background:rgba(255,255,255,.06); color:var(--text); transform:translateY(-1px)}
nav a.active{
  background:rgba(3,177,213,.10);
  color:var(--text);
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}

.hamburger{
  display:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  font-size:18px;
  cursor:pointer;
}

.mobile{
  display:none;
  padding:0 0 14px;
}
.mobile a{
  display:block;
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  margin-bottom:10px;
}
.mobile.open{display:block}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px); border-color:rgba(255,255,255,.24); background:rgba(255,255,255,.08)}
.btn:active{transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(135deg, rgba(3,177,213,.95), rgba(124,58,237,.75));
  border-color:rgba(255,255,255,.18);
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(3,177,213,1), rgba(124,58,237,.88))}
.btn.small{padding:10px 14px; font-size:13px}

/* Cards & text */
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter: blur(12px);
}
.pad{padding:22px}

h1,h2,h3{margin:0 0 12px; line-height:1.08; letter-spacing:-.7px}
h1{font-size:clamp(34px, 4vw, 54px)}
h2{font-size:clamp(24px, 2.5vw, 34px)}
.subhead{margin:0 0 10px; font-size:16px; color:var(--text)}

p{margin:0 0 12px; color:var(--muted)}
.lead{font-size:17px; color:rgba(234,242,255,.85)}
.tight{margin-bottom:10px}
.microcopy{color:var(--muted2); font-size:13px}

.clean{list-style:none; padding:0; margin:0}
.clean li{margin:10px 0; color:var(--muted)}
.clean b{color:var(--text)}

.icon{
  width:42px; height:42px;
  border-radius:14px;
  display:inline-grid;
  place-items:center;
  background:rgba(3,177,213,.12);
  border:1px solid rgba(3,177,213,.25);
  margin-right:10px;
}
.icon svg{width:22px; height:22px; fill:var(--text); opacity:.95}

.itemTitle{
  display:flex;
  align-items:center;
  font-weight:800;
  letter-spacing:-.2px;
  margin-bottom:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:rgba(234,242,255,.9);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 12px;
  border-radius:999px;
}
.badgeDot{
  width:10px; height:10px; border-radius:999px;
  background:var(--good);
  box-shadow:0 0 0 6px rgba(34,197,94,.12);
}

.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,242,255,.85);
  font-weight:600;
  font-size:13px;
}

/* Layout helpers */
.section{padding:72px 0}
.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; margin-top:18px}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:18px}

/* HERO */
.hero{
  position:relative;
  padding:84px 0 64px;
  overflow:hidden;
}
.heroBg{
  position:absolute;
  inset:-2px;
  z-index:-1;
}
.heroBg video,
.heroBg img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.1);
  opacity:.35;
}
.heroBg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 18% 28%, rgba(3,177,213,.32), transparent 60%),
    radial-gradient(780px 420px at 78% 22%, rgba(124,58,237,.26), transparent 62%),
    linear-gradient(180deg, rgba(5,7,11,.35), rgba(5,7,11,.85));
}

.eyebrow{
  color:rgba(234,242,255,.78);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:700;
  font-size:12px;
  margin-bottom:12px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

/* HERO SPLASH (full screen) */
.hero--splash{
  min-height:100vh;
  padding:120px 0 90px;
  display:flex;
  align-items:center;
}
.hero--splash .heroBg img{
  opacity:.86;
  filter:contrast(1.05) brightness(1.18);
}
.hero--splash .heroBg::after{
  background:
    radial-gradient(900px 520px at 22% 28%, rgba(3,177,213,.22), transparent 62%),
    radial-gradient(900px 520px at 78% 22%, rgba(124,58,237,.18), transparent 64%),
    linear-gradient(180deg, rgba(5,7,11,.34), rgba(5,7,11,.86));
}
.splashInner{max-width:1100px;}
.splashBox{
  max-width:860px;
  background:rgba(5,7,11,.38);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:28px 28px 22px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
}
.hero--splash .lead{max-width:70ch;}

.splashBrand{
  margin:0 0 12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(234,242,255,.9);
  opacity:.95;
}
.scrollHint{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  margin-top:22px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.scrollHint:hover{
  transform:translateY(2px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
}
.scrollHint span{
  width:10px;
  height:10px;
  border-right:2px solid rgba(234,242,255,.92);
  border-bottom:2px solid rgba(234,242,255,.92);
  transform:rotate(45deg);
  margin-top:-2px;
}


.heroCard{position:relative; overflow:hidden}
.heroVisual{
  position:relative;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.heroVisual img, .heroVisual video{
  width:100%; height:100%; object-fit:cover;
}
.heroCardBody{padding:18px 18px 20px}

.kpis{display:grid; gap:12px; margin-top:12px}
.kpi b{display:block; margin-bottom:3px}
.kpi span{color:var(--muted); font-size:13.5px}
.note{color:var(--muted2); font-size:13px}

.rotator .rotatorItem{position:absolute; inset:0; opacity:0; transform:scale(1.03); transition:opacity .8s ease, transform 1.2s ease}
.rotator .rotatorItem.is-active{opacity:1; transform:scale(1)}

/* Products */
.product{display:grid; grid-template-columns: 160px 1fr; gap:16px; align-items:stretch}
.productImg{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.productImg img{width:100%; height:100%; object-fit:cover}
.productBody strong{display:block; font-size:16px; margin-bottom:6px}
.productBody span{display:block; color:var(--muted)}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* Steps */
.steps{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:18px}
.stepNum{
  display:inline-grid;
  place-items:center;
  width:30px; height:30px;
  border-radius:999px;
  background:rgba(3,177,213,.16);
  border:1px solid rgba(3,177,213,.28);
  margin-right:10px;
  font-weight:900;
}

.callout{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:rgba(234,242,255,.85);
}

/* Gallery */
.gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
}
.gallery figure{
  margin:0;
  grid-column:span 4;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
  position:relative;
  cursor:zoom-in;
}
.gallery figure.wide{grid-column:span 8}
.gallery .span12{grid-column:span 12}
.gallery .span8{grid-column:span 8}
.gallery .span6{grid-column:span 6}
.gallery .span4{grid-column:span 4}
.gallery img, .gallery video{width:100%; height:100%; object-fit:cover; aspect-ratio: 16/10}
.gallery figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:12px 12px 10px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  color:rgba(234,242,255,.9);
  font-weight:700;
  font-size:13px;
}
.gallery figure:hover img{transform:scale(1.03)}
.gallery img{transition:transform .35s ease}

/* CTA / forms */
.cta{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
form{display:grid; gap:10px; margin-top:10px}
/* honeypot anti-spam field (hidden off-screen) */
.hp{position:absolute; left:-9999px; width:1px; height:1px; opacity:0; pointer-events:none}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus{border-color:rgba(3,177,213,.55); box-shadow:0 0 0 6px rgba(3,177,213,.10)}

/* Footer */
footer{
  padding:34px 0 44px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.15);
}
.footerRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
footer a{color:rgba(234,242,255,.8); text-decoration:none}
footer a:hover{color:var(--text)}

/* Scoreborden pricing */
.pricingGrid{display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; margin-top:18px}
.priceTop{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.price{font-size:34px; font-weight:900; letter-spacing:-1px; margin:8px 0}
.priceSmall{color:var(--muted2); font-size:13px}
.sep{border:0; border-top:1px solid rgba(255,255,255,.1); margin:14px 0}
.disclaimer{margin-top:14px; color:rgba(234,242,255,.55); font-size:13px}

/* Trust row */
.trustRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.trustPill{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(3,177,213,.10);
  border:1px solid rgba(3,177,213,.22);
  color:rgba(234,242,255,.9);
  font-weight:700;
  font-size:13px;
}

/* Inline logos */
.inlineLogo{display:inline-flex; vertical-align:middle; margin-left:6px}
.inlineLogo svg{width:18px; height:18px; fill:rgba(234,242,255,.85)}

/* Reveal animations */
.reveal{opacity:0; transform:translateY(12px); transition:opacity .7s ease, transform .7s ease}
.reveal.is-visible{opacity:1; transform:none}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}
.lightbox.open{display:flex}
.lightboxInner{
  width:min(1100px, 100%);
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
  background:rgba(10,14,22,.85);
}
.lightboxInner img, .lightboxInner video{width:100%; height:auto; display:block}
.lightboxBar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(234,242,255,.8);
  font-size:13px;
}
.lightboxClose{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}

/* Responsiveness */
@media (max-width: 980px){
  nav{display:none}
  .hamburger{display:inline-flex}
  .brandLockup img{height:104px}
  .heroGrid{grid-template-columns:1fr;}
  .hero--splash{padding:108px 0 72px;}
  .splashBox{padding:22px 18px 16px; border-radius:20px;}
  .hero--splash .lead{max-width:none;}
  .grid3{grid-template-columns:1fr;}
  .grid2{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .cta{grid-template-columns:1fr;}
  .product{grid-template-columns:1fr;}
  .gallery figure{grid-column:span 6}
  .gallery figure.wide{grid-column:span 12}
  .pricingGrid{grid-template-columns:1fr;}
}
@media (max-width: 560px){
  .gallery{gap:12px}
  .gallery figure{grid-column:span 12}
  .btn{width:100%}
  .brandLockup img{height:96px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  body::before{animation:none}
  .reveal{transition:none}
  .btn{transition:none}
  .rotator .rotatorItem{transition:none}
}

/* ----------------
   Backward compat tweaks for old inline styles
---------------- */
.featureMedia{width:min(var(--max), calc(100% - 2*var(--pad))); margin:0 auto 64px}
.featureMediaSmall{width:min(900px, calc(100% - 2*var(--pad))); margin:14px auto 0}




/* Extra component styles */
.cardMedia{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  aspect-ratio:16/9;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
}
.btn.ghost:hover{ border-color:rgba(255,255,255,.32); }

.clean.checklist li{
  position:relative;
  padding-left:22px;
}
.clean.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  opacity:.9;
}

/* Mega cards (home) */
.megaGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 980px){
  .megaGrid{ grid-template-columns:1fr; }
}

.megaCard{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  min-height:200px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  text-decoration:none;
  isolation:isolate;
  transition:transform .18s ease, border-color .18s ease;
}
.megaCard::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--bg);
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.02);
  transform:scale(1.02);
  z-index:-2;
}
.megaCard::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3,7,11,.25), rgba(3,7,11,.86));
  z-index:-1;
}
.megaCard:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.22);
}
.megaTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.megaTag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.2px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}
.megaArrow{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}
.megaTitle{
  font-size:22px;
  font-weight:800;
  letter-spacing:-.02em;
}
.megaText{
  opacity:.9;
  margin-top:6px;
  max-width:46ch;
}

/* Mark current page in menu */
nav a.current{
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:.38rem .7rem;
}

/* Small helper */
.tight{ max-width:62ch; }
