/* Generated from styles.css for FTP-safe upload. Keep order. */
:root {
  --ink: #101418;
  --muted: #5f6872;
  --line: #d9e1e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --steel: #25313b;
  --cyan: #12b8d7;
  --green: #45c489;
  --amber: #f1b84a;
  --shadow: 0 24px 70px rgba(20, 31, 42, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 251, 0.96)),
    radial-gradient(circle at 82% 12%, rgba(18, 184, 215, 0.16), transparent 34%),
    linear-gradient(135deg, #f8fbfd 0%, #eef3f6 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 10, 13, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.topbar.is-elevated {
  background: rgba(7, 10, 13, 0.9);
  box-shadow:
    0 12px 38px rgba(6, 10, 14, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 192px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--steel), #0b5968);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(232, 239, 244, 0.62);
  font-size: 12px;
}

.brand strong {
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(245, 248, 250, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: rgba(245, 248, 250, 0.72);
  cursor: pointer;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.language-switch button.active {
  color: #0a1014;
  background: #ffffff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta {
  padding: 0 18px;
  color: #0a1014;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.button {
  padding: 0 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(16, 20, 24, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 94px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 14px;
  color: var(--steel);
  font-weight: 700;
}

.mobile-language-switch {
  display: none;
  margin: 10px 12px 4px;
  width: max-content;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .language-switch {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.mobile-menu .language-switch button {
  color: var(--muted);
}

.mobile-menu .language-switch button.active {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 52px;
  align-items: center;
  margin: 0 auto;
  padding: 132px 0 74px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 96px;
  left: 50%;
  width: 100vw;
  height: calc(100% - 28px);
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 84px),
    linear-gradient(135deg, #070a0d 0%, #101417 44%, #191716 100%);
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: max(-8vw, -120px);
  bottom: 36px;
  left: 42%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 184, 215, 0.7), rgba(241, 184, 74, 0.52), transparent);
  box-shadow:
    0 -86px 120px rgba(18, 184, 215, 0.12),
    0 42px 90px rgba(241, 184, 74, 0.08);
}

.hero h1 {
  color: #f8fbff;
  text-wrap: balance;
}

.hero .eyebrow {
  color: #6fe7f7;
}

.hero .hero-text {
  color: rgba(235, 241, 244, 0.76);
}

.hero .button.primary {
  color: #081014;
  background: linear-gradient(135deg, #ffffff, #dff9ff);
  box-shadow:
    0 18px 42px rgba(5, 12, 16, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero .button.secondary {
  color: #f7fbff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #087d91;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text,
.intro > p,
.finder-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.trust-row {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  grid-column: 1;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(9, 13, 16, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.trust-row dt {
  color: #f8fbff;
  font-size: 28px;
  font-weight: 850;
}

.trust-row dd {
  margin: 4px 0 0;
  color: rgba(232, 239, 244, 0.66);
  font-size: 13px;
}

.hero-stage {
  --stage-x: 50%;
  --stage-y: 50%;
  position: relative;
  min-height: 560px;
  overflow: visible;
  perspective: 1200px;
  isolation: isolate;
}

.stage-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(-120px);
}

.ambient-plane,
.ambient-grid,
.ambient-scan {
  position: absolute;
  display: block;
  pointer-events: none;
}

.ambient-plane {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(18, 184, 215, 0.08) 44%, rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 24px),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.22);
  opacity: 0.64;
  transform-style: preserve-3d;
}

.ambient-plane-a {
  top: 54px;
  right: 6%;
  width: 64%;
  height: 72%;
  clip-path: polygon(18% 0, 100% 10%, 86% 100%, 0 82%);
  transform: rotateX(56deg) rotateZ(-13deg) translate3d(12px, 0, -80px);
  animation: ambientPlaneDrift 9s ease-in-out infinite;
}

.ambient-plane-b {
  right: 0;
  bottom: 16px;
  width: 78%;
  height: 38%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(241, 184, 74, 0.14) 48%, rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    rgba(255, 255, 255, 0.025);
  clip-path: polygon(0 26%, 88% 0, 100% 58%, 16% 100%);
  transform: rotateX(62deg) rotateZ(-4deg) translate3d(-4px, 0, -120px);
  animation: ambientPlaneDrift 10.5s ease-in-out infinite reverse;
}

.ambient-grid {
  inset: 16% 0 8% 4%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.48;
  transform: rotateX(62deg) rotateZ(-8deg) scale(1.18);
  animation: ambientGridSlide 12s linear infinite;
}

.ambient-scan {
  top: 6%;
  left: -32%;
  width: 44%;
  height: 104%;
  background: linear-gradient(104deg, transparent 0 18%, rgba(255, 255, 255, 0.42) 42%, rgba(18, 184, 215, 0.16) 48%, transparent 70% 100%);
  opacity: 0.32;
  transform: rotateZ(18deg);
  animation: ambientScanTravel 5.8s ease-in-out infinite;
}

.hero-stage.is-interacting .ambient-scan {
  animation-duration: 3.6s;
  opacity: 0.56;
}

.hero-stage.is-interacting .ambient-grid {
  opacity: 0.64;
}

.display-stack {
  --glare-x: 0px;
  --glare-y: 0px;
  --module-rotate-x: 0deg;
  --module-rotate-y: 0deg;
  --module-shift-x: 0px;
  --module-shift-y: 0px;
  position: absolute;
  top: 38px;
  right: 0;
  left: 0;
  width: min(100%, 660px);
  height: 480px;
  margin: 0 auto;
  cursor: pointer;
  outline: none;
  transform: translate3d(var(--module-shift-x), var(--module-shift-y), 0) rotateX(var(--module-rotate-x))
    rotateY(var(--module-rotate-y));
  transform-style: preserve-3d;
  transition: filter 0.2s ease, transform 0.16s ease;
  will-change: transform, filter;
  z-index: 2;
}

.display-stack::before,
.display-stack::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.display-stack::before {
  right: 54px;
  bottom: 18px;
  left: 60px;
  height: 76px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.38), transparent),
    linear-gradient(180deg, rgba(18, 184, 215, 0.12), rgba(241, 184, 74, 0.08));
  filter: blur(1px);
  opacity: 0.64;
  transform: rotateX(68deg) translateZ(-86px);
}

.display-stack::after {
  top: 28px;
  right: 28px;
  bottom: 28px;
  left: 24px;
  border: 1px solid rgba(10, 21, 28, 0.08);
  background:
    radial-gradient(circle at var(--stage-x) var(--stage-y), rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 48%, transparent 58% 100%);
  clip-path: polygon(4% 6%, 96% 0, 100% 90%, 0 100%);
  opacity: 0.58;
  transform: translateZ(-38px) rotateX(4deg);
  mix-blend-mode: screen;
  transition: opacity 0.2s ease;
}

.display-stack.is-interacting {
  filter: drop-shadow(0 22px 32px rgba(20, 36, 44, 0.16));
}

.display-stack.is-interacting::after {
  opacity: 0.84;
}

.display-stack:focus-visible {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) drop-shadow(0 0 0 4px rgba(18, 184, 215, 0.24));
}

.lcd-module-svg {
  position: absolute;
  top: 8px;
  left: 50%;
  width: min(660px, calc(100% + 96px));
  max-width: none;
  overflow: visible;
  translate: -50% 0;
  transform-origin: 50% 55%;
  animation: realisticModuleFloat 7s ease-in-out infinite;
  z-index: 2;
}

.svg-floor-shadow {
  fill: rgba(19, 32, 42, 0.16);
  filter: blur(14px);
  animation: floorShadowBreath 7s ease-in-out infinite;
}

.svg-module-body {
  transform-origin: 50% 58%;
}

.svg-rear-echo {
  opacity: 0.16;
  transform: translate(22px, -42px) scale(0.92);
}

.svg-rear-echo > rect:first-child {
  fill: #111416;
  stroke: rgba(220, 225, 222, 0.36);
  stroke-width: 2;
}

.rear-metal-panel {
  fill: url("#backMetal");
}

