:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-elevated: #091017;
  --text: #f6fbff;
  --muted: #a7b7c8;
  --subtle: #6f8398;
  --line: rgba(195, 230, 255, 0.18);
  --line-strong: rgba(202, 237, 255, 0.34);
  --glass: rgba(8, 16, 24, 0.58);
  --glass-bright: rgba(255, 255, 255, 0.12);
  --cyan: #29d9ff;
  --blue: #1687ff;
  --green: #7cffc8;
  --silver: #dce8f2;
  --shadow: rgba(0, 0, 0, 0.46);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(41, 217, 255, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0.96));
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

body.page-leaving::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.page-entering::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: pageVeilOut 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-leaving .site-header,
body.page-leaving main,
body.page-leaving .site-footer {
  opacity: 0.68;
  transform: translateY(-10px) scale(0.992);
  filter: blur(8px);
}

body.page-entering .site-header,
body.page-entering main,
body.page-entering .site-footer {
  animation: pageSettleIn 540ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.home-page {
  background: #05070a;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 50;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius-xs);
  background: var(--text);
  color: var(--bg);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 20px;
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

main,
.site-footer {
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav {
  position: relative;
  width: min(1120px, calc(100vw - 40px));
  min-height: 58px;
  margin: 0 auto;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.glass-shell,
.glass-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    var(--glass);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 60px var(--shadow);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.glass-shell::before,
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-shell {
  border-radius: 999px;
}

.glass-panel {
  border-radius: var(--radius-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 26px rgba(41, 217, 255, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.nav-links a.nav-coming {
  color: #7d8894;
}

.nav-links a.nav-coming:hover,
.nav-links a.nav-coming:focus-visible {
  color: #c2ccd6;
  background: rgba(255, 255, 255, 0.055);
}

.nav-links a.is-current {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
}

.nav-links span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(41, 217, 255, 0.1);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a.nav-coming span {
  color: #aab4bf;
  background: rgba(156, 168, 181, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 17px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 22px 84px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.72) 33%, rgba(5, 7, 10, 0.18) 68%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.72) 92%, var(--bg) 100%);
}

.hero-content {
  width: min(1120px, calc(100vw - 44px));
  margin: 0 auto;
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  width: min(760px, 100%);
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.92;
  font-weight: 700;
}

h1 span {
  display: block;
}

.hero-copy {
  width: min(560px, 100%);
  margin-bottom: 16px;
  color: #d3e3ef;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.slogan {
  width: min(560px, 100%);
  margin-bottom: 34px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--text);
  color: #05070a;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(124, 255, 200, 0.5);
  background: rgba(124, 255, 200, 0.12);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button-muted {
  border-color: rgba(172, 184, 196, 0.26);
  color: #c4ccd4;
  background: rgba(255, 255, 255, 0.055);
}

.button-muted:hover,
.button-muted:focus-visible {
  border-color: rgba(200, 211, 222, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.hero-status {
  position: absolute;
  right: max(22px, calc((100vw - 1120px) / 2));
  bottom: 28px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.status-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(124, 255, 200, 0.9);
}

.section {
  position: relative;
  scroll-margin-top: 96px;
  padding: clamp(72px, 10vw, 132px) 22px;
  background: var(--bg);
}

.section-inner {
  width: min(1120px, calc(100vw - 44px));
  margin: 0 auto;
}

#products {
  scroll-margin-top: 0;
}

.intro-band {
  border-top: 1px solid rgba(195, 230, 255, 0.08);
  border-bottom: 1px solid rgba(195, 230, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 22, 31, 0.82), rgba(5, 7, 10, 1)),
    var(--bg);
}

.intro-grid,
.lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.section-heading {
  width: min(860px, 100%);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.3vw, 4.2rem);
  line-height: 1;
  font-weight: 700;
  text-wrap: balance;
}

.intro-copy {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.65;
}

.brand-banner-section {
  position: relative;
  min-height: clamp(520px, 66vw, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 10vw, 132px) 22px;
  background: #020407;
  scroll-margin-top: 96px;
}

.brand-banner-media,
.brand-banner-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-banner-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.brand-banner-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.95), rgba(2, 4, 7, 0.62) 46%, rgba(2, 4, 7, 0.22)),
    linear-gradient(180deg, rgba(2, 4, 7, 0.12), #05070a 100%);
}

.brand-banner-content {
  width: min(720px, 100%);
  margin-left: max(0px, calc((100vw - 1120px) / 2));
}

.brand-emblem {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 22px 70px rgba(41, 217, 255, 0.24);
}

.brand-banner-content h2 {
  margin-bottom: 22px;
}

.brand-banner-content p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: #c8d7e4;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.68;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.product-card {
  min-height: 420px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition:
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 78px;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 217, 255, 0.5), transparent);
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 28px 80px rgba(0, 0, 0, 0.5);
  }

  .product-card-featured:hover {
    border-color: rgba(124, 255, 200, 0.5);
  }

  .product-card-coming:hover {
    border-color: rgba(218, 228, 238, 0.32);
  }
}

.product-card-featured {
  background:
    linear-gradient(135deg, rgba(41, 217, 255, 0.17), rgba(255, 255, 255, 0.05) 48%, rgba(124, 255, 200, 0.08)),
    rgba(8, 16, 24, 0.72);
  border-color: rgba(41, 217, 255, 0.42);
}

.product-card-coming {
  background:
    linear-gradient(135deg, rgba(168, 184, 200, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(14, 18, 24, 0.74);
  border-color: rgba(174, 187, 200, 0.24);
}

.product-card-coming .availability {
  color: #aab4bf;
  background: rgba(167, 183, 200, 0.1);
  border-color: rgba(191, 203, 216, 0.14);
}

.product-card-coming .signal-list li::before {
  background: #8793a0;
  box-shadow: none;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 68px;
}

.product-kicker,
.availability {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-kicker {
  color: var(--subtle);
}

.availability {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #d8e9f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.availability.available {
  color: #05110c;
  background: var(--green);
  border-color: transparent;
}

.product-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.35vw, 2.28rem);
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.product-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 1rem;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.signal-list li {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d2e3ef;
  font-size: 0.94rem;
}

.signal-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(41, 217, 255, 0.7);
}

.card-actions {
  margin-top: 24px;
}

.lab-section {
  padding-top: 0;
}

.lab-stack {
  display: grid;
  gap: 14px;
}

.lab-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 18px;
}

.lab-row span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 600;
}

.lab-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  padding: 54px 22px 42px;
  background: #030508;
  border-top: 1px solid rgba(195, 230, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 36px;
}

.footer-inner p,
.footer-links a {
  margin: 0;
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-brand {
  flex: 0 0 auto;
  margin-bottom: 18px;
}

.footer-slogan {
  color: var(--text) !important;
  font-family: var(--font-display);
  font-size: 1.16rem !important;
  font-weight: 700;
}

.footer-legal-note {
  width: min(760px, 100%);
  margin-top: 14px !important;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: end;
}

.footer-links a {
  color: #c7d8e6;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
  outline: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(195, 230, 255, 0.1);
}

.legal-main {
  min-height: 100svh;
  padding: 132px 22px 72px;
  background:
    radial-gradient(circle at top right, rgba(41, 217, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #091017, #05070a 38%);
}

.legal-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 44px;
}

.legal-header h1 {
  width: min(760px, 100%);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.legal-updated {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.legal-content {
  display: grid;
  gap: 28px;
  color: #c7d8e6;
  line-height: 1.72;
}

.legal-content section {
  padding-top: 22px;
  border-top: 1px solid rgba(195, 230, 255, 0.12);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.legal-content p,
.legal-content ul {
  margin-top: 0;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.coming-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 22px 92px;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.96), rgba(8, 19, 28, 0.92) 48%, #05070a),
    var(--bg);
}

.coming-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.coming-copy h1 {
  width: min(700px, 100%);
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.autochatflow-page .coming-copy h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.65rem);
  overflow-wrap: normal;
}

.autochatflow-page .coming-copy h1 span {
  white-space: nowrap;
}

.coming-copy-main {
  width: min(640px, 100%);
  color: #c9d8e4;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.68;
}

.coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.coming-visual {
  min-width: 0;
  min-height: clamp(420px, 44vw, 580px);
  overflow: hidden;
  isolation: isolate;
}

.coming-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.16) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: glassSweep 6s ease-in-out infinite;
}

.map-stage,
.flow-stage {
  background:
    linear-gradient(135deg, rgba(41, 217, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 24, 0.72);
}

.map-stage::before,
.flow-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(195, 230, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 230, 255, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}

.map-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(41, 217, 255, 0.92), transparent);
  transform-origin: left center;
  animation: signalTrace 4.8s ease-in-out infinite;
}

.map-line-a {
  width: 52%;
  left: 16%;
  top: 38%;
  transform: rotate(19deg);
}

.map-line-b {
  width: 42%;
  left: 28%;
  top: 63%;
  transform: rotate(-28deg);
  animation-delay: 1s;
}

.map-line-c {
  width: 34%;
  left: 48%;
  top: 28%;
  transform: rotate(56deg);
  animation-delay: 1.8s;
}

.map-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(246, 251, 255, 0.92);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(41, 217, 255, 0.62);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.map-node-home {
  left: 18%;
  top: 35%;
}

.map-node-friend {
  right: 26%;
  top: 26%;
  animation-delay: 0.7s;
}

.map-node-meet {
  left: 54%;
  bottom: 24%;
  background: var(--green);
  animation-delay: 1.2s;
}

.map-pulse {
  position: absolute;
  left: 54%;
  bottom: 24%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(124, 255, 200, 0.42);
  border-radius: 50%;
  transform: translate(-43%, 43%);
  animation: radiusPulse 3.2s ease-out infinite;
}

.eta-panel {
  position: absolute;
  width: 180px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(195, 230, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 58%),
    rgba(5, 7, 10, 0.62);
  animation: panelFloat 5.6s ease-in-out infinite;
}

.eta-panel-a {
  left: 10%;
  bottom: 14%;
}

.eta-panel-b {
  right: 10%;
  top: 14%;
  animation-delay: 1.4s;
}

.flow-card {
  position: absolute;
  width: 176px;
  height: 82px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(195, 230, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 10, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.flow-card::before,
.flow-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(210, 227, 239, 0.34);
}

.flow-card::before {
  top: 24px;
}

.flow-card::after {
  top: 44px;
  right: 54px;
}

.flow-card-a {
  left: 8%;
  top: 12%;
}

.flow-card-b {
  right: 10%;
  top: 18%;
}

.flow-card-c {
  left: 12%;
  bottom: 16%;
}

.flow-card-d {
  right: 8%;
  bottom: 12%;
}

.flow-lane {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(41, 217, 255, 0.12), rgba(41, 217, 255, 0.82), rgba(124, 255, 200, 0.14));
  animation: laneGlow 3.8s ease-in-out infinite;
}

.flow-lane-a {
  left: 28%;
  right: 28%;
  top: 30%;
}

.flow-lane-b {
  left: 30%;
  right: 30%;
  top: 50%;
  transform: rotate(22deg);
  animation-delay: 0.8s;
}

.flow-lane-c {
  left: 29%;
  right: 28%;
  bottom: 30%;
  animation-delay: 1.5s;
}

.flow-packet {
  position: absolute;
  width: 42px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(124, 255, 200, 0.68);
  animation: packetMove 4.8s ease-in-out infinite;
}

.flow-packet-a {
  left: 27%;
  top: calc(30% - 8px);
}

.flow-packet-b {
  left: 27%;
  bottom: calc(30% - 8px);
  animation-delay: 1.8s;
}

.coming-detail-section {
  padding-top: 0;
}

.coming-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.coming-card {
  min-height: 248px;
  padding: 24px;
}

.coming-card span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.coming-card h3 {
  margin: 72px 0 16px;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.coming-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

@keyframes glassSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalTrace {
  0%,
  100% {
    opacity: 0.28;
    filter: saturate(90%);
  }
  48% {
    opacity: 1;
    filter: saturate(150%);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

@keyframes radiusPulse {
  0% {
    opacity: 0.8;
    transform: translate(-43%, 43%) scale(0.34);
  }
  100% {
    opacity: 0;
    transform: translate(-43%, 43%) scale(1.1);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes laneGlow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes packetMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    transform: translateX(240px);
    opacity: 0;
  }
}

@keyframes pageVeilOut {
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
  }
}

@keyframes pageSettleIn {
  from {
    opacity: 0.78;
    transform: translateY(10px) scale(0.992);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    top: 12px;
    padding: 0;
  }

  .nav {
    width: calc(100vw - 24px);
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    position: absolute;
    top: 8px;
    right: 8px;
    flex: 0 0 42px;
    margin-left: auto;
    background: rgba(246, 251, 255, 0.94);
    color: #05070a;
    border-color: rgba(255, 255, 255, 0.36);
  }

  .nav-links {
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 46px;
    justify-content: space-between;
  }

  .hero {
    min-height: 94svh;
    padding-top: 124px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.76) 48%, rgba(5, 7, 10, 0.26) 100%),
      linear-gradient(180deg, rgba(5, 7, 10, 0.15), rgba(5, 7, 10, 0.8) 92%, var(--bg) 100%);
  }

  .product-grid,
  .intro-grid,
  .lab-grid,
  .coming-grid,
  .coming-card-grid {
    grid-template-columns: 1fr;
  }

  .coming-visual {
    min-height: 440px;
  }

  .brand-banner-media {
    object-position: 62% center;
  }

  .product-card {
    min-height: 340px;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 620px) {
  .hero-content,
  .section-inner {
    width: calc(100vw - 36px);
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    margin: 34px 0 0;
  }

  .card-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 54px;
  }

  .product-card {
    padding: 20px;
  }

  .coming-actions {
    width: 100%;
  }

  .coming-hero {
    padding: 116px 18px 76px;
  }

  .coming-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  .coming-visual {
    min-height: 360px;
  }

  .eta-panel,
  .flow-card {
    transform: scale(0.82);
  }

  .flow-packet {
    animation-name: packetMoveSmall;
  }

  .brand-banner-section {
    min-height: 560px;
  }

  .brand-banner-shade {
    background:
      linear-gradient(90deg, rgba(2, 4, 7, 0.98), rgba(2, 4, 7, 0.72)),
      linear-gradient(180deg, rgba(2, 4, 7, 0.14), #05070a 100%);
  }

  .legal-main {
    padding-top: 116px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes packetMoveSmall {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    transform: translateX(150px);
    opacity: 0;
  }
}
