:root {
  --bg: #050b16;
  --surface: #0a1424;
  --surface-raised: #0e1b2e;
  --text: #f4f8ff;
  --muted: #9cabbe;
  --line: rgba(161, 196, 229, 0.16);
  --cyan: #49d7ff;
  --blue: #377dff;
  --green: #55e6a5;
  --orange: #ff9f43;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: min(1220px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  transform: translateY(-150%); padding: 12px 16px;
  border-radius: 10px; background: var(--text); color: var(--bg);
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: .035;
  background-image: repeating-linear-gradient(117deg, transparent 0 3px, rgba(255,255,255,.2) 4px, transparent 5px 8px);
  background-size: 11px 13px;
}

.site-header {
  position: fixed; top: 18px; left: 50%; z-index: 50;
  width: var(--container); min-height: 70px; padding: 10px 12px 10px 18px;
  display: grid; grid-template-columns: 190px 1fr auto; align-items: center;
  transform: translateX(-50%); border: 1px solid var(--line); border-radius: 18px;
  background: rgba(5, 11, 22, .72); box-shadow: 0 16px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(140%);
}
.brand { width: 128px; height: 48px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 126px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 3vw, 38px); }
.desktop-nav a { color: #b9c5d5; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.nav-cta, .button {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; font-weight: 700; cursor: pointer; transition: .25s ease;
}
.nav-cta { padding: 0 18px; background: var(--text); color: #07101e; font-size: 13px; }
.nav-cta:hover { background: var(--cyan); box-shadow: 0 10px 28px rgba(73,215,255,.2); }
.menu-button { display: none; }

.hero {
  position: relative; min-height: 100svh; padding: 150px max(24px, calc((100vw - 1220px) / 2)) 42px;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  grid-template-rows: 1fr auto; gap: 34px 60px; align-items: center; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .17;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -160px; top: 70px; background: rgba(55,125,255,.17); }
.hero-glow-two { width: 420px; height: 420px; left: 18%; bottom: -260px; background: rgba(73,215,255,.1); }
.hero-copy { position: relative; z-index: 2; padding-top: 16px; }
.eyebrow {
  width: fit-content; margin-bottom: 24px; padding: 9px 12px; display: flex; gap: 9px; align-items: center;
  border: 1px solid rgba(85,230,165,.24); border-radius: 999px; color: #bfead6;
  background: rgba(85,230,165,.06); font: 600 12px/1 var(--mono); letter-spacing: .02em;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(85,230,165,.1), 0 0 18px var(--green); }
h1 { margin: 0; max-width: 760px; font-size: clamp(50px, 6.2vw, 88px); line-height: .96; letter-spacing: -.06em; font-weight: 800; }
h1 span { color: transparent; background: linear-gradient(110deg, #f4f8ff 0%, #66dcff 52%, #5b8fff 100%); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 630px; margin: 28px 0 0; color: #aebccc; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.button { padding: 0 22px; font-size: 14px; }
.button-primary { color: #06111d; background: linear-gradient(135deg, #72e2ff, #52a7ff); box-shadow: 0 16px 36px rgba(55,125,255,.25); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(55,125,255,.34); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.035); color: #d7e2ee; }
.button-secondary:hover { border-color: rgba(73,215,255,.38); background: rgba(73,215,255,.07); }
.price-inline { margin-top: 34px; padding-left: 16px; display: flex; flex-direction: column; gap: 6px; border-left: 2px solid var(--cyan); }
.price-kicker { color: #7f91a7; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.price-inline strong { font-size: 18px; }
.price-inline strong span { color: var(--cyan); font-size: 28px; }

.hero-visual { position: relative; z-index: 2; min-height: 570px; display: grid; place-items: center; isolation: isolate; }
.device-image { position: relative; z-index: 4; width: min(610px, 100%); aspect-ratio: 4/3; object-fit: cover; border-radius: 42% 42% 30% 30%; mix-blend-mode: screen; filter: contrast(1.08) saturate(.72) drop-shadow(0 45px 55px rgba(0,0,0,.55)); animation: deviceFloat 6s ease-in-out infinite; }
.device-halo { position: absolute; z-index: 1; width: 64%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(73,215,255,.22), rgba(55,125,255,.08) 42%, transparent 70%); filter: blur(12px); }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(73,215,255,.18); border-radius: 50%; transform: rotate(-16deg); }
.orbit::after { content: ""; position: absolute; width: 8px; height: 8px; left: 17%; top: 5%; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); }
.orbit-one { width: 86%; aspect-ratio: 1.4; animation: orbitPulse 5s ease-in-out infinite; }
.orbit-two { width: 66%; aspect-ratio: 1.1; transform: rotate(28deg); animation: orbitPulse 5s 1.5s ease-in-out infinite reverse; }
.telemetry-card { position: absolute; z-index: 6; min-width: 192px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(183,215,241,.19); border-radius: 14px; background: rgba(8,18,32,.78); box-shadow: 0 18px 44px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.telemetry-card small { display: block; margin-bottom: 4px; color: #6f839d; font: 600 9px/1 var(--mono); letter-spacing: .1em; }
.telemetry-card strong { color: #eaf5ff; font-size: 12px; }
.telemetry-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(73,215,255,.1); }
.telemetry-icon.alert { color: var(--orange); background: rgba(255,159,67,.1); }
.telemetry-icon svg { width: 18px; height: 18px; }
.telemetry-top { right: 2%; top: 14%; animation: cardFloat 5s ease-in-out infinite; }
.telemetry-bottom { left: 0; bottom: 16%; animation: cardFloat 5s 1.4s ease-in-out infinite; }
.scan-line { position: absolute; z-index: 5; left: 14%; right: 12%; top: 22%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 18px var(--cyan); animation: scan 4.8s linear infinite; }
.hero-foot { grid-column: 1 / -1; position: relative; z-index: 2; padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); color: #8495a9; font: 600 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }

.proof-strip { padding: 72px max(24px, calc((100vw - 1220px) / 2)); border-top: 1px solid var(--line); background: #07101d; }
.proof-strip > p { margin: 0 0 34px; color: #8fa1b5; text-align: center; font-size: 14px; }
.proof-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.proof-metrics div { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.018); }
.proof-metrics strong { display: block; color: var(--text); font-size: 24px; }
.proof-metrics span { display: block; margin-top: 7px; color: #74879e; font-size: 12px; }

.section { position: relative; padding: 130px max(24px, calc((100vw - 1220px) / 2)); overflow: hidden; }
.section-heading { max-width: 920px; margin-bottom: 66px; }
.section-heading.compact { max-width: 800px; }
.section-index { color: var(--cyan); font: 600 11px/1 var(--mono); letter-spacing: .12em; }
.section h2 { margin: 18px 0 0; font-size: clamp(40px, 5.3vw, 72px); line-height: 1.02; letter-spacing: -.052em; }
.section h2 span { color: #7592b2; }
.section-heading > p { max-width: 690px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.problem-section { background: #f1f5f8; color: #07101d; }
.problem-section .section-index { color: #087ea4; }
.problem-section .section-heading h2 span { color: #587087; }
.problem-section .section-heading > p { color: #546679; }
.problem-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: 18px; }
.risk-story { min-height: 640px; display: grid; grid-template-rows: 1fr auto; border-radius: 24px; overflow: hidden; background: #08111f; color: var(--text); }
.risk-scene { position: relative; min-height: 390px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(52,112,176,.24), transparent 48%), linear-gradient(135deg, #07101b, #10253c); }
.risk-scene::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(93,152,206,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(93,152,206,.22) 1px, transparent 1px); background-size: 42px 42px; }
.worker-signal { position: relative; width: 180px; height: 180px; display: grid; place-items: center; }
.worker-signal::before { content: ""; width: 40px; height: 76px; border: 4px solid var(--orange); border-radius: 24px 24px 16px 16px; transform: rotate(66deg); box-shadow: 0 0 26px rgba(255,159,67,.24); }
.worker-signal span { position: absolute; inset: 0; border: 1px solid rgba(255,159,67,.45); border-radius: 50%; animation: riskPulse 2.8s ease-out infinite; }
.worker-signal span:nth-child(2) { animation-delay: .9s; }.worker-signal span:nth-child(3) { animation-delay: 1.8s; }
.risk-timer { position: absolute; left: 26px; top: 24px; }.risk-timer small { display: block; color: #71869d; font: 600 9px/1 var(--mono); letter-spacing: .1em; }.risk-timer strong { display: block; margin-top: 7px; font: 600 24px/1 var(--mono); }
.risk-status { position: absolute; right: 22px; bottom: 22px; padding: 10px 12px; border: 1px solid rgba(85,230,165,.2); border-radius: 999px; color: #b8e8d0; background: rgba(85,230,165,.07); font-size: 11px; }.risk-status span { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.risk-copy { padding: 34px; }.risk-copy > span, .mini-card > span { color: #70849a; font: 600 10px/1 var(--mono); letter-spacing: .1em; }.risk-copy h3 { margin: 13px 0 12px; max-width: 540px; font-size: clamp(28px,3vw,42px); line-height: 1.08; letter-spacing: -.04em; }.risk-copy p { margin: 0; max-width: 560px; color: #91a1b3; line-height: 1.7; }
.risk-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card { min-height: 225px; padding: 25px; display: flex; flex-direction: column; border: 1px solid #d7e0e7; border-radius: 20px; background: rgba(255,255,255,.65); }
.mini-card > svg { width: 28px; height: 28px; margin-bottom: auto; color: #187ba4; }.mini-card h3 { margin: 13px 0 8px; font-size: 20px; letter-spacing: -.025em; }.mini-card p { margin: 0; color: #5d6e7f; font-size: 13px; line-height: 1.6; }
.mini-card.accent-card { color: white; background: linear-gradient(145deg, #0a2034, #123e55); border-color: transparent; }.mini-card.accent-card > span { color: #80dbf6; }.mini-card.accent-card h3 { margin-top: auto; font-size: 25px; }.mini-card.accent-card a { margin-top: 18px; color: #8de2fb; font-size: 12px; font-weight: 700; }

.workflow-section { background: var(--bg); }
.workflow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.workflow-line { position: absolute; left: 15%; right: 15%; top: 54px; height: 1px; background: var(--line); }.workflow-line span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); box-shadow: 0 0 15px var(--cyan); transition: width 1.8s cubic-bezier(.2,.8,.2,1); }.workflow.is-active .workflow-line span { width: 100%; }
.workflow-step { position: relative; text-align: center; }.step-number { color: #60768e; font: 600 10px/1 var(--mono); }.step-icon { position: relative; z-index: 2; width: 78px; height: 78px; margin: 18px auto 26px; display: grid; place-items: center; border: 1px solid rgba(73,215,255,.25); border-radius: 50%; color: var(--cyan); background: #081422; box-shadow: 0 0 0 12px var(--bg); }.step-icon svg { width: 27px; height: 27px; }.workflow-step h3 { margin: 0; font-size: 24px; }.workflow-step p { margin: 13px auto 0; max-width: 330px; color: #8799ad; font-size: 14px; line-height: 1.7; }

.product-section { padding-top: 0; background: var(--bg); }
.product-stage, .dashboard-stage { border: 1px solid var(--line); border-radius: 28px; overflow: hidden; }
.product-stage { min-height: 700px; display: grid; grid-template-columns: 1.06fr .94fr; background: #07101d; }
.product-photo { position: relative; min-height: 640px; overflow: hidden; }.product-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); }.product-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,11,22,.86), transparent 48%); }.photo-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; display: flex; justify-content: space-between; align-items: end; }.photo-caption span { color: #91a6bb; font: 600 10px/1 var(--mono); letter-spacing: .1em; }.photo-caption strong { font-size: 14px; }
.product-copy { padding: clamp(42px,6vw,82px); align-self: center; }.product-copy h2, .dashboard-copy h2 { font-size: clamp(40px,4.6vw,66px); }.product-copy > p, .dashboard-copy > p { color: #91a1b4; font-size: 17px; line-height: 1.7; }.spec-list { margin: 36px 0 0; }.spec-list div { padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 18px; border-top: 1px solid var(--line); }.spec-list dt { color: #657b94; font: 600 10px/1.6 var(--mono); text-transform: uppercase; }.spec-list dd { margin: 0; color: #d6e1ec; font-size: 13px; line-height: 1.5; }
.dashboard-stage { margin-top: 24px; min-height: 660px; padding: 72px 0 0 72px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; background: linear-gradient(145deg,#0c1c2e,#09131f); }.dashboard-copy { padding-bottom: 60px; }.check-list { margin: 30px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; color: #bdcad7; font-size: 13px; }.check-list li { display: flex; gap: 9px; align-items: center; }.check-list svg { width: 16px; color: var(--green); }
.dashboard-mock { align-self: end; height: 560px; border: 1px solid rgba(181,211,238,.18); border-right: 0; border-bottom: 0; border-radius: 20px 0 0 0; background: #eef3f7; color: #0b1827; box-shadow: -30px -20px 80px rgba(0,0,0,.24); overflow: hidden; }.dash-top { height: 58px; padding: 0 18px; display: flex; gap: 10px; align-items: center; border-bottom: 1px solid #dce4eb; }.dash-logo { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: white; background: #0b7ba5; font-weight: 800; }.dash-top strong { font-size: 12px; }.dash-online { margin-left: auto; color: #567066; font-size: 9px; }.dash-online span { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #33b877; }
.dash-body { height: calc(100% - 58px); display: grid; grid-template-columns: 55px 1fr; }.dash-body aside { padding: 22px 0; display: flex; align-items: center; flex-direction: column; gap: 22px; border-right: 1px solid #dce4eb; }.dash-body aside span { width: 18px; height: 18px; border-radius: 5px; background: #d3dde6; }.dash-body aside span.active { background: #168aaf; box-shadow: 0 0 0 7px rgba(22,138,175,.09); }.dash-main { padding: 25px; }.dash-title { display: flex; justify-content: space-between; align-items: end; }.dash-title small { display: block; color: #778a9b; font-size: 8px; }.dash-title strong { display: block; margin-top: 4px; font-size: 17px; }.dash-time { font: 600 12px/1 var(--mono); color: #627386; }.dash-stats { margin-top: 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }.dash-stats div { padding: 15px; border: 1px solid #d8e1e8; border-radius: 11px; background: white; }.dash-stats small,.dash-stats em { display: block; color: #8292a1; font-size: 7px; font-style: normal; }.dash-stats strong { display: block; margin: 8px 0 7px; font-size: 24px; }.dash-stats .green { color: #269364; }.dash-stats .alert-stat { border-color: #f4b088; background: #fffaf6; }.dash-stats .alert-stat strong,.dash-stats .alert-stat em { color: #d25c26; }
.dash-map { position: relative; height: 280px; margin-top: 14px; border: 1px solid #d9e2e9; border-radius: 12px; background: #e6edf2; overflow: hidden; }.map-grid { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(#ced9e1 1px,transparent 1px),linear-gradient(90deg,#ced9e1 1px,transparent 1px); background-size: 30px 30px; transform: rotate(-8deg) scale(1.2); }.map-dot { position: absolute; width: 9px; height: 9px; border: 2px solid white; border-radius: 50%; background: #2198bd; box-shadow: 0 2px 8px rgba(0,0,0,.2); }.dot-one { left: 25%; top: 35%; }.dot-two { right: 26%; top: 27%; }.dot-three { left: 54%; bottom: 27%; }.map-dot.alert { background: #f06b3a; box-shadow: 0 0 0 8px rgba(240,107,58,.13); }.alarm-pop { position: absolute; left: 50%; bottom: 18%; width: 180px; padding: 11px; border-radius: 9px; color: white; background: #142334; box-shadow: 0 12px 30px rgba(0,0,0,.2); }.alarm-pop small { color: #ff9f70; font: 600 7px/1 var(--mono); }.alarm-pop strong,.alarm-pop span { display: block; }.alarm-pop strong { margin-top: 5px; font-size: 9px; }.alarm-pop span { margin-top: 5px; color: #99aabc; font-size: 7px; }

.usecases-section { background: #f1f5f8; color: #07101d; }.usecases-section .section-index { color: #087ea4; }.usecase-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }.usecase { position: relative; min-height: 330px; padding: 26px; display: flex; flex-direction: column; border: 1px solid #d8e1e8; border-radius: 20px; background: rgba(255,255,255,.68); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }.usecase:hover { transform: translateY(-5px); border-color: #a6d7e8; box-shadow: 0 20px 46px rgba(31,69,91,.09); }.usecase > span { color: #8ca0b2; font: 600 10px/1 var(--mono); }.usecase > svg { width: 38px; height: 38px; margin-top: auto; color: #087ea4; }.usecase h3 { margin: 25px 0 10px; font-size: 22px; letter-spacing: -.03em; }.usecase p { margin: 0; color: #607284; font-size: 13px; line-height: 1.65; }

.pricing-section { min-height: 760px; display: grid; grid-template-columns: 1fr 480px; align-items: center; gap: 80px; background: #06101d; }.pricing-glow { position: absolute; width: 700px; height: 700px; right: -280px; top: 0; border-radius: 50%; background: rgba(39,134,206,.16); filter: blur(110px); }.pricing-copy { position: relative; z-index: 2; }.pricing-copy > p { max-width: 560px; color: #8fa0b3; font-size: 17px; line-height: 1.7; }.pricing-card { position: relative; z-index: 2; padding: 38px; border: 1px solid rgba(105,212,244,.3); border-radius: 24px; background: linear-gradient(145deg,rgba(14,37,57,.95),rgba(7,19,32,.98)); box-shadow: 0 35px 90px rgba(0,0,0,.32); }.pricing-badge { width: fit-content; padding: 7px 9px; border-radius: 999px; color: #8ce3fb; background: rgba(73,215,255,.09); font: 600 9px/1 var(--mono); letter-spacing: .1em; }.price { margin-top: 30px; display: flex; align-items: baseline; }.price > span { align-self: flex-start; margin-top: 10px; color: var(--cyan); font-size: 24px; }.price strong { font-size: 92px; line-height: .85; letter-spacing: -.08em; }.price em { margin-left: 14px; color: #90a1b4; font-size: 13px; font-style: normal; }.pricing-card > p { margin: 24px 0; color: #a3b2c3; font-size: 13px; }.pricing-card ul { margin: 0 0 30px; padding: 24px 0; display: grid; gap: 13px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; color: #d2dde8; font-size: 13px; }.pricing-card li { display: flex; align-items: center; gap: 9px; }.pricing-card li svg { width: 16px; color: var(--green); }.pricing-card .button { width: 100%; }.pricing-card > small { display: block; margin-top: 18px; color: #64788f; font-size: 9px; line-height: 1.6; text-align: center; }

.company-section { background: #0a1524; }.company-panel { min-height: 430px; padding: clamp(34px,6vw,76px); display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; border: 1px solid var(--line); border-radius: 26px; background: radial-gradient(circle at 20% 20%,rgba(55,125,255,.13),transparent 34%),#08121f; }.company-copy > p { margin: 0; color: #a5b4c5; font-size: 18px; line-height: 1.75; }.company-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }.company-tags span { padding: 9px 11px; border: 1px solid var(--line); border-radius: 999px; color: #8da0b6; font: 600 9px/1 var(--mono); }

.faq-section { background: #f1f5f8; color: #07101d; }.faq-section .section-index { color: #087ea4; }.faq-list { border-top: 1px solid #cfd9e1; }.faq-list details { border-bottom: 1px solid #cfd9e1; }.faq-list summary { padding: 27px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; cursor: pointer; list-style: none; font-size: clamp(18px,2vw,24px); font-weight: 700; letter-spacing: -.025em; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary svg { width: 21px; flex: 0 0 auto; transition: transform .25s ease; }.faq-list details[open] summary svg { transform: rotate(45deg); }.faq-list details p { max-width: 800px; margin: -5px 0 28px; color: #5a6c7d; line-height: 1.75; }

.demo-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; background: var(--bg); }.demo-copy { align-self: center; }.demo-copy h2 { max-width: 520px; }.demo-copy p { max-width: 500px; color: #94a5b7; font-size: 17px; line-height: 1.7; }.demo-copy > a { display: inline-block; margin-top: 20px; color: var(--cyan); font-weight: 700; }
.demo-form { padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.demo-form label { margin-bottom: 16px; display: grid; gap: 8px; color: #8fa1b5; font: 600 10px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .05em; }.demo-form input,.demo-form select,.demo-form textarea { width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px; color: var(--text); background: #091421; font: 500 14px/1.4 var(--font); outline: none; }.demo-form textarea { resize: vertical; }.demo-form input:focus,.demo-form select:focus,.demo-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(73,215,255,.09); }.demo-form .button { width: 100%; border: 0; }.form-note { margin: 13px 0 0; color: #5e7289; font-size: 10px; text-align: center; }

.site-footer { padding: 75px max(24px, calc((100vw - 1220px) / 2)) 30px; border-top: 1px solid var(--line); background: #030811; }.footer-main { min-height: 200px; display: grid; grid-template-columns: 180px 1fr auto; gap: 40px; align-items: start; }.footer-brand img { width: 140px; }.footer-main > p { margin: 8px 0 0; color: #788ba1; line-height: 1.7; }.footer-main nav { display: grid; gap: 14px; color: #9badbf; font-size: 13px; }.footer-main nav a:hover,.footer-bottom a:hover { color: var(--cyan); }.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: #53667b; font-size: 10px; }.footer-bottom > div { display: flex; gap: 18px; }

@keyframes riskPulse { 0% { scale: .2; opacity: 0; } 25% { opacity: 1; } 100% { scale: 1.25; opacity: 0; } }

@keyframes deviceFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes orbitPulse { 0%,100% { opacity: .5; scale: .98; } 50% { opacity: 1; scale: 1.03; } }
@keyframes scan { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(360px); opacity: 0; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 500px; }
  .price-inline { padding-left: 0; border-left: 0; align-items: center; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .problem-grid,.product-stage,.dashboard-stage,.pricing-section,.company-panel,.demo-section { grid-template-columns: 1fr; }
  .risk-story { min-height: 560px; }.risk-cards { grid-template-columns: repeat(2,1fr); }
  .product-photo { min-height: 520px; }.dashboard-stage { padding: 60px 0 0 50px; }.dashboard-copy { padding-right: 50px; }.dashboard-mock { height: 520px; }
  .usecase-grid { grid-template-columns: 1fr 1fr; }.pricing-section { gap: 50px; }.pricing-card { max-width: 600px; }
  .company-panel { gap: 35px; }.demo-section { gap: 50px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100vw - 24px); }
  .site-header { top: 10px; min-height: 62px; padding: 8px 9px 8px 14px; border-radius: 14px; }
  .brand { width: 104px; height: 42px; }
  .brand img { width: 102px; }
  .nav-cta { min-height: 42px; padding: 0 13px; font-size: 12px; }
  .hero { padding: 120px 18px 28px; gap: 8px; }
  h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { width: 100%; }
  .button { flex: 1 1 100%; }
  .hero-visual { min-height: 390px; margin-top: 18px; }
  .device-image { width: 115%; max-width: none; }
  .telemetry-card { min-width: 160px; padding: 10px; }
  .telemetry-top { right: -2%; top: 8%; }
  .telemetry-bottom { left: -2%; bottom: 12%; }
  .hero-foot { display: grid; grid-template-columns: 1fr 1fr; line-height: 1.5; }
  .proof-strip { padding: 56px 18px; }
  .proof-metrics { grid-template-columns: 1fr 1fr; }
  .proof-metrics div { padding: 18px 14px; }
  .section { padding: 90px 18px; }.section-heading { margin-bottom: 45px; }.section-heading > p { font-size: 16px; }
  .problem-grid { gap: 14px; }.risk-story { min-height: 520px; }.risk-scene { min-height: 330px; }.risk-copy { padding: 25px; }.risk-cards { grid-template-columns: 1fr; gap: 12px; }.mini-card { min-height: 210px; }
  .workflow { grid-template-columns: 1fr; gap: 45px; }.workflow-line { display: none; }.workflow-step { text-align: left; padding-left: 95px; }.step-icon { position: absolute; left: 0; top: 5px; margin: 0; width: 68px; height: 68px; }.workflow-step p { margin-left: 0; }
  .product-section { padding-top: 0; }.product-stage,.dashboard-stage { border-radius: 20px; }.product-photo { min-height: 430px; }.product-copy { padding: 34px 24px; }.spec-list div { grid-template-columns: 90px 1fr; }.dashboard-stage { padding: 40px 0 0 24px; }.dashboard-copy { padding-right: 24px; }.dashboard-mock { height: 460px; }.dash-stats { grid-template-columns: 1fr 1fr; }.dash-stats div:last-child { display: none; }.alarm-pop { left: 28%; }
  .usecase-grid { grid-template-columns: 1fr; }.usecase { min-height: 260px; }.pricing-card { padding: 28px 22px; }.price strong { font-size: 78px; }.price em { font-size: 11px; }
  .company-panel { padding: 28px 22px; }.company-copy > p { font-size: 16px; }.field-row { grid-template-columns: 1fr; }.demo-form { padding: 24px 18px; }
  .footer-main { grid-template-columns: 1fr; min-height: auto; padding-bottom: 45px; }.footer-bottom { flex-direction: column; }.footer-bottom > div { flex-wrap: wrap; }
}

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

/* 2026 visual refinement — minimal, cinematic and scroll-led */
body { overflow-x: clip; }
body::before {
  content: ""; position: fixed; inset: 0 0 auto; z-index: 90; height: 2px;
  transform: scaleX(var(--scroll-progress, 0)); transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), #7b8dff, var(--green));
  box-shadow: 0 0 14px rgba(73,215,255,.65); pointer-events: none;
}
.site-header { grid-template-columns: 158px 1fr auto; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(4,10,20,.9); border-color: rgba(157,200,235,.24); box-shadow: 0 18px 70px rgba(0,0,0,.38); }
.section[id], #top { scroll-margin-top: 112px; }
.js .reveal { transition-delay: calc(var(--reveal-order, 0) * 65ms); }
.js .reveal.is-visible { transition-delay: 0ms; }
.brand { width: 116px; height: 54px; overflow: visible; }
.brand img { width: 116px; height: 54px; object-fit: contain; }

.hero {
  min-height: 980px; padding: 150px max(24px, calc((100vw - 1220px) / 2)) 36px;
  grid-template-columns: 1fr; grid-template-rows: auto 470px auto; gap: 8px; isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(52,84,255,.28), transparent 32%),
    radial-gradient(circle at 82% 34%, rgba(73,215,255,.15), transparent 28%),
    linear-gradient(155deg, #030816 0%, #07122a 54%, #060b19 100%);
}
.hero-grid { opacity: .11; }
.hero-stars { position: absolute; inset: 0; opacity: .72; pointer-events: none; }
.hero-stars::before,.hero-stars::after {
  content: ""; position: absolute; inset: -12%; background-repeat: repeat;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(103,222,255,.8) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.5px);
  background-size: 170px 190px, 260px 230px, 330px 280px;
  background-position: 18px 22px, 78px 116px, 160px 42px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 78%);
}
.hero-stars::after { opacity: .45; transform: rotate(13deg) scale(1.08); animation: starDrift 18s ease-in-out infinite alternate; }
.hero-copy { max-width: 980px; margin: 0 auto; padding-top: 8px; display: flex; flex-direction: column; align-items: center; text-align: center; }
h1 { max-width: 960px; font-size: clamp(54px, 7vw, 98px); line-height: 1.07; letter-spacing: -.064em; }
h1 > span { display: inline-block; padding-top: .055em; }
.hero-lead { max-width: 680px; margin-top: 26px; }
.price-inline { margin-top: 24px; padding: 9px 14px; flex-direction: row; gap: 14px; align-items: baseline; border: 1px solid rgba(73,215,255,.2); border-radius: 999px; background: rgba(7,19,36,.48); backdrop-filter: blur(12px); }
.price-inline strong { font-size: 14px; }.price-inline strong span { font-size: 22px; }
.hero-visual { width: min(780px, 100%); min-height: 470px; margin: 26px auto 0; }
.device-image { width: min(620px, 88%); animation-duration: 7s; }
.hero-foot { grid-column: auto; }

.ecosystem-strip { padding: 36px 0 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #050b16; overflow: hidden; }
.ecosystem-strip > p { margin: 0 0 24px; color: #687c94; text-align: center; font: 600 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.ecosystem-window { overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
.ecosystem-track { width: max-content; display: flex; will-change: transform; animation: ecosystemRoll 22s linear infinite; }
.ecosystem-window:hover .ecosystem-track { animation-play-state: paused; }
.ecosystem-group {
  width: max-content; min-width: 100vw; padding-inline: clamp(28px,6vw,96px);
  display: flex; flex: 0 0 auto; align-items: center; justify-content: space-evenly;
  gap: clamp(42px,6vw,96px);
}
.ecosystem-group a,.ecosystem-group > span { min-width: 190px; height: 68px; display: flex; align-items: center; justify-content: center; gap: 12px; opacity: .62; filter: grayscale(1); transition: opacity .25s ease, filter .25s ease; }
.ecosystem-group a:hover { opacity: 1; filter: grayscale(0); }
.ecosystem-group img { max-width: 184px; max-height: 54px; object-fit: contain; }
.ecosystem-group .aws-mark { width: 72px; height: 44px; border-radius: 4px; object-fit: cover; }
.ecosystem-group span,.ecosystem-group b { color: #e5edf5; font-size: 14px; font-weight: 700; }
.brand-marquee { padding: 28px 0; width: 100%; overflow: hidden; color: #07101d; background: linear-gradient(92deg,#dff8ff,#cbefff 55%,#e8fbff); }
.brand-marquee > div { width: max-content; display: flex; align-items: center; gap: 28px; animation: brandRoll 26s linear infinite; }
.brand-marquee span { font-size: clamp(30px,4vw,58px); font-weight: 800; letter-spacing: -.05em; white-space: nowrap; }
.brand-marquee i { width: 11px; height: 11px; border-radius: 50%; background: #087ea4; }

.story-intro { max-width: 850px; padding: 125px 0 78px; }
.story-intro h2 { margin-top: 18px; }.story-intro p { max-width: 650px; margin: 24px 0 0; color: #91a4b9; font-size: 17px; line-height: 1.7; }
.story-card-wrap { min-height: 94vh; padding-bottom: 80px; }
.story-card { width: 100%; transform-origin: center top; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.dashboard-stage { margin-top: 0; }
.response-stage { min-height: 680px; padding: clamp(42px,6vw,82px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: radial-gradient(circle at 70% 40%,rgba(255,126,74,.13),transparent 34%),linear-gradient(145deg,#0a1423,#07101b); }
.response-copy > p { max-width: 520px; color: #94a4b6; font-size: 17px; line-height: 1.7; }
.response-points { margin-top: 34px; display: grid; gap: 12px; color: #c1cfdb; font-size: 13px; }
.response-points span { display: flex; gap: 10px; align-items: center; }.response-points svg { width: 17px; color: var(--cyan); }
.incident-panel { max-width: 590px; padding: 20px; border: 1px solid rgba(194,215,234,.18); border-radius: 20px; background: rgba(4,10,18,.8); box-shadow: 0 28px 70px rgba(0,0,0,.34); }
.incident-head { padding: 3px 2px 18px; display: flex; justify-content: space-between; color: #8295aa; font: 600 10px/1 var(--mono); letter-spacing: .08em; }
.incident-head span { display: flex; gap: 8px; align-items: center; color: #ffc0a2; }.incident-head i { width: 7px; height: 7px; border-radius: 50%; background: #ff7644; box-shadow: 0 0 14px #ff7644; }
.incident-map { position: relative; height: 230px; display: grid; place-items: center; border: 1px solid rgba(158,190,218,.13); border-radius: 14px; overflow: hidden; background: #0b1927; }
.incident-map b { position: absolute; left: 18px; bottom: 16px; color: #bdcad6; font-size: 11px; }
.incident-radar { position: relative; z-index: 2; width: 18px; height: 18px; border: 4px solid #0d1c2b; border-radius: 50%; background: #ff7444; box-shadow: 0 0 0 10px rgba(255,116,68,.13),0 0 35px rgba(255,116,68,.45); }
.incident-radar::before,.incident-radar::after { content: ""; position: absolute; inset: -24px; border: 1px solid rgba(255,126,80,.42); border-radius: 50%; animation: radarPulse 2.8s ease-out infinite; }
.incident-radar::after { animation-delay: 1.4s; }
.incident-timeline { margin: 18px 0 0; padding: 0; display: grid; list-style: none; }
.incident-timeline li { position: relative; padding: 13px 10px 13px 105px; border-top: 1px solid rgba(158,190,218,.12); }
.incident-timeline li::before { content: ""; position: absolute; left: 79px; top: 18px; width: 7px; height: 7px; border-radius: 50%; background: #33465a; }
.incident-timeline li.done::before { background: var(--green); box-shadow: 0 0 11px rgba(85,230,165,.55); }.incident-timeline li.active::before { background: var(--orange); box-shadow: 0 0 12px rgba(255,159,67,.7); }
.incident-timeline span { position: absolute; left: 8px; top: 15px; color: #63788e; font: 600 9px/1 var(--mono); }.incident-timeline strong,.incident-timeline em { display: block; }.incident-timeline strong { color: #e4edf5; font-size: 12px; }.incident-timeline em { margin-top: 4px; color: #657a90; font-size: 9px; font-style: normal; }

.company-section { background: radial-gradient(circle at 15% 10%,rgba(55,125,255,.12),transparent 28%),#0a1524; }
.company-heading { max-width: 900px; }.company-heading > p { max-width: 760px; margin: 24px 0 0; color: #a2b2c4; font-size: 18px; line-height: 1.75; }
.company-layout { margin-top: 68px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.company-story { padding: clamp(32px,5vw,58px); border: 1px solid var(--line); border-radius: 24px; background: rgba(4,12,22,.62); }
.company-story > span { color: var(--cyan); font: 600 10px/1 var(--mono); letter-spacing: .12em; }.company-story h3 { margin: 22px 0; font-size: clamp(27px,3vw,42px); line-height: 1.12; letter-spacing: -.04em; }.company-story p { color: #96a8bb; line-height: 1.8; }
.company-values { display: grid; gap: 12px; }
.value-card { min-height: 166px; padding: 26px; display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.025); transition: border-color .25s ease, background .25s ease; }.value-card:hover { border-color: rgba(73,215,255,.32); background: rgba(73,215,255,.045); }.value-card > strong { color: #57718c; font: 600 12px/1 var(--mono); }.value-card h3 { margin: 0 0 9px; font-size: 21px; }.value-card p { margin: 0; color: #8296ab; font-size: 13px; line-height: 1.7; }
.about-numbers { margin-top: 20px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }.about-numbers div { padding: 30px; background: rgba(255,255,255,.018); }.about-numbers div + div { border-left: 1px solid var(--line); }.about-numbers strong { display: block; font-size: clamp(34px,4vw,54px); letter-spacing: -.05em; }.about-numbers span { display: block; margin-top: 8px; color: #72869d; font-size: 12px; }

@keyframes starDrift { to { transform: rotate(13deg) scale(1.08) translate3d(1.5%, -1.5%, 0); } }
@keyframes ecosystemRoll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@keyframes brandRoll { to { transform: translateX(-48%); } }
@keyframes radarPulse { 0% { scale: .2; opacity: 0; } 30% { opacity: 1; } 100% { scale: 1.45; opacity: 0; } }

@media (min-width: 981px) and (min-height: 760px) {
  .story-card { position: sticky; top: 108px; }
  .story-card-wrap:nth-of-type(3) .story-card { top: 120px; }
  .story-card-wrap:nth-of-type(4) .story-card { top: 132px; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }.nav-cta { justify-self: end; }
  .hero { padding-top: 140px; text-align: center; }.hero-visual { min-height: 440px; }
  .response-stage,.company-layout { grid-template-columns: 1fr; }.response-stage { gap: 45px; }.incident-panel { max-width: none; }.company-layout { gap: 16px; }
}

@media (max-width: 620px) {
  .brand { width: 90px; height: 46px; }.brand img { width: 90px; height: 46px; }
  .hero { min-height: 850px; padding: 118px 18px 28px; grid-template-rows: auto 370px auto; }.price-inline { padding: 10px 12px; flex-direction: column; gap: 4px; align-items: center; }.hero-visual { min-height: 370px; margin-top: 24px; }
  .ecosystem-group { gap: 34px; padding-inline: 28px; }.ecosystem-group a,.ecosystem-group > span { min-width: 160px; }.brand-marquee { padding: 20px 0; }
  .story-intro { padding: 90px 0 55px; }.story-card-wrap { min-height: auto; padding-bottom: 28px; }.product-stage,.dashboard-stage,.response-stage { border-radius: 20px; }
  .response-stage { min-height: 0; padding: 36px 22px; gap: 34px; }.incident-panel { padding: 14px; }.incident-map { height: 190px; }.incident-timeline li { padding-left: 95px; }.incident-timeline li::before { left: 70px; }
  .company-heading > p { font-size: 16px; }.company-layout { margin-top: 46px; }.company-story { padding: 30px 22px; }.value-card { grid-template-columns: 38px 1fr; padding: 22px 18px; }.about-numbers { grid-template-columns: 1fr; }.about-numbers div + div { border-left: 0; border-top: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-track,.brand-marquee > div,.hero-stars::after,.incident-radar::before,.incident-radar::after { animation: none !important; }
}
