@font-face {
  font-family: Inter;
  src: url('./assets/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --lime: #d5ff64;
  --bg: #0b0e0d;
  --line: #ffffff24;
  --muted: #a8afa9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  background: var(--bg);
  color: #f1f4ed;
  font-family: Inter, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
.skip {
  position: fixed;
  top: -100px;
  padding: 15px;
  background: var(--lime);
  color: #111;
  z-index: 30;
}
.skip:focus {
  top: 10px;
}
.demo-note {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 4%;
  font: 9px monospace;
  color: #c5cbc5;
  border-bottom: 1px solid var(--line);
}
.demo-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
header {
  padding: 25px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-symbol {
  font-size: 34px;
  color: var(--lime);
}
nav {
  display: flex;
  gap: 35px;
  align-items: center;
  font-size: 11px;
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 19px 23px;
  background: var(--lime);
  color: #10150c;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #e5ffa4;
  transform: translateY(-2px);
}
.button.small {
  padding: 12px 17px;
  font-size: 10px;
}
.hero {
  padding: 48px 4% 0;
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    90deg,
    transparent calc(25% - 1px),
    #ffffff07 25%,
    transparent calc(25% + 1px)
  );
  background-size: 25% 100%;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.eyebrow {
  font: 10px/1.6 monospace;
  letter-spacing: 0.09em;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 12px #d5ff6455;
}
.coordinate {
  font: 9px/1.5 monospace;
  color: var(--muted);
}
h1 {
  font-size: clamp(65px, 10.3vw, 164px);
  line-height: 0.89;
  letter-spacing: -0.065em;
  font-weight: 600;
  margin: 50px 0 38px;
  position: relative;
}
h1 > span:not(.lime) {
  color: var(--muted);
}
.lime {
  color: var(--lime);
}
.hero-under {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  position: relative;
}
.hero-under p {
  font-size: 13px;
  line-height: 1.7;
  color: #bcc3bc;
}
.hero-under .edition {
  font: 9px/1.6 monospace;
}
.hero-line {
  margin-top: 55px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 25px;
  font: 9px monospace;
  color: var(--muted);
}
.hero-line i {
  height: 1px;
  background: #d5ff6455;
  flex: 1;
  position: relative;
}
.hero-line i:after {
  content: '+';
  position: absolute;
  right: 0;
  top: -6px;
  color: var(--lime);
}
.technology {
  position: relative;
  border-top: 1px solid var(--line);
  background: #101512;
}
.scene-sticky {
  height: 100svh;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.scene-frame {
  width: 64%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #24301d 0, transparent 65%);
}
.scene-fallback {
  position: absolute;
  inset: 16% 0;
  width: 100%;
  height: 68%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.scene-frame.ready .scene-fallback {
  opacity: 0;
}
#sensor-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s;
}
.scene-frame.ready #sensor-canvas {
  opacity: 1;
}
.scene-caption {
  position: absolute;
  bottom: 7%;
  left: 6%;
  right: 6%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #a4ae9f;
  font: 8px monospace;
}
.scene-legend {
  position: absolute;
  top: 8%;
  left: 6%;
  right: 6%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 8px monospace;
  color: #818c80;
}
.scene-legend span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.scene-legend .active {
  color: var(--lime);
  border-color: var(--lime);
}
.chapters {
  margin-top: -100svh;
  position: relative;
  width: 39%;
  padding-left: 4%;
  pointer-events: none;
}
.chapters a {
  pointer-events: auto;
}
.chapters article {
  height: 100svh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-right: 15px;
}
.chapters .eyebrow {
  color: var(--lime);
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(36px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}
.chapters p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  color: #b1bab0;
  max-width: 310px;
  margin-top: 25px;
}
.technical-label {
  font: 9px monospace;
  color: #9ba695;
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 20px;
  width: max-content;
  max-width: 100%;
}
.text-link {
  background: none;
  border: 0;
  border-bottom: 1px solid #d5ff6477;
  color: var(--lime);
  font-size: 11px;
  padding: 0 0 8px;
  text-align: left;
  width: fit-content;
  margin-top: 30px;
}
.text-link:hover {
  color: white;
}
.dashboard-section {
  padding: 110px 4%;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 45px;
}
.section-top h2 {
  margin-top: 25px;
}
.section-top > p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.dashboard {
  background: #131815;
  border: 1px solid #344033;
  box-shadow: 0 40px 100px #0005;
}
.dashboard-toolbar {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  font: 10px monospace;
}
.dashboard-toolbar label {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
}
select {
  background: #202820;
  color: #ecf1e8;
  border: 1px solid #4a5545;
  border-radius: 0;
  padding: 10px;
  font-size: 11px;
  max-width: 100%;
}
.sample-tag {
  font-size: 8px;
  color: var(--lime);
  border: 1px solid #d5ff6440;
  padding: 6px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.metrics > div {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.metrics > div:last-child {
  border: 0;
}
.metrics > div > span {
  font: 9px monospace;
  color: var(--muted);
}
.metrics strong {
  display: block;
  font-size: 66px;
  font-weight: 400;
  letter-spacing: -4px;
  margin: 15px 0;
}
.metrics strong span {
  font-size: 25px;
  color: #85927d;
  letter-spacing: -1px;
}
.metrics small {
  font-size: 9px;
  color: var(--muted);
}
.dashboard-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.chart-area {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.chart-title,
.chart-axis {
  display: flex;
  justify-content: space-between;
  font: 8px monospace;
  color: #aeb8a7;
}
.chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 30px 0 15px;
  background: repeating-linear-gradient(to top, transparent 0, transparent 44px, #ffffff0c 45px);
}
.chart > div {
  flex: 1;
  height: var(--bar);
  background: #9dbd4c;
  min-width: 0;
  border-top: 2px solid var(--lime);
  transition: height 0.4s;
}
.chart > div:nth-child(3n) {
  background: #d5ff64;
}
.event-log {
  padding: 30px;
}
.event-time {
  display: block;
  font: 9px monospace;
  color: #9dac90;
  margin-top: 30px;
}
.event-log h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin: 15px 0;
}
.event-log > p:not(.eyebrow) {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.event-log .text-link {
  margin-top: 20px;
}
.event-log #review-status {
  margin-top: 12px;
  color: var(--lime);
  min-height: 18px;
}
.hardware {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8%;
  padding: 0 4% 110px;
  align-items: center;
}
.hardware-image {
  border: 1px solid var(--line);
}
.hardware img {
  height: 560px;
  object-fit: cover;
}
.hardware h2 {
  margin: 25px 0;
}
.hardware p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 350px;
}
.hardware ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.hardware li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.hardware li span {
  color: var(--lime);
  font: 9px monospace;
  margin-right: 20px;
}
.fine {
  font-size: 9px !important;
}
.deployment {
  background: var(--lime);
  color: #151d0d;
  padding: 65px 4%;
}
.deployment-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 30px 0 55px;
}
.deployment h2 {
  font-size: clamp(65px, 10vw, 150px);
  line-height: 0.85;
  font-weight: 600;
  letter-spacing: -0.07em;
}
.deployment h2 span {
  color: #617b2e;
}
.deployment-heading p {
  font-size: 13px;
  line-height: 1.7;
}
.deployment form > label {
  font: 11px monospace;
}
.range-line {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 25px 0 40px;
}
.range-line input {
  flex: 1;
  accent-color: #17200e;
  min-height: 32px;
  min-width: 0;
}
.range-line output {
  font-size: 24px;
  min-width: 160px;
  text-align: right;
  letter-spacing: -1px;
}
.deployment-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #18210c55;
  padding-top: 30px;
  font-size: 13px;
}
.deployment-result p:first-child {
  max-width: 200px;
}
.deployment-result p:first-child > span {
  font-size: 40px;
  display: block;
}
.deployment-result small {
  font-size: 9px;
  display: block;
  margin-top: 10px;
}
.button.dark {
  background: #18210e;
  color: var(--lime);
}
.button.dark:hover {
  background: #31451a;
}
.deployment .form-status {
  font-size: 12px;
  margin-top: 20px;
  min-height: 20px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 40px 4%;
  font: 9px/1.8 monospace;
}
footer p:last-child {
  color: var(--muted);
}
footer p a {
  text-decoration: underline;
}
.technology.static-scene .scene-sticky {
  height: 65svh;
  position: relative;
}
.technology.static-scene .scene-frame {
  width: 100%;
}
.technology.static-scene .chapters {
  width: 100%;
  margin: 0;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.technology.static-scene .chapters article {
  height: auto;
  padding: 40px 0;
}
.technology.static-scene h2 {
  font-size: 36px;
}
@media (max-width: 850px) {
  h1 {
    font-size: 10.4vw;
  }
  .metrics strong {
    font-size: 52px;
  }
  .dashboard-toolbar {
    flex-wrap: wrap;
  }
  .dashboard-toolbar label {
    margin-left: 0;
  }
  .sample-tag {
    margin-left: auto;
  }
  .hardware {
    gap: 5%;
  }
  .hardware img {
    height: 460px;
  }
  .deployment-result {
    flex-wrap: wrap;
  }
  .deployment-result > p {
    flex: 1;
  }
  .dashboard-bottom {
    grid-template-columns: 1.5fr 1fr;
  }
  .event-log,
  .chart-area {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .demo-note {
    font-size: 7px;
    gap: 10px;
    padding: 10px 5%;
  }
  header {
    padding: 20px 5%;
    position: relative;
  }
  .brand {
    font-size: 25px;
  }
  .menu-toggle {
    display: block;
    background: transparent;
    color: var(--lime);
    border: 1px solid var(--line);
    padding: 12px;
    font: 10px monospace;
  }
  nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #101710;
    padding: 25px 5%;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    gap: 25px;
    align-items: stretch;
  }
  nav.open {
    display: flex;
    flex-direction: column;
  }
  .hero {
    padding: 30px 5% 0;
  }
  .coordinate {
    display: none;
  }
  .eyebrow {
    font-size: 8px;
  }
  h1 {
    font-size: clamp(41px, 10.5vw, 65px);
    margin: 35px 0;
    line-height: 0.96;
  }
  .hero-under {
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
  }
  .hero-under > p {
    font-size: 12px;
  }
  .hero-under .edition {
    display: none;
  }
  .button {
    font-size: 11px;
    padding: 16px 19px;
    gap: 25px;
  }
  .hero-line {
    margin-top: 35px;
    gap: 12px;
    font-size: 8px;
  }
  .scene-sticky {
    height: 100svh;
  }
  .scene-frame {
    width: 100%;
    height: 60%;
    align-self: flex-end;
  }
  .scene-caption {
    bottom: 7%;
    font-size: 6px;
  }
  .scene-legend {
    top: 8%;
    font-size: 6px;
  }
  .chapters {
    width: 100%;
    padding: 0 5%;
  }
  .chapters article {
    justify-content: flex-start;
    padding-top: 55px;
    padding-right: 0;
  }
  .chapters h2 {
    font-size: 38px;
  }
  .chapters .eyebrow {
    margin-bottom: 15px;
  }
  .chapters p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 12px;
    max-width: 350px;
  }
  .technical-label {
    margin-top: 18px;
    padding-top: 12px;
    font-size: 8px;
  }
  .chapters .text-link {
    margin-top: 20px;
  }
  .dashboard-section {
    padding: 65px 5%;
  }
  .section-top {
    display: block;
  }
  .section-top h2 {
    font-size: 40px;
    margin: 20px 0;
  }
  .section-top > p {
    font-size: 11px;
  }
  .dashboard-toolbar {
    padding: 16px;
    gap: 15px;
    font-size: 8px;
  }
  .dashboard-toolbar label {
    width: 100%;
    order: 3;
    justify-content: space-between;
  }
  .sample-tag {
    font-size: 6px;
  }
  .metrics > div {
    padding: 18px 10px;
  }
  .metrics > div > span {
    font-size: 6px;
  }
  .metrics strong {
    font-size: 37px;
    letter-spacing: -2px;
  }
  .metrics strong span {
    font-size: 17px;
  }
  .metrics small {
    font-size: 7px;
  }
  .dashboard-bottom {
    display: block;
  }
  .chart-area {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .chart {
    height: 145px;
    gap: 6px;
  }
  .hardware {
    display: flex;
    flex-direction: column;
    padding: 0 5% 60px;
    gap: 35px;
    align-items: stretch;
  }
  .hardware img {
    height: 340px;
  }
  .hardware h2 {
    font-size: 44px;
  }
  .hardware p:not(.eyebrow) {
    max-width: none;
  }
  .deployment {
    padding: 50px 5%;
  }
  .deployment-heading {
    display: block;
    margin: 25px 0 40px;
  }
  .deployment h2 {
    font-size: 22vw;
  }
  .deployment-heading p {
    margin-top: 30px;
    font-size: 12px;
  }
  .range-line {
    gap: 15px;
  }
  .range-line output {
    font-size: 18px;
    min-width: 118px;
  }
  .deployment-result {
    align-items: flex-start;
    gap: 25px;
    font-size: 11px;
  }
  .deployment-result small {
    line-height: 1.5;
    font-size: 8px;
  }
  .deployment-result > .button {
    width: 100%;
  }
  footer {
    flex-wrap: wrap;
    padding: 35px 5%;
    font-size: 8px;
  }
  footer p:last-child {
    width: 100%;
  }
  .technology.static-scene .scene-sticky {
    height: 55svh;
  }
  .technology.static-scene .scene-frame {
    height: 100%;
  }
  .technology.static-scene .chapters {
    display: block;
    padding: 0 5%;
  }
  .technology.static-scene .chapters article {
    padding: 30px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
