*{box-sizing:border-box}
:root{
  --bg:#0c1014;
  --panel:#141a20;
  --text:#f5f7f8;
  --muted:#aeb7bf;
  --line:#27313a;
  --accent:#b7ff3c;
  --accent-dark:#8fd11f;
  --white:#fff;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit}
.wrap{width:min(1120px,calc(100% - 40px));margin:0 auto}
.site-header{
  border-bottom:1px solid var(--line);
  background:rgba(12,16,20,.92);
  position:sticky;
  top:0;
  backdrop-filter:blur(10px);
  z-index:10;
}
.header-inner,.footer-inner,.strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.header-inner{min-height:72px}
.brand{font-weight:800;text-decoration:none;letter-spacing:-.02em}
.tag{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--accent);
  border:1px solid #4e681f;
  padding:.35rem .65rem;
  border-radius:999px;
}
.hero{padding:96px 0 80px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
  align-items:center;
  gap:72px;
}
.eyebrow{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.78rem;
  font-weight:800;
  margin:0 0 16px;
}
h1,h2,h3{line-height:1.05;letter-spacing:-.04em;margin-top:0}
h1{font-size:clamp(3rem,7vw,6.5rem);max-width:900px;margin-bottom:28px}
h2{font-size:clamp(2rem,4vw,3.5rem);max-width:850px}
h3{font-size:1.4rem}
.lead{font-size:1.18rem;color:var(--muted);max-width:760px}
.actions{display:flex;flex-wrap:wrap;align-items:center;gap:20px;margin-top:34px}
.button{
  display:inline-block;
  background:var(--accent);
  color:#101510;
  font-weight:800;
  text-decoration:none;
  padding:14px 20px;
  border-radius:8px;
}
.button:hover{background:var(--accent-dark)}
.text-link{font-weight:700;text-underline-offset:4px}
.camera-card{
  min-height:430px;
  position:relative;
  border:1px solid var(--line);
  background:
    linear-gradient(rgba(183,255,60,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(183,255,60,.03) 1px,transparent 1px),
    var(--panel);
  background-size:26px 26px;
  border-radius:24px;
  overflow:hidden;
}
.pole{
  position:absolute;
  width:18px;
  height:360px;
  background:#85909a;
  bottom:-20px;
  left:50%;
  transform:translateX(-50%);
}
.camera{
  position:absolute;
  width:160px;
  height:88px;
  background:#dce2e6;
  border-radius:16px 16px 25px 25px;
  left:50%;
  top:90px;
  transform:translateX(-50%);
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}
.camera:before{
  content:"";
  position:absolute;
  width:80px;
  height:18px;
  background:#8c969f;
  bottom:-12px;
  left:40px;
  border-radius:0 0 8px 8px;
}
.lens{
  position:absolute;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#11161b;
  border:8px solid #68737c;
  left:30px;
  top:25px;
}
.lens.small{width:24px;height:24px;border-width:5px;left:auto;right:28px;top:31px}
.scan-line{
  position:absolute;
  height:2px;
  width:90%;
  left:5%;
  top:62%;
  background:var(--accent);
  box-shadow:0 0 24px var(--accent);
}
.section{padding:88px 0}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px;
}
.cards article{
  border:1px solid var(--line);
  background:var(--panel);
  padding:30px;
  border-radius:16px;
}
.cards p{color:var(--muted);margin-bottom:0}
.number{display:block;color:var(--accent);font-weight:900;margin-bottom:28px}
.strip{background:var(--accent);color:#101510;padding:64px 0}
.strip .eyebrow{color:#27310d}
.strip h2{margin-bottom:12px}
.strip p{margin-bottom:0}
.button.light{background:#101510;color:white}
.button.light:hover{background:#252c31}
footer{padding:32px 0;border-top:1px solid var(--line);color:var(--muted);font-size:.9rem}

@media(max-width:800px){
  .hero{padding-top:64px}
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .camera-card{min-height:320px}
  .cards{grid-template-columns:1fr}
  .strip-inner,.footer-inner{align-items:flex-start;flex-direction:column}
}
