:root {
  --bg: #071012;
  --bg-2: #0a1416;
  --surface: #10191b;
  --line: rgba(255, 255, 255, .08);
  --ink: #f3f7f7;
  --muted: #9aadb0;
  --faint: #6b7c80;
  --brand: #2bb3b8;
  --brand-2: #148f9a;
  --brand-deep: #0c5c64;
  --heat: #e87a2a;
  --gold: #f0a03c;
  --ok: #34d399;
  --danger: #f87171;
  --r: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .45);
  --font: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; top: 12px; z-index: 50; background: #fff; color: #111; padding: 8px 12px; border-radius: 8px; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 18, .78);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 16px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; flex: none; display: block; }
.brand b { font-weight: 700; letter-spacing: -.02em; display: block; line-height: 1.15; }
.brand span { color: var(--muted); font-size: 12px; font-weight: 500; }
.nav-spacer { flex: 1; }
.nav-soon {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 11px 18px;
  background: linear-gradient(180deg, #2bb3b8, var(--brand-2));
  color: #fff; font-weight: 600; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 143, 154, .35);
}
.btn:hover { filter: brightness(1.06); }
.btn-ghost {
  background: transparent; box-shadow: none;
  border: 1px solid var(--line); color: var(--ink);
}

.hero { padding: 48px 0 28px; position: relative; }
.hero::before {
  content: "";
  position: absolute; inset: -60px 8% auto;
  height: 380px;
  background: radial-gradient(closest-side, rgba(20, 143, 154, .32), transparent 72%);
  pointer-events: none;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(232, 122, 42, .4);
  color: var(--gold);
  background: rgba(232, 122, 42, .1);
  border-radius: 999px; padding: 6px 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
}
.hero h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 16px 0 14px;
  max-width: 18ch;
}
.lede { max-width: 58ch; color: var(--muted); font-size: 18px; margin: 0 0 24px; }
.lede strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.fine { color: var(--faint); font-size: 13px; margin-top: 14px; }

.shot-frame {
  margin: 36px auto 0;
  background: #121c1e;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px 10px 14px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(20, 143, 154, .12);
}
.shot-chrome { display: flex; gap: 6px; padding: 6px 8px 10px; }
.shot-chrome i { width: 9px; height: 9px; border-radius: 50%; background: #3a3d4a; display: block; }
.shot-chrome i:nth-child(1) { background: #f87171; }
.shot-chrome i:nth-child(2) { background: #f0a03c; }
.shot-chrome i:nth-child(3) { background: #2bb3b8; }
.shot-frame picture { display: block; }
.shot-frame img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.shot-cap { color: var(--muted); font-size: 13px; padding: 10px 8px 0; }

.section { padding: 72px 0; }
.section h2 {
  font-family: var(--font);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.section .intro { color: var(--muted); max-width: 62ch; margin: 0 0 32px; }

.layers {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  padding: 18px 16px;
}
.layers picture { display: block; }
.layers img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.card picture { display: block; }
.card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.card-body { padding: 18px 20px 22px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

.cams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cams article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px 24px;
}
.cam-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--brand);
  margin: 0 0 10px;
}
.cams p { margin: 0; color: var(--muted); font-size: 14.5px; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}
.trust h3 { margin: 0 0 8px; font-size: 16px; }
.trust p { margin: 0; color: var(--muted); font-size: 14px; }

.form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 6px; }
.field { margin-bottom: 14px; }
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  background: #0b1416;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
}
input:focus { outline: 2px solid rgba(43, 179, 184, .5); border-color: transparent; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { min-height: 1.4em; font-size: 14px; margin-top: 10px; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: var(--danger); }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--faint);
  font-size: 13px;
}
.foot-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot strong { color: var(--muted); font-weight: 600; }

@media (max-width: 860px) {
  .trust, .form-wrap, .cams { grid-template-columns: 1fr; }
  .nav-soon { display: none; }
  .nav .btn { padding: 9px 12px; font-size: 13px; }
  .hero { padding-top: 32px; }
}
