:root {
  --bg: #07111d;
  --bg-soft: #0b1725;
  --surface: rgba(12, 27, 43, 0.74);
  --surface-strong: #0f2033;
  --text: #f4f8fb;
  --muted: #8fa4b7;
  --line: rgba(149, 185, 211, 0.14);
  --line-strong: rgba(127, 191, 235, 0.28);
  --brand: #2f536f;
  --brand-2: #4aa7d7;
  --brand-3: #7ed6ff;
  --success: #65e6ae;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --container: 1180px;
}

html[data-theme="light"] {
  --bg: #edf4f8;
  --bg-soft: #e5eef4;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #0b1c2b;
  --muted: #536b7f;
  --line: rgba(27, 63, 88, 0.12);
  --line-strong: rgba(35, 92, 129, 0.24);
  --brand: #274d6b;
  --brand-2: #237eac;
  --brand-3: #0f95ce;
  --success: #0b9d68;
  --shadow: 0 30px 80px rgba(49, 78, 97, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 55% -10%, rgba(68, 144, 189, .16), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background-color .35s ease, color .35s ease;
}
body.menu-open { overflow: hidden; }
::selection { background: rgba(75, 167, 215, .4); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 118px 0; position: relative; }
.noise {
  pointer-events: none; position: fixed; inset: 0; z-index: 50; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}
.page-glow { position: fixed; width: 42vw; height: 42vw; border-radius: 50%; filter: blur(110px); opacity: .08; pointer-events: none; z-index: -1; }
.glow-one { background: var(--brand-2); top: 12vh; left: -20vw; }
.glow-two { background: #6e93ff; right: -25vw; top: 55vh; }

.site-header { position: fixed; left: 0; right: 0; top: 0; z-index: 40; padding-top: 16px; }
.nav-shell {
  min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px 12px 10px 16px; border: 1px solid var(--line); border-radius: 20px;
  background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(22px); box-shadow: 0 12px 34px rgba(0,0,0,.12);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: fit-content; }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 8px 24px rgba(38, 76, 105, .24); }
.brand div { display: grid; line-height: 1; gap: 4px; }
.brand strong { font-family: "Space Grotesk", sans-serif; font-size: 15px; letter-spacing: -.02em; }
.brand span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.desktop-nav { display: flex; gap: 34px; align-items: center; }
.desktop-nav a { color: var(--muted); font-size: 13px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle, .menu-toggle {
  width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 13px; display: grid; place-items: center; cursor: pointer;
}
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.moon-icon { display: none; }
html[data-theme="light"] .sun-icon { display: none; }
html[data-theme="light"] .moon-icon { display: block; }
.nav-cta { padding: 14px 18px; border-radius: 13px; font-size: 12px; font-weight: 700; background: var(--text); color: var(--bg); }
.menu-toggle { display: none; position: relative; }
.menu-toggle span { position: absolute; width: 18px; height: 1.5px; background: currentColor; transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 100vh; padding-top: 170px; padding-bottom: 58px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 78px 78px; mask-image: linear-gradient(to bottom, #000, transparent 84%); opacity: .45;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .96fr) minmax(480px, 1.04fr); align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--brand-3); margin-bottom: 22px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(101,230,174,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(101,230,174,0); } 100% { box-shadow: 0 0 0 0 rgba(101,230,174,0); } }
h1, h2, h3 { margin: 0; font-family: "Space Grotesk", Inter, sans-serif; }
h1 { font-size: clamp(58px, 6.2vw, 92px); line-height: .94; letter-spacing: -.065em; max-width: 740px; }
h1 span, h2 span { color: var(--brand-3); text-shadow: 0 0 34px rgba(126, 214, 255, .12); }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: var(--muted); line-height: 1.75; font-size: 17px; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.btn { min-height: 52px; padding: 0 22px; border-radius: 15px; display: inline-flex; align-items: center; gap: 12px; justify-content: center; font-size: 13px; font-weight: 800; border: 1px solid var(--line); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--brand-2), #245b7a); color: #fff; border-color: rgba(126,214,255,.25); box-shadow: 0 14px 42px rgba(32, 112, 155, .26); }
.btn-primary span { font-size: 18px; }
.btn-ghost { background: var(--surface); color: var(--text); }
.trust-row { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); max-width: 640px; border-top: 1px solid var(--line); padding-top: 22px; }
.trust-row div { border-right: 1px solid var(--line); padding-right: 14px; margin-right: 14px; }
.trust-row div:last-child { border: 0; }
.trust-row strong { display: block; font-size: 15px; }
.trust-row span { color: var(--muted); font-size: 10px; margin-top: 5px; display: block; }

.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; perspective: 1200px; }
.radar-ring { position: absolute; border: 1px solid var(--line-strong); border-radius: 50%; animation: spin 28s linear infinite; }
.ring-one { width: 590px; height: 590px; }
.ring-two { width: 450px; height: 450px; border-style: dashed; animation-direction: reverse; animation-duration: 20s; }
.ring-three { width: 320px; height: 320px; opacity: .7; }
.radar-ring::after { content: ""; width: 8px; height: 8px; position: absolute; left: 50%; top: -4px; background: var(--brand-3); border-radius: 50%; box-shadow: 0 0 20px var(--brand-3); }
@keyframes spin { to { transform: rotate(360deg); } }
.glass-card { background: linear-gradient(160deg, color-mix(in srgb, var(--surface-strong) 88%, transparent), color-mix(in srgb, var(--surface) 70%, transparent)); border: 1px solid var(--line-strong); box-shadow: var(--shadow); backdrop-filter: blur(24px); }
.hero-console { width: min(480px, 90%); border-radius: 28px; padding: 18px; z-index: 2; transform: rotateY(-8deg) rotateX(2deg); position: relative; overflow: hidden; }
.hero-console::before { content: ""; position: absolute; width: 180px; height: 360px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent); top: -70px; left: -180px; transform: rotate(18deg); animation: shine 5.5s ease-in-out infinite; }
@keyframes shine { 0%, 52% { left: -220px; } 75%, 100% { left: 560px; } }
.console-topbar { display: flex; justify-content: space-between; align-items: center; padding: 2px 2px 16px; }
.mini-brand { display: flex; align-items: center; gap: 9px; font-size: 9px; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.mini-brand img { width: 28px; height: 28px; border-radius: 8px; }
.status-chip { display: inline-flex; gap: 7px; align-items: center; font-size: 9px; font-weight: 800; letter-spacing: .08em; color: var(--success); }
.status-chip span { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 14px var(--success); }
.weight-display { border: 1px solid var(--line); border-radius: 21px; padding: 22px; background: rgba(2, 13, 22, .42); }
html[data-theme="light"] .weight-display { background: rgba(237,245,250,.8); }
.display-label, .serial-status { display: block; font-size: 9px; letter-spacing: .16em; font-weight: 700; color: var(--muted); }
.weight-display > div { display: flex; align-items: baseline; gap: 10px; margin: 10px 0; }
.weight-display strong { font-family: "Space Grotesk"; font-size: 62px; letter-spacing: -.05em; line-height: 1; }
.weight-display em { font-style: normal; color: var(--brand-3); font-weight: 700; }
.console-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 10px; }
.console-field { padding: 14px; border-radius: 15px; border: 1px solid var(--line); }
.console-field span, .net-card span { display: block; font-size: 8px; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.console-field strong { display: block; font-size: 11px; margin-top: 6px; }
.net-card { margin-top: 10px; padding: 18px; border-radius: 18px; background: linear-gradient(135deg, rgba(43,114,151,.35), rgba(31,70,95,.18)); border: 1px solid rgba(126,214,255,.2); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 16px; }
.net-card strong { font-size: 32px; letter-spacing: -.04em; }
.net-card small { color: var(--brand-3); font-size: 12px; }
.net-card button { grid-row: 1 / span 2; grid-column: 2; align-self: center; border: 0; padding: 12px 13px; border-radius: 12px; background: var(--text); color: var(--bg); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.float-card { position: absolute; z-index: 4; border-radius: 17px; padding: 12px; }
.camera-card { width: 230px; left: -8px; bottom: 84px; transform: rotate(-3deg); }
.fake-camera { height: 104px; border-radius: 11px; background: linear-gradient(180deg, #162f42, #08131f); position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.fake-camera svg { width: 100%; height: 100%; fill: #477491; opacity: .75; }
.scan-line { position: absolute; height: 1px; width: 100%; background: var(--brand-3); box-shadow: 0 0 12px var(--brand-3); left: 0; top: 15%; animation: scan 3s ease-in-out infinite alternate; }
@keyframes scan { to { top: 86%; } }
.camera-card > div:last-child { margin-top: 9px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.camera-card span, .ticket-card span { font-size: 8px; color: var(--muted); letter-spacing: .12em; }
.camera-card strong { font-size: 9px; }
.ticket-card { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; width: 218px; right: -8px; top: 115px; transform: rotate(4deg); }
.ticket-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: rgba(75,167,215,.12); color: var(--brand-3); }
.ticket-card strong { font-size: 10px; display: block; margin-top: 4px; }
.check { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(101,230,174,.1); color: var(--success) !important; }
.hero-strip { margin-top: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transform: rotate(-1.2deg) scale(1.02); background: color-mix(in srgb, var(--surface) 70%, transparent); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 15px 0; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: "Space Grotesk"; font-size: 11px; letter-spacing: .12em; font-weight: 800; color: var(--muted); }
.marquee-track i { color: var(--brand-3); font-style: normal; font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-head { max-width: 820px; margin-bottom: 58px; }
.section-head h2, .showcase-copy h2, .integration-copy h2, .control-copy h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.section-head p, .showcase-copy > p, .integration-copy > p, .control-copy > p { color: var(--muted); line-height: 1.75; max-width: 650px; margin: 20px 0 0; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.workflow-step { min-height: 360px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 60%, transparent)); position: relative; overflow: hidden; }
.workflow-step::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(75,167,215,.13), transparent 45%); opacity: 0; transition: opacity .25s ease; }
.workflow-step:hover::before { opacity: 1; }
.step-no { font-family: "Space Grotesk"; font-size: 11px; color: var(--brand-3); letter-spacing: .1em; }
.step-visual { height: 130px; margin: 34px 0 28px; position: relative; display: grid; place-items: center; }
.vehicle-grid { background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 24px 24px; border-radius: 16px; overflow: hidden; }
.lane { position: absolute; width: 70%; height: 32px; background: rgba(75,167,215,.08); border-top: 1px dashed var(--line-strong); border-bottom: 1px dashed var(--line-strong); }
.truck-mini { color: var(--brand-3); font-size: 52px; transform: scaleX(1.9); text-shadow: 0 0 18px rgba(126,214,255,.2); }
.signal-grid { display: flex; gap: 8px; align-items: end; justify-content: center; }
.signal-grid span { width: 12px; border-radius: 99px; background: linear-gradient(var(--brand-3), rgba(75,167,215,.12)); animation: signal 1.8s ease-in-out infinite alternate; }
.signal-grid span:nth-child(1){height:32px}.signal-grid span:nth-child(2){height:65px;animation-delay:.2s}.signal-grid span:nth-child(3){height:94px;animation-delay:.4s}.signal-grid span:nth-child(4){height:58px;animation-delay:.6s}.signal-grid span:nth-child(5){height:38px;animation-delay:.8s}
@keyframes signal { to { transform: scaleY(.58); opacity:.65; } }
.split-weights { display: flex; gap: 9px; align-items: center; }
.split-weights b { border: 1px solid var(--line-strong); border-radius: 12px; padding: 17px 13px; font-size: 11px; letter-spacing: .1em; }
.split-weights i { color: var(--brand-3); font-style: normal; }
.output-grid { display: flex; gap: 8px; }
.output-grid span { width: 54px; height: 54px; border-radius: 15px; display:grid;place-items:center;border:1px solid var(--line-strong); font-size: 10px; font-weight: 900; color: var(--brand-3); background: rgba(75,167,215,.06); }
.workflow-step h3 { font-size: 20px; letter-spacing: -.03em; }
.workflow-step p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.product-showcase { background: linear-gradient(180deg, transparent, rgba(33,73,100,.08), transparent); }
.showcase-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: center; }
.clean-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 14px; }
.clean-list li { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13px; }
.clean-list span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: rgba(75,167,215,.08); border: 1px solid var(--line); color: var(--brand-3); font-size: 9px; font-weight: 800; }
.dashboard-frame { border: 1px solid var(--line-strong); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: var(--surface-strong); transform: perspective(1300px) rotateY(-5deg); }
.dash-browserbar { height: 50px; display: flex; align-items: center; gap: 6px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.dash-browserbar > span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.dash-browserbar em { margin-left: 12px; font-style: normal; font-size: 8px; color: var(--muted); letter-spacing: .18em; }
.dash-layout { display: grid; grid-template-columns: 62px 1fr; min-height: 440px; }
.dash-layout aside { border-right: 1px solid var(--line); padding: 14px 12px; display: flex; flex-direction: column; align-items:center; gap:18px; }
.dash-layout aside img { width: 34px; height: 34px; border-radius: 10px; margin-bottom: 14px; }
.dash-layout aside span { width: 24px; height: 4px; border-radius: 10px; background: var(--line-strong); }
.dash-layout aside span.active { width: 30px; height: 30px; border-radius: 9px; background: rgba(75,167,215,.12); border:1px solid var(--line-strong); }
.dash-main { padding: 20px; }
.dash-top { display: flex; justify-content: space-between; gap:20px; align-items:flex-start; padding: 20px; border:1px solid var(--line); border-radius:18px; background: rgba(75,167,215,.04); }
.dash-top small, .dash-fields small, .weight-stack small { display:block; color:var(--muted); font-size:7px; letter-spacing:.14em; font-weight:800; }
.dash-top strong { font-size: 44px; letter-spacing:-.05em; display:block; margin-top:3px; }
.dash-top strong i { font-size: 10px; font-style:normal; color:var(--brand-3); }
.dash-pill { padding:8px 10px; border-radius:99px; background:rgba(101,230,174,.08); color:var(--success); font-size:8px; font-weight:900; letter-spacing:.1em; }
.dash-fields { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin-top:9px; }
.dash-fields div { border:1px solid var(--line); border-radius:14px; padding:12px; }
.dash-fields b { display:block; margin-top:5px; font-size:9px; }
.dash-bottom { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin-top:9px; }
.mini-camera { min-height: 154px; border:1px solid var(--line); border-radius:15px; background:linear-gradient(180deg,#142e41,#08131e); position:relative; overflow:hidden; display:grid;place-items:center; }
.mini-camera span { position:absolute; left:0; right:0; top:45%; height:1px; background:var(--brand-3); box-shadow:0 0 12px var(--brand-3); }
.mini-camera svg { width:90%; fill:#456f89; }
.weight-stack { display:grid; gap:7px; }
.weight-stack div { padding:11px 13px; border:1px solid var(--line); border-radius:13px; }
.weight-stack b { display:block; margin-top:3px; font-size:16px; }
.weight-stack .highlight { background:rgba(75,167,215,.09); border-color:var(--line-strong); }
.bento-grid { margin-top: 78px; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.bento-card { min-height: 300px; padding:26px; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); position:relative; overflow:hidden; }
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 2; }
.feature-icon { width:44px;height:44px;border-radius:14px;display:grid;place-items:center;background:rgba(75,167,215,.09);color:var(--brand-3);border:1px solid var(--line-strong);font-size:20px; }
.card-tag { display:block; margin-top:38px; font-size:8px; letter-spacing:.18em; color:var(--brand-3); font-weight:900; }
.bento-card h3 { font-size:28px; letter-spacing:-.045em; margin-top:10px; max-width:520px; }
.bento-card p { color:var(--muted); line-height:1.7; font-size:13px; max-width:610px; }
.serial-wave { position:absolute; right:24px; top:40px; height:130px; width:43%; display:flex; gap:5px; align-items:center; justify-content:flex-end; opacity:.8; }
.serial-wave span { width:4px; background:linear-gradient(var(--brand-3), transparent); border-radius:50px; animation:wave 1.6s ease-in-out infinite alternate; }
.serial-wave span:nth-child(1){height:22px}.serial-wave span:nth-child(2){height:52px}.serial-wave span:nth-child(3){height:82px}.serial-wave span:nth-child(4){height:33px}.serial-wave span:nth-child(5){height:110px}.serial-wave span:nth-child(6){height:65px}.serial-wave span:nth-child(7){height:95px}.serial-wave span:nth-child(8){height:44px}.serial-wave span:nth-child(9){height:74px}.serial-wave span:nth-child(10){height:28px}.serial-wave span:nth-child(11){height:59px}
@keyframes wave { to { transform:scaleY(.45); opacity:.35; } }
.storage-flow { margin-top:30px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.storage-flow span { border:1px solid var(--line); border-radius:12px; padding:12px 13px; font-size:8px; letter-spacing:.12em; font-weight:900; }
.storage-flow i { color:var(--brand-3); font-style:normal; }

.integration-grid { display:grid; grid-template-columns:1fr .9fr; gap:100px; align-items:center; }
.integration-orbit { width:min(540px,100%); aspect-ratio:1; margin:auto; position:relative; display:grid;place-items:center; }
.orbit { position:absolute;border:1px solid var(--line-strong);border-radius:50%; }
.orbit-a{inset:5%;}.orbit-b{inset:20%;border-style:dashed;}.orbit-c{inset:35%;}
.orbit-core { width:118px;height:118px;border-radius:32px;border:1px solid var(--line-strong);background:var(--surface);display:grid;place-items:center;box-shadow:var(--shadow); }
.orbit-core img { width:78px;height:78px;border-radius:22px; }
.orbit-node { position:absolute;width:62px;height:62px;border-radius:19px;border:1px solid var(--line-strong);background:var(--surface-strong);display:grid;place-items:center;font-size:10px;font-weight:900;letter-spacing:.08em;color:var(--brand-3);box-shadow:0 14px 38px rgba(0,0,0,.18); }
.node-wa{top:4%;left:46%}.node-mail{right:6%;top:35%;font-size:18px}.node-cam{bottom:8%;right:24%}.node-csv{left:5%;bottom:28%}.node-print{left:13%;top:16%}
.integration-list { margin-top:34px; display:grid; }
.integration-list > div { padding:18px 0;border-top:1px solid var(--line);display:grid;grid-template-columns:110px 1fr;gap:18px; }
.integration-list strong { font-size:12px;color:var(--text); }
.integration-list span { color:var(--muted); font-size:12px; line-height:1.5; }

.reports-section { background:linear-gradient(180deg,rgba(33,73,100,.08),transparent); }
.split-head { max-width:none;display:grid;grid-template-columns:1fr .7fr;gap:60px;align-items:end; }
.split-head p { margin:0 0 8px auto; max-width:460px; }
.reports-card { border:1px solid var(--line-strong);border-radius:32px;overflow:hidden;background:var(--surface);display:grid;grid-template-columns:.72fr 1.28fr;box-shadow:var(--shadow); }
.report-side { padding:42px; }
.report-side .card-tag { margin-top:0; }
.report-side h3 { font-size:38px;letter-spacing:-.05em;margin-top:12px; }
.report-side p { color:var(--muted);line-height:1.7;font-size:13px; }
.report-chips { display:flex;gap:8px;flex-wrap:wrap;margin-top:30px; }
.report-chips span { font-size:8px;font-weight:800;letter-spacing:.08em;padding:9px 10px;border-radius:99px;border:1px solid var(--line);color:var(--muted); }
.report-visual { border-left:1px solid var(--line);padding:28px;background:linear-gradient(180deg,rgba(75,167,215,.035),transparent); }
.report-toolbar { display:flex;justify-content:space-between;align-items:center;padding-bottom:16px;border-bottom:1px solid var(--line); }
.report-toolbar b { font-size:9px;letter-spacing:.14em; }
.report-toolbar span { background:var(--text);color:var(--bg);font-size:7px;font-weight:900;padding:8px 10px;border-radius:9px; }
.report-stats { display:grid;grid-template-columns:.65fr 1.2fr .6fr;gap:8px;margin-top:14px; }
.report-stats div { padding:14px;border:1px solid var(--line);border-radius:13px; }
.report-stats small { display:block;color:var(--muted);font-size:7px;letter-spacing:.1em; }
.report-stats strong { display:block;margin-top:5px;font-size:16px; }
.report-stats i { font-style:normal;font-size:8px;color:var(--brand-3); }
.bar-chart { height:190px;display:flex;align-items:end;gap:8px;padding:26px 18px 0;border-left:1px solid var(--line);border-bottom:1px solid var(--line);margin:18px 0 0; background-image:linear-gradient(var(--line) 1px,transparent 1px);background-size:100% 25%; }
.bar-chart span { flex:1;height:var(--h);background:linear-gradient(to top,rgba(47,83,111,.35),var(--brand-3));border-radius:5px 5px 0 0;opacity:.8; }
.table-lines { margin-top:16px;display:grid;gap:8px; }
.table-lines span { height:9px;border-radius:20px;background:linear-gradient(90deg,var(--line-strong) 16%,var(--line) 16% 48%,transparent 48% 51%,var(--line) 51% 72%,transparent 72% 75%,var(--line) 75%); }

.control-grid { display:grid;grid-template-columns:.78fr 1.22fr;gap:80px;align-items:start; }
.control-cards { display:grid;gap:12px; }
.control-card { border:1px solid var(--line);border-radius:22px;background:var(--surface);padding:24px;display:grid;grid-template-columns:48px 1fr;gap:18px;align-items:start; }
.control-card > span { width:42px;height:42px;border-radius:13px;display:grid;place-items:center;background:rgba(75,167,215,.08);color:var(--brand-3);font-size:10px;font-weight:900;border:1px solid var(--line); }
.control-card h3 { font-size:18px; }
.control-card p { color:var(--muted);font-size:12px;line-height:1.6;margin-bottom:0; }

.cta-panel { min-height:500px;border:1px solid var(--line-strong);border-radius:36px;background:
  radial-gradient(circle at 50% 105%,rgba(75,167,215,.22),transparent 48%),
  linear-gradient(180deg,var(--surface),color-mix(in srgb,var(--surface-strong) 75%,transparent));
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:70px 30px;position:relative;overflow:hidden;box-shadow:var(--shadow);
}
.cta-panel::before { content:"";position:absolute;inset:0;background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px);background-size:46px 46px;mask-image:radial-gradient(circle,#000,transparent 68%);opacity:.55; }
.cta-watermark { position:absolute;font-family:"Space Grotesk";font-size:380px;font-weight:800;letter-spacing:-.1em;color:transparent;-webkit-text-stroke:1px var(--line);opacity:.7;line-height:1;pointer-events:none; }
.cta-panel > *:not(.cta-watermark) { position:relative;z-index:1; }
.cta-panel h2 { max-width:850px;font-size:clamp(44px,6vw,78px);line-height:.98;letter-spacing:-.06em; }
.cta-panel > p { max-width:700px;color:var(--muted);line-height:1.7;margin:22px auto 0; }
.centered { justify-content:center; }
.cta-note { margin-top:22px;color:var(--muted);font-size:10px;letter-spacing:.02em; }
.cta-note a { color:var(--text);text-decoration:none;border-bottom:1px solid var(--line);padding-bottom:2px;transition:.2s ease; }
.cta-note a:hover { border-color:currentColor; }
.site-footer { border-top:1px solid var(--line);padding:30px 0 46px; }
.footer-inner { display:flex;align-items:center;justify-content:space-between;gap:20px;color:var(--muted);font-size:10px; }
.footer-brand img { width:36px;height:36px;border-radius:11px; }
.footer-brand strong { color:var(--text); }
.footer-credit { color:var(--text);text-decoration:none;white-space:nowrap; }
.footer-credit:hover { text-decoration:underline; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s cubic-bezier(.22,.7,.26,1); }
.reveal.visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 1040px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:grid; }
  .nav-cta { display:none; }
  .mobile-menu { display:grid; position:absolute; top:92px; left:24px; right:24px; gap:4px; padding:14px; border:1px solid var(--line); border-radius:20px; background:color-mix(in srgb,var(--bg) 94%,transparent); backdrop-filter:blur(24px); box-shadow:var(--shadow); transform:translateY(-12px); opacity:0; pointer-events:none; transition:.25s ease; }
  .mobile-menu.open { transform:none; opacity:1; pointer-events:auto; }
  .mobile-menu a { padding:14px 13px; border-radius:12px; color:var(--muted); font-weight:700; font-size:13px; }
  .mobile-menu a:hover { background:var(--surface); color:var(--text); }
  .hero-grid { grid-template-columns:1fr; gap:30px; }
  .hero-copy { text-align:center; }
  .hero-copy .eyebrow, .hero-actions { justify-content:center; }
  .hero-lede { margin-left:auto;margin-right:auto; }
  .trust-row { margin-left:auto;margin-right:auto; }
  .hero-visual { min-height:620px; }
  .showcase-grid, .integration-grid, .control-grid { grid-template-columns:1fr; gap:54px; }
  .showcase-copy, .integration-copy, .control-copy { max-width:760px; }
  .dashboard-frame { transform:none; }
  .integration-orbit { max-width:520px; }
  .workflow-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 760px) {
  .container { width:min(100% - 28px, var(--container)); }
  .section-pad { padding:86px 0; }
  .site-header { padding-top:10px; }
  .nav-shell { min-height:60px; border-radius:17px; padding:8px 9px 8px 12px; }
  .brand img { width:37px;height:37px;border-radius:10px; }
  .brand strong { font-size:13px; }
  .brand span { font-size:8px; }
  .theme-toggle,.menu-toggle { width:40px;height:40px;border-radius:11px; }
  .mobile-menu { top:78px;left:14px;right:14px; }
  .hero { padding-top:132px; min-height:auto; }
  h1 { font-size:clamp(48px,15vw,72px); }
  .hero-lede { font-size:15px; }
  .trust-row { grid-template-columns:repeat(2,1fr); row-gap:18px; }
  .trust-row div:nth-child(2) { border-right:0; }
  .hero-visual { min-height:520px; transform:scale(.92); margin-inline:-22px; }
  .ring-one{width:510px;height:510px}.ring-two{width:390px;height:390px}.ring-three{width:280px;height:280px}
  .camera-card { left:14px;bottom:34px;width:195px; }
  .fake-camera { height:84px; }
  .ticket-card { right:14px;top:80px;width:185px; }
  .hero-strip { margin-top:30px; }
  .section-head h2,.showcase-copy h2,.integration-copy h2,.control-copy h2 { font-size:clamp(38px,11.5vw,56px); }
  .workflow-grid { grid-template-columns:1fr; }
  .workflow-step { min-height:330px; }
  .bento-grid { grid-template-columns:1fr; }
  .bento-large,.bento-wide { grid-column:auto; }
  .serial-wave { position:relative;right:auto;top:auto;width:100%;height:90px;margin-top:20px;justify-content:flex-start; }
  .split-head { grid-template-columns:1fr; gap:16px; }
  .split-head p { margin:0; }
  .reports-card { grid-template-columns:1fr; }
  .report-visual { border-left:0;border-top:1px solid var(--line); }
  .report-side { padding:30px; }
  .report-stats { grid-template-columns:1fr 1fr; }
  .report-stats div:nth-child(2) { grid-column:span 2; grid-row:2; }
  .integration-list > div { grid-template-columns:90px 1fr; }
  .footer-inner { flex-direction:column;align-items:flex-start; }
  .cta-panel { min-height:460px;padding:58px 20px; }
  .cta-watermark { font-size:250px; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .hero-visual { min-height:470px; transform:scale(.86); margin-top:-20px; margin-bottom:-30px; }
  .hero-console { width:92%; }
  .weight-display strong { font-size:54px; }
  .camera-card { left:8px; bottom:14px; }
  .ticket-card { right:4px; top:58px; }
  .dash-layout { grid-template-columns:44px 1fr; }
  .dash-layout aside { padding-inline:7px; }
  .dash-main { padding:12px; }
  .dash-top strong { font-size:34px; }
  .dash-fields { grid-template-columns:1fr; }
  .dash-bottom { grid-template-columns:1fr; }
  .integration-orbit { transform:scale(.9); margin-inline:-6%; width:112%; }
  .orbit-node { width:54px;height:54px;border-radius:16px; }
  .report-visual { padding:18px; }
  .bar-chart { padding-inline:8px; gap:5px; }
}

/* Actual product UI + ticket previews */
.real-ui-frame {
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transform: perspective(1300px) rotateY(-3deg);
  position: relative;
}
.real-ui-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.04), transparent 28% 72%, rgba(75,167,215,.04));
}
.real-ui-topbar {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}
.real-ui-topbar > div { display: flex; gap: 6px; }
.real-ui-topbar > div span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.real-ui-topbar em { font-style: normal; font-size: 8px; letter-spacing: .16em; color: var(--muted); font-weight: 800; }
.real-ui-topbar b { justify-self: end; font-size: 7px; letter-spacing: .12em; color: var(--brand-3); }
.real-ui-canvas { padding: 10px; background: #dfe7f0; }
.real-ui-canvas img { width: 100%; height: auto; display: block; border-radius: 10px; box-shadow: 0 16px 50px rgba(0,0,0,.28); }
.real-ui-caption { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 16px 18px 18px; border-top: 1px solid var(--line); }
.real-ui-caption > div { display:flex; align-items:center; gap:8px; white-space:nowrap; }
.real-ui-caption strong { font-size: 10px; letter-spacing:.03em; }
.live-dot { width: 7px; height: 7px; border-radius:50%; background:var(--success); box-shadow:0 0 12px color-mix(in srgb,var(--success) 70%, transparent); }
.real-ui-caption p { margin:0; color:var(--muted); font-size:10px; line-height:1.55; }

.ticket-preview-section {
  background: linear-gradient(180deg, transparent, rgba(33,73,100,.08), transparent);
}
.ticket-preview-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}
.ticket-preview-copy h2 { font-size: clamp(42px,5vw,70px); line-height:1; letter-spacing:-.055em; margin:14px 0 22px; }
.ticket-preview-copy h2 span { color:var(--brand-3); }
.ticket-preview-copy > p { color:var(--muted); line-height:1.75; font-size:14px; max-width:620px; }
.ticket-capabilities { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; }
.ticket-capabilities span { padding:9px 11px; border:1px solid var(--line); border-radius:99px; font-size:8px; letter-spacing:.08em; font-weight:800; color:var(--muted); background:var(--surface); }
.ticket-format-note { margin-top:28px; padding:18px 20px; border:1px solid var(--line); border-radius:18px; background:var(--surface); }
.ticket-format-note strong { font-size:12px; }
.ticket-format-note p { margin:7px 0 0; color:var(--muted); font-size:11px; line-height:1.6; }
.ticket-preview-frame { border:1px solid var(--line-strong); border-radius:28px; background:var(--surface-strong); box-shadow:var(--shadow); overflow:hidden; }
.ticket-preview-toolbar, .ticket-preview-footer { min-height:48px; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:0 18px; border-bottom:1px solid var(--line); }
.ticket-preview-toolbar span { font-size:8px; letter-spacing:.15em; color:var(--muted); font-weight:800; }
.ticket-preview-toolbar b { font-size:7px; letter-spacing:.1em; color:var(--brand-3); }
.ticket-image-wrap { padding:18px; background:linear-gradient(180deg,#eef3f8,#dce5ee); }
.ticket-image-wrap img { width:100%; height:auto; display:block; border-radius:12px; box-shadow:0 18px 55px rgba(0,0,0,.22); }
.ticket-preview-footer { min-height:50px; border-bottom:0; border-top:1px solid var(--line); font-size:8px; color:var(--muted); letter-spacing:.04em; }
.ticket-preview-footer span:last-child { color:var(--brand-3); }

@media (max-width: 1040px) {
  .real-ui-frame { transform:none; }
  .ticket-preview-grid { grid-template-columns:1fr; gap:44px; }
}
@media (max-width: 760px) {
  .real-ui-topbar { grid-template-columns:1fr auto; min-height:46px; padding:0 12px; }
  .real-ui-topbar em { display:none; }
  .real-ui-caption { grid-template-columns:1fr; gap:8px; }
  .real-ui-canvas { padding:6px; overflow-x:auto; }
  .real-ui-canvas img { min-width:820px; }
  .ticket-preview-copy h2 { font-size:clamp(38px,11vw,54px); }
  .ticket-image-wrap { padding:10px; }
  .ticket-preview-footer { flex-direction:column; align-items:flex-start; justify-content:center; padding:10px 14px; gap:4px; }
}
@media (max-width: 520px) {
  .real-ui-frame, .ticket-preview-frame { border-radius:20px; }
  .ticket-image-wrap { overflow-x:auto; }
  .ticket-image-wrap img { min-width:620px; }
}
