:root {
  --bg: #06131a;
  --bg-soft: #0d1f28;
  --panel: rgba(15, 31, 40, 0.72);
  --panel-strong: rgba(18, 39, 50, 0.92);
  --line: rgba(164, 214, 214, 0.18);
  --text: #eff8f6;
  --muted: #96b8b4;
  --accent: #8df2c2;
  --accent-2: #59d6ff;
  --accent-3: #ffd37e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-bg: rgba(6, 19, 26, 0.72);
  --selection: rgba(89, 214, 255, 0.3);
  --brand-core: #ffffff;
  --button-text: #031116;
  --button-fill-end: #beffdf;
  --button-shadow: 0 18px 36px rgba(141, 242, 194, 0.16);
  --ghost-bg: rgba(255, 255, 255, 0.03);
  --hero-word-base-color: #ffffff;
  --hero-gradient-start: #8a5cff;
  --hero-gradient-mid: #ff3bd4;
  --hero-gradient-end: #ff9a43;
  --hero-gradient-final: #fff4d6;
  --hero-bus-start: rgba(128, 96, 255, 0.98);
  --hero-bus-mid: rgba(255, 75, 218, 0.96);
  --hero-bus-end: rgba(255, 159, 82, 0.9);
  --hero-bus-glow-a: rgba(255, 72, 216, 0.38);
  --hero-bus-glow-b: rgba(127, 109, 255, 0.22);
  --hero-spark-a: #7f6dff;
  --hero-spark-b: #ff48d8;
  --hero-spark-c: #ff9b52;
  --hero-spark-d: #67d5ff;
  --scrollbar-thumb: rgba(89, 214, 255, 0.52);
  --scrollbar-track: rgba(4, 15, 21, 0.96);
  --footer-contour: rgba(155, 232, 236, 0.34);
  --mono-color: #59d6ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: transparent;
}

body::selection {
  background: var(--selection);
}

body > * {
  position: relative;
}

body > *:not(.screenbg-frame) {
  z-index: 1;
}

body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(141, 242, 194, 0.86), rgba(89, 214, 255, 0.72));
  border: 3px solid rgba(4, 15, 21, 0.96);
  border-radius: 999px;
}

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

button,
input {
  font: inherit;
}

.screenbg-frame {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 40px;
}

.top-mantra-wrap {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  width: 100%;
  overflow-x: clip;
}

.top-mantra {
  margin: 0;
  color: var(--accent);
  font-family: "Tiro Devanagari Sanskrit", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(89, 214, 255, 0.22);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 19, 26, 0.62);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  color: var(--text);
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a,
.nav-link,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(141, 242, 194, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--button-fill-end));
  color: var(--button-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: var(--button-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(141, 242, 194, 0.24);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.94rem;
}

.button-ghost {
  background: var(--ghost-bg);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(6, 19, 26, 0.92);
  backdrop-filter: blur(16px);
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  padding-top: 42px;
}

.eyebrow,
.mono,
.status-pill,
.card-kicker,
.tech-panel-label,
.footer-kicker,
.footer-heading {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.8rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.hero-title-line {
  display: block;
}

.hero-word {
  --hero-word-progress: 0%;
  position: relative;
  display: inline-grid;
  color: var(--hero-word-base-color);
}

.hero-word-base,
.hero-word-gradient {
  grid-area: 1 / 1;
}

.hero-word-base {
  display: inline-flex;
  min-height: 1em;
}

.hero-word-char {
  opacity: 0;
  transform: translateY(0.3em) scale(0.9);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-word-char.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-word-char.is-fresh {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.24);
}

.hero-word-gradient {
  color: transparent;
  background: linear-gradient(90deg, var(--hero-gradient-start), var(--hero-gradient-mid), var(--hero-gradient-end), var(--hero-gradient-final));
  -webkit-background-clip: text;
  background-clip: text;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 1) calc(var(--hero-word-progress) - 14%),
    rgba(0, 0, 0, 0.96) calc(var(--hero-word-progress) - 10%),
    rgba(0, 0, 0, 0.78) calc(var(--hero-word-progress) - 4%),
    rgba(0, 0, 0, 0.45) calc(var(--hero-word-progress) + 2%),
    rgba(0, 0, 0, 0.14) calc(var(--hero-word-progress) + 10%),
    transparent calc(var(--hero-word-progress) + 20%)
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 1) calc(var(--hero-word-progress) - 14%),
    rgba(0, 0, 0, 0.96) calc(var(--hero-word-progress) - 10%),
    rgba(0, 0, 0, 0.78) calc(var(--hero-word-progress) - 4%),
    rgba(0, 0, 0, 0.45) calc(var(--hero-word-progress) + 2%),
    rgba(0, 0, 0, 0.14) calc(var(--hero-word-progress) + 10%),
    transparent calc(var(--hero-word-progress) + 20%)
  );
}

.hero-word-trails {
  position: absolute;
  inset: 54% -3% auto;
  width: 106%;
  height: 0.5em;
  pointer-events: none;
}

.hero-word-trail {
  fill: none;
  stroke-width: 0;
  stroke-linecap: round;
  opacity: 0;
}

.hero-word-trail-a {
  stroke: url(#hero-trail-gradient-a);
}

.hero-word-trail-b {
  stroke: url(#hero-trail-gradient-b);
}

.hero-word-bus {
  position: absolute;
  width: 5px;
  height: 25px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--hero-bus-start), var(--hero-bus-mid), var(--hero-bus-end));
  box-shadow: 0 0 12px var(--hero-bus-glow-a), 0 0 22px var(--hero-bus-glow-b);
  opacity: 0;
}

.hero-word.is-typing .hero-word-bus {
  opacity: 1;
}

.hero-word-sparks {
  position: absolute;
  inset: -18% -8%;
  pointer-events: none;
}

.hero-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--spark-color);
  box-shadow: 0 0 16px var(--spark-color);
  animation: spark-burst 850ms ease-out forwards;
}

@keyframes spark-burst {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.3);
  }

  30% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(var(--spark-x), var(--spark-y), 0) scale(1);
  }
}

.hero-text,
.section-heading p:not(.eyebrow),
.feature-card p,
.stack-card p,
.dashboard-panel p,
.chart-caption,
.testimonial-card p,
.cta-copy p:not(.eyebrow),
.footer-copy,
.footer-bottom p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.hero-metrics li,
.feature-card,
.dashboard-card,
.dashboard-panel,
.stack-card,
.tech-tabs,
.tech-panel,
.tech-item,
.testimonial-card,
.cta-section,
.waitlist-form,
.why-stream-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 31, 40, 0.74), rgba(18, 39, 50, 0.82));
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 18px;
  border-radius: 20px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.3rem;
}

.hero-orbit {
  position: relative;
  width: min(100%, 560px);
  min-height: 500px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-visual::before {
  display: none;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  border: 3px solid rgba(89, 214, 255, 0.82);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 54px rgba(89, 214, 255, 0.3),
    inset 0 0 54px rgba(141, 242, 194, 0.08);
}

.hero-orbit::after {
  content: "</>";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  color: rgba(89, 214, 255, 0.18);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(5.5rem, 11vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.16em;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 48px rgba(89, 214, 255, 0.14);
}

.orbit,
.float-card {
  position: absolute;
  z-index: 1;
}

.section-heading h2,
.feature-card h3,
.dashboard-panel h3,
.stack-card h3,
.tech-panel-title,
.cta-copy h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.orbit,
.float-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 248px;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(164, 214, 214, 0.2);
  border-radius: 20px;
  background: rgba(13, 31, 41, 0.94);
  color: var(--muted);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  animation: orbit-card-float 5.5s ease-in-out infinite;
}

.orbit-a {
  left: calc(50% - 270px);
  right: auto;
  top: calc(50% - 165px);
}

.orbit-b {
  left: calc(50% + 24px);
  right: auto;
  top: calc(50% - 165px);
  animation-delay: -1.6s;
}

.float-top {
  left: calc(50% + 12px);
  right: auto;
  top: calc(50% + 72px);
  width: 276px;
  animation-delay: -3s;
}

.orbit-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.orbit-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.orbit-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.orbit-copy strong {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.15;
}

.orbit-copy small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

@keyframes orbit-card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.mono,
.status-pill,
.card-kicker,
.tech-panel-label,
.footer-kicker,
.footer-heading,
.float-card .mono {
  color: var(--mono-color);
  font-size: 0.76rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.why-stream-card {
  margin-top: 24px;
  padding: 28px;
  border-radius: 24px;
}

.why-stream-card.is-switching {
  opacity: 0.76;
  transform: scale(0.99);
  transition: opacity 220ms ease, transform 220ms ease;
}

.why-stream-heading,
.why-stream-intro {
  margin: 0;
}

.why-stream-heading {
  min-height: 2.4em;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.why-stream-intro {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--muted);
}

.why-stream-heading::after,
.why-stream-intro::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin-left: 0.14em;
  vertical-align: -0.12em;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0;
}

.why-stream-heading.is-typing::after,
.why-stream-intro.is-typing::after {
  opacity: 1;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.grid.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.dashboard-panel,
.stack-card,
.testimonial-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-card.is-flipping {
  transform: rotateX(10deg) scale(0.98);
  opacity: 0.55;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 20px;
  align-items: start;
}

.dashboard-card,
.tech-tabs {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.dashboard-top,
.tech-panel-head,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(164, 214, 214, 0.16);
  border-radius: 999px;
  background: rgba(12, 28, 36, 0.84);
  color: var(--accent);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.dashboard-panel.large,
.dashboard-panel.wide {
  grid-column: span 2;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 124px;
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(89, 214, 255, 0.94), rgba(89, 214, 255, 0.18));
}

.mini-chart span:nth-child(1) { height: 36%; }
.mini-chart span:nth-child(2) { height: 54%; }
.mini-chart span:nth-child(3) { height: 46%; }
.mini-chart span:nth-child(4) { height: 86%; }
.mini-chart span:nth-child(5) { height: 62%; }
.mini-chart span:nth-child(6) { height: 100%; }

.chart-caption {
  margin: 14px 0 0;
}

.stack-list {
  display: grid;
  gap: 18px;
}

.products-section {
  position: relative;
}

.products-screen {
  min-height: calc(100vh - 120px);
  padding-top: 88px;
}

.products-title {
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 11ch;
}

.products-gallery-screen {
  min-height: calc(100vh - 120px);
  padding-top: 88px;
}

.products-gallery-shell {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 18%, rgba(89, 214, 255, 0.1), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(141, 242, 194, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(9, 25, 34, 0.9), rgba(5, 15, 22, 0.96));
  box-shadow: var(--shadow);
}

.products-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 20px;
}

.products-gallery-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.05em;
}

.products-shell-kicker {
  margin: 0;
  color: var(--mono-color);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
}

.product-tab.is-active {
  color: var(--text);
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(89, 214, 255, 0.08);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-gallery-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 24px;
  background: rgba(8, 21, 29, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.product-gallery-link {
  display: grid;
  gap: 12px;
}

.product-gallery-media {
  aspect-ratio: 1.72 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.product-gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.is-broken .image-fallback {
  display: flex;
}

.product-gallery-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.product-gallery-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.product-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(164, 214, 214, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  font-size: 0.92rem;
}

.product-action:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(89, 214, 255, 0.08);
}

.product-detail-screen {
  padding-top: 88px;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  margin-top: 18px;
}

.product-detail-main {
  display: grid;
  gap: 18px;
}

.product-detail-hero,
.product-detail-section,
.product-side-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 25, 34, 0.92), rgba(5, 15, 22, 0.98));
  box-shadow: var(--shadow);
}

.product-detail-hero {
  display: grid;
  overflow: hidden;
}

.product-detail-banner {
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(89, 214, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(9, 25, 34, 0.94), rgba(5, 15, 22, 0.96));
  position: relative;
}

.product-detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-hero-copy {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-back-link,
.product-detail-platform {
  color: var(--mono-color);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-headline {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.product-detail-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(164, 214, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.product-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-headline h1 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.product-detail-publisher {
  margin: 10px 0 0;
  color: var(--mono-color);
  font-weight: 600;
}

.product-detail-short {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 58ch;
  font-size: 0.98rem;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-meta div {
  min-width: 116px;
  padding: 12px 14px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.product-detail-meta strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
}

.product-detail-meta span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-detail-availability p {
  margin: 0;
}

.product-availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #59d6ff, #8df2c2);
  box-shadow: 0 0 0 6px rgba(89, 214, 255, 0.09);
}

.product-detail-section,
.product-side-panel,
.product-description-panel,
.product-safety-panel {
  padding: 20px;
}

.product-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.product-screenshot-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
  overflow-x: auto;
}

.product-shot {
  aspect-ratio: 0.62 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
}

.product-description-panel,
.product-safety-panel {
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.product-description-panel p,
.product-safety-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.product-safety-panel {
  display: grid;
  gap: 12px;
  align-self: start;
}

.product-safety-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.product-safety-card strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail-sidebar {
  align-self: start;
}

.related-products {
  display: grid;
  gap: 12px;
}

.related-product-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.related-product-card:hover {
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(89, 214, 255, 0.06);
  transform: translateY(-1px);
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-info-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-info-card strong {
  font-size: 1.02rem;
}

.product-info-card p {
  margin: 0;
  color: var(--muted);
}

.product-info-card:hover {
  transform: translateY(-1px);
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(89, 214, 255, 0.06);
}

.product-info-screen {
  padding-top: 88px;
}

.product-info-shell {
  width: min(940px, calc(100vw - 40px));
  margin: 0 auto 72px;
  display: grid;
  gap: 18px;
}

.product-info-hero,
.product-info-card-shell {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 25, 34, 0.92), rgba(5, 15, 22, 0.98));
  box-shadow: var(--shadow);
}

.product-info-hero,
.product-info-card-shell {
  padding: 24px;
}

.product-info-summary {
  max-width: 700px;
  color: var(--muted);
}

.product-info-body {
  display: grid;
  gap: 16px;
}

.product-info-body p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.related-product-thumb {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(164, 214, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.related-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-product-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.related-product-copy small,
.related-product-copy em {
  color: var(--muted);
  font-style: normal;
}

.products-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 26px;
  background:
    radial-gradient(circle at 18% 20%, rgba(89, 214, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(141, 242, 194, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(9, 25, 34, 0.9), rgba(5, 15, 22, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-stage-glow {
  position: absolute;
  inset: 12% auto auto 48%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 214, 255, 0.2), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  animation: product-glow-drift 7s ease-in-out infinite;
}

.product-console {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(164, 214, 214, 0.16);
  border-radius: 28px;
  background: rgba(7, 20, 28, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.product-console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(164, 214, 214, 0.12);
  color: var(--mono-color);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-console-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.product-device {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.product-device::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(89, 214, 255, 0.42);
  border-radius: 999px;
  box-shadow:
    0 0 44px rgba(89, 214, 255, 0.14),
    inset 0 0 44px rgba(141, 242, 194, 0.08);
  animation: product-ring-spin 14s linear infinite;
}

.device-beam {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(89, 214, 255, 0.15), rgba(141, 242, 194, 0.08)),
    linear-gradient(45deg, transparent 46%, rgba(89, 214, 255, 0.32) 47%, rgba(89, 214, 255, 0.32) 53%, transparent 54%);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 36px rgba(89, 214, 255, 0.22));
}

.device-screen {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(164, 214, 214, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(16, 39, 51, 0.94), rgba(8, 22, 31, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.device-status {
  display: flex;
  gap: 7px;
}

.device-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(89, 214, 255, 0.42);
}

.device-screen h3 {
  margin: 74px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.device-screen p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.device-pulse {
  position: absolute;
  inset: auto 24px 24px;
  height: 120px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(89, 214, 255, 0.18), rgba(141, 242, 194, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.04) 14px 16px);
  animation: product-pulse 2.6s ease-in-out infinite;
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(164, 214, 214, 0.16);
  border-radius: 24px;
  background: rgba(13, 31, 41, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-card:hover {
  transform: translateX(8px);
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(13, 31, 41, 0.9);
}

.product-card-featured {
  background:
    radial-gradient(circle at top right, rgba(89, 214, 255, 0.12), transparent 36%),
    rgba(13, 31, 41, 0.84);
}

.product-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card p {
  margin: 0 0 6px;
  color: var(--mono-color);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.product-card span:not(.product-logo) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.product-lab-screen {
  min-height: calc(100vh - 120px);
}

.product-lab-heading {
  max-width: 980px;
}

.product-workbench {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 760px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 12%, rgba(89, 214, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 90%, rgba(141, 242, 194, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(8, 24, 33, 0.86), rgba(5, 15, 22, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-workbench-orbit {
  position: absolute;
  inset: 8% auto auto 46%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(89, 214, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 70px rgba(89, 214, 255, 0.12);
  pointer-events: none;
  animation: product-ring-spin 18s linear infinite;
}

.product-index-panel,
.product-detail-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(164, 214, 214, 0.16);
  background: rgba(7, 20, 28, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.product-index-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 14px;
  max-height: 760px;
  padding: 18px;
  border-radius: 28px;
}

.product-index-head {
  display: grid;
  gap: 8px;
}

.product-index-head span,
.product-filter-row span,
.product-detail-kicker,
.product-index-card small {
  color: var(--mono-color);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-index-head strong {
  color: var(--text);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-filter-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.product-index-list {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
}

.product-index-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 22px;
  background: rgba(13, 31, 41, 0.62);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-index-card:hover,
.product-index-card.is-active {
  transform: translateX(4px);
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(13, 31, 41, 0.92);
}

.product-index-card strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.product-index-card em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.product-detail-panel {
  display: grid;
  gap: 18px;
  max-height: 760px;
  padding: 20px;
  border-radius: 30px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  min-height: 560px;
  padding: 26px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(89, 214, 255, 0.1), transparent 38%),
    rgba(9, 25, 34, 0.7);
  opacity: 0.74;
  transition: opacity 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.product-detail-card.is-focused {
  opacity: 1;
  border-color: rgba(89, 214, 255, 0.34);
  transform: translateY(-2px);
}

.product-detail-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(89, 214, 255, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.product-phone-frame,
.product-browser-frame,
.product-signal-stack,
.product-layers {
  position: relative;
  z-index: 1;
}

.product-phone-frame {
  width: 210px;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(164, 214, 214, 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(16, 39, 51, 0.96), rgba(6, 18, 26, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.product-phone-frame span {
  display: block;
  width: 62px;
  height: 6px;
  margin: 0 auto 70px;
  border-radius: 999px;
  background: rgba(164, 214, 214, 0.24);
}

.product-phone-frame strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.product-phone-frame p {
  color: var(--muted);
  line-height: 1.65;
}

.product-signal-stack {
  display: grid;
  gap: 16px;
  width: min(100%, 280px);
}

.product-signal-stack span {
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(89, 214, 255, 0.34), rgba(141, 242, 194, 0.08));
  animation: product-pulse 2.6s ease-in-out infinite;
}

.product-signal-stack span:nth-child(2) { width: 86%; animation-delay: -0.4s; }
.product-signal-stack span:nth-child(3) { width: 72%; animation-delay: -0.8s; }
.product-signal-stack span:nth-child(4) { width: 94%; animation-delay: -1.2s; }

.product-browser-frame {
  width: min(100%, 360px);
  height: 260px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(164, 214, 214, 0.18);
  background: rgba(7, 20, 28, 0.9);
}

.product-browser-frame > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 999px;
  background: rgba(89, 214, 255, 0.44);
}

.product-browser-frame div {
  height: 170px;
  margin-top: 22px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(89, 214, 255, 0.18), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 26px);
}

.product-layers {
  width: min(100%, 340px);
  height: 260px;
}

.product-layers span {
  position: absolute;
  inset: 38px 28px auto;
  height: 150px;
  border: 1px solid rgba(164, 214, 214, 0.18);
  border-radius: 24px;
  background: rgba(13, 31, 41, 0.78);
  transform: rotate(-5deg);
}

.product-layers span:nth-child(2) {
  transform: translateY(30px) rotate(4deg);
  background: rgba(16, 39, 51, 0.84);
}

.product-layers span:nth-child(3) {
  transform: translateY(60px) rotate(-2deg);
  background: linear-gradient(135deg, rgba(89, 214, 255, 0.22), rgba(141, 242, 194, 0.08));
}

.product-detail-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.product-detail-copy > p:not(.product-detail-kicker) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 62ch;
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

@keyframes product-glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-38px, 24px, 0) scale(1.08);
  }
}

@keyframes product-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes product-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

.tech-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(164, 214, 214, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(150, 184, 180, 0.88);
  cursor: pointer;
}

.tech-tab.is-active {
  color: var(--text);
  border-color: rgba(141, 242, 194, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.tech-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.tech-panel-label {
  margin: 0;
}

.tech-panel-title {
  font-size: 2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tech-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 154px;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
}

.tech-item-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.tech-item-name {
  margin: 0;
  color: var(--text);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.cta-copy p:not(.eyebrow) {
  margin-top: 16px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
}

.waitlist-form span {
  color: var(--muted);
  font-size: 0.92rem;
}

.waitlist-form input {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(150, 184, 180, 0.68);
}

.waitlist-form input:focus {
  border-color: rgba(89, 214, 255, 0.22);
  box-shadow: 0 0 0 4px rgba(89, 214, 255, 0.08);
}

.site-footer {
  position: relative;
  margin-top: 40px;
  padding: 40px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(9, 25, 32, 0.98), rgba(6, 16, 22, 0.98));
  overflow: hidden;
}

.footer-contour {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  pointer-events: none;
}

.site-footer > *:not(.footer-contour) {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr) minmax(220px, 0.7fr);
  gap: 24px;
}

.footer-brand {
  align-items: start;
  max-width: 420px;
}

.footer-copy {
  margin-top: 16px;
  max-width: 52ch;
}

.footer-button {
  margin-top: 22px;
}

.footer-heading {
  margin: 0 0 14px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .platform-layout,
  .product-console-main,
  .product-detail-layout,
  .cta-section,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .grid.cards-4,
  .products-grid,
  .testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-title {
    max-width: 13ch;
  }

  .product-detail-banner {
    min-height: 220px;
  }

  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-device {
    min-height: 440px;
  }

  .product-workbench,
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .product-index-panel,
  .product-detail-panel {
    max-height: none;
  }

  .product-index-list {
    max-height: 360px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-metrics,
  .grid.cards-4,
  .dashboard-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .dashboard-panel.large,
  .dashboard-panel.wide {
    grid-column: span 1;
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-stage,
  .product-console-main {
    padding: 20px;
  }

  .products-gallery-head {
    flex-direction: column;
    align-items: start;
  }

  .products-gallery-screen {
    padding-top: 72px;
  }

  .products-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .products-gallery-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-media {
    aspect-ratio: 1.85 / 1;
  }

  .product-detail-screen {
    padding-top: 72px;
  }

  .product-detail-banner {
    min-height: 190px;
  }

  .product-detail-hero-copy {
    padding: 16px;
  }

  .product-detail-headline,
  .product-detail-duo {
    grid-template-columns: 1fr;
  }

  .product-workbench {
    padding: 14px;
  }

  .product-detail-panel {
    padding: 14px;
  }

  .product-detail-card {
    min-height: auto;
  }

  .hero-orbit {
    width: min(100%, 540px);
    min-height: 500px;
  }

  .orbit-a {
    left: calc(50% - 258px);
    right: auto;
    top: calc(50% - 165px);
  }

  .orbit-b {
    left: calc(50% + 10px);
    right: auto;
    top: calc(50% - 165px);
  }

  .float-top {
    left: calc(50% + 4px);
    right: auto;
    top: calc(50% + 72px);
    width: 252px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .products-title,
  .product-detail-headline h1 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .hero-orbit {
    width: min(100%, 320px);
    min-height: 520px;
    padding: 20px;
  }

  .hero-orbit::before {
    width: 300px;
    height: 300px;
  }

  .orbit-a,
  .orbit-b,
  .float-top {
    width: min(100%, 260px);
    min-height: 78px;
    padding: 14px 16px;
  }

  .orbit-a {
    left: 50%;
    top: 32px;
    margin-left: -130px;
  }

  .orbit-b {
    left: 50%;
    right: auto;
    top: 130px;
    margin-left: -130px;
  }

  .float-top {
    left: 50%;
    right: auto;
    top: 306px;
    margin-left: -130px;
  }

  .product-console-top {
    flex-direction: column;
  }

  .product-device {
    min-height: 360px;
  }

  .product-device::before {
    width: 260px;
    height: 260px;
  }

  .device-screen {
    min-height: 330px;
  }

  .device-screen h3 {
    margin-top: 46px;
  }

  .product-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px;
  }

  .product-index-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .product-detail-visual {
    min-height: 280px;
  }

  .product-logo {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .dashboard-card,
  .tech-tabs,
  .cta-section,
  .why-stream-card,
  .waitlist-form {
    padding: 20px;
  }

  .products-gallery-shell,
  .product-screenshot-panel,
  .product-description-panel {
    padding: 14px;
  }

  .products-grid,
  .product-screenshot-strip {
    grid-template-columns: 1fr;
  }

  .product-detail-meta div {
    min-width: 0;
    flex: 1 1 100%;
  }

  .product-gallery-card {
    padding: 12px;
    border-radius: 20px;
  }

  .product-gallery-media {
    border-radius: 16px;
    aspect-ratio: 1.9 / 1;
  }

  .product-gallery-copy h3 {
    font-size: 1.08rem;
  }

  .product-gallery-copy p,
  .product-description-panel p,
  .product-detail-short {
    font-size: 0.94rem;
  }

  .product-detail-banner {
    min-height: 160px;
    border-radius: 22px;
  }

  .product-detail-icon {
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }

  .product-detail-actions,
  .product-gallery-actions {
    gap: 8px;
  }

  .product-action {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.88rem;
  }

  .product-shot {
    border-radius: 16px;
  }

  .product-detail-section,
  .product-side-panel,
  .product-description-panel,
  .product-safety-panel {
    padding: 14px;
  }

  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-info-card,
  .product-info-hero,
  .product-info-card-shell {
    padding: 16px;
  }

  .feature-card,
  .dashboard-panel,
  .stack-card,
  .testimonial-card {
    padding: 22px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.products-page-actions {
  margin-top: 16px;
}

.panel-state {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

.panel-state.is-loading {
  color: var(--mono-color);
}

.panel-state.is-error {
  color: #ff8e8e;
}

.panel-state.is-empty {
  color: rgba(228, 236, 240, 0.76);
}

.admin-screen {
  padding-top: 88px;
}

.admin-section {
  min-height: calc(100vh - 120px);
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
}

.admin-products-panel,
.admin-form-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(9, 25, 34, 0.92), rgba(5, 15, 22, 0.96));
  box-shadow: var(--shadow);
}

.admin-products-panel {
  align-self: start;
  position: sticky;
  top: 108px;
}

.admin-panel-head,
.admin-repeat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-panel-head h2,
.admin-repeat-head h3 {
  margin: 8px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.admin-product-list {
  display: grid;
  gap: 10px;
  max-height: 70vh;
  overflow: auto;
}

.admin-product-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.admin-product-card:hover,
.admin-product-card.is-active {
  border-color: rgba(89, 214, 255, 0.34);
  background: rgba(89, 214, 255, 0.08);
  transform: translateY(-1px);
}

.admin-product-card-top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.admin-product-thumb {
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(164, 214, 214, 0.14);
}

.admin-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-card h3,
.admin-product-card p {
  margin: 0;
}

.admin-product-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-product-meta span,
.product-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-product-form {
  display: grid;
  gap: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-product-form label {
  display: grid;
  gap: 8px;
}

.admin-product-form label span {
  font-size: 0.9rem;
  color: var(--muted);
}

.admin-product-form input,
.admin-product-form textarea,
.admin-product-form select,
.admin-repeat-row input {
  width: 100%;
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.admin-product-form textarea {
  min-height: auto;
  resize: vertical;
}

.admin-field-wide {
  grid-column: span 2;
}

.admin-repeat-section {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.admin-repeat-list {
  display: grid;
  gap: 10px;
}

.admin-repeat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
}

.admin-preview-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(164, 214, 214, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-preview-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
}

.admin-preview-card {
  display: grid;
  gap: 8px;
}

.admin-preview-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

.admin-preview-image {
  min-height: 100px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(164, 214, 214, 0.14);
  position: relative;
}

.admin-preview-banner {
  min-height: 120px;
}

.admin-preview-image img,
.admin-shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-shot-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-shot-card {
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(164, 214, 214, 0.14);
  position: relative;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1080px) {
  .admin-workbench {
    grid-template-columns: 1fr;
  }

  .admin-products-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .admin-screen {
    padding-top: 72px;
  }

  .admin-form-grid,
  .admin-preview-grid {
    grid-template-columns: 1fr;
  }

  .admin-field-wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .admin-products-panel,
  .admin-form-panel {
    padding: 14px;
    border-radius: 20px;
  }

  .admin-repeat-row {
    grid-template-columns: 1fr;
  }

  .admin-shot-preview {
    grid-template-columns: 1fr 1fr;
  }
}
