@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Syne:wght@600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-deep: #0a0f1c;
  --ink: #f1f5ff;
  --muted: rgba(241, 245, 255, 0.7);
  --accent: #59f7ff;
  --accent-2: #8b7cff;
  --accent-3: #88d9ff;
  --accent-soft: rgba(89, 247, 255, 0.18);
  --panel: rgba(11, 18, 34, 0.8);
  --panel-strong: rgba(9, 16, 29, 0.94);
  --glow: rgba(89, 247, 255, 0.55);
  --border-soft: rgba(255, 255, 255, 0.09);
  --shadow-soft: 0 18px 45px rgba(2, 8, 18, 0.28);
  --shadow-strong: 0 24px 60px rgba(2, 8, 18, 0.42);
  --max-width: 980px;
  --nav-height: 5.25rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0c172a 0%, var(--bg) 45%, #030509 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

main > section {
  position: relative;
  z-index: 1;
}

body::before,
body::after,
main::before,
main::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 50% 12%, rgba(89, 247, 255, 0.08), transparent 55%),
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 1;
}

body::after {
  background-image:
    linear-gradient(90deg, rgba(89, 247, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(89, 247, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle, rgba(89, 247, 255, 0.75) 0 1.2px, transparent 2.8px),
    radial-gradient(circle, rgba(125, 177, 255, 0.45) 0 1px, transparent 2.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.25) 0 0.9px, transparent 2px);
  background-size: 180px 180px, 180px 180px, 160px 160px, 110px 110px, 220px 220px;
  background-position: 0 0, 0 0, 0 -600px, 90px -1200px, -40px -900px;
  opacity: 0.6;
  animation: starRain 16s linear infinite;
}

main::before {
  background-image:
    repeating-linear-gradient(
      110deg,
      rgba(89, 247, 255, 0.08) 0 1px,
      transparent 1px 160px
    ),
    repeating-linear-gradient(
      12deg,
      rgba(89, 247, 255, 0.06) 0 1px,
      transparent 1px 220px
    ),
    radial-gradient(circle at 30% 40%, rgba(89, 247, 255, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(89, 247, 255, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 20%, rgba(89, 247, 255, 0.16) 0 2px, transparent 3px);
  background-size: 140% 140%;
  background-position: 0 0;
  opacity: 0.18;
  animation: streamSlide 36s linear infinite;
}

main::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><rect width='240' height='240' fill='none'/><text x='18' y='42' font-size='16' fill='%2359f7ff' fill-opacity='0.08'>1010 0110</text><text x='140' y='80' font-size='14' fill='%2359f7ff' fill-opacity='0.06'>0x9f4b</text><text x='28' y='140' font-size='12' fill='%2359f7ff' fill-opacity='0.06'>KEY</text><text x='120' y='180' font-size='12' fill='%2359f7ff' fill-opacity='0.05'>AEAD</text><text x='60' y='210' font-size='11' fill='%2359f7ff' fill-opacity='0.05'>LOCK</text></svg>");
  background-size: 240px 240px;
  opacity: 0.08;
  filter: blur(0.4px);
  animation: glyphFade 24s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-shell {
  --nav-surface: rgba(8, 14, 26, 0.58);
  position: relative;
  isolation: isolate;
  width: min(1240px, calc(100vw - 2rem));
  margin: 0 auto;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(126, 214, 231, 0.2);
  background: var(--nav-surface);
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  box-shadow: var(--shadow-soft), 0 0 22px rgba(89, 247, 255, 0.1);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
  pointer-events: auto;
}

.nav-shell-trace {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}

.nav-shell-trace svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-shell-trace-path {
  fill: none;
  stroke: url(#aspidNavTraceGradient);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18 82;
  opacity: 0.98;
  filter:
    drop-shadow(0 0 8px rgba(89, 247, 255, 0.3))
    drop-shadow(0 0 10px rgba(208, 138, 239, 0.16));
  animation: navTraceMove 5.2s linear infinite;
}

.nav-shell > *:not(.nav-shell-trace) {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled .nav-shell,
.site-header.is-open .nav-shell {
  --nav-surface: rgba(8, 14, 26, 0.84);
  border-color: rgba(126, 214, 231, 0.3);
  box-shadow: var(--shadow-strong), 0 0 24px rgba(89, 247, 255, 0.12);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  position: relative;
  flex: 0 0 3.35rem;
  display: block;
  width: 3.35rem;
  height: 3.35rem;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: 0;
  transform: translateY(-0.3rem);
  clip-path: inset(0 0.22rem 0 0);
  margin-right: -0.22rem;
}

.brand-logo img {
  position: absolute;
  top: -16%;
  left: -24%;
  width: 264%;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.05;
  text-shadow: 0 0 18px rgba(89, 247, 255, 0.16);
  background: linear-gradient(105deg, #f1f8ff 0%, #8cf3f7 58%, #d08aef 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 0.35rem;
}

.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(241, 245, 255, 0.78);
  text-decoration: none;
  font: inherit;
  font-size: 0.96rem;
  cursor: pointer;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease;
}

.nav-link::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 247, 255, 0.75), transparent);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-link.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-link.is-active::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.28s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
  position: fixed;
  top: calc(1rem + var(--nav-height) + 1rem);
  right: max(1rem, calc((100vw - 1240px) / 2));
  left: auto;
  width: min(760px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  padding: 1.15rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(14, 23, 40, 0.96), rgba(8, 14, 27, 0.96)),
    rgba(9, 15, 28, 0.96);
  box-shadow: 0 30px 80px rgba(1, 7, 17, 0.52);
  backdrop-filter: blur(20px);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: 0;
  left: 0;
  height: 1.5rem;
  pointer-events: auto;
}

.nav-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mega-menu-head {
  padding: 0.5rem 0.35rem 1rem;
}

.mega-menu-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(241, 245, 255, 0.56);
}

.mega-menu-head h2,
.section-title,
.contact-title {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-top: 0.55rem;
}

.mega-menu-head h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(89, 247, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 35px rgba(2, 10, 22, 0.32);
  outline: none;
}

.product-card-featured {
  background:
    linear-gradient(135deg, rgba(89, 247, 255, 0.08), rgba(139, 124, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(89, 247, 255, 0.24);
}

.product-card-baudtide {
  background:
    linear-gradient(135deg, rgba(93, 226, 188, 0.09), rgba(89, 247, 255, 0.06)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(93, 226, 188, 0.24);
}

.product-card-upcoming {
  cursor: default;
  border-style: dashed;
  border-color: rgba(139, 124, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 124, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.product-card-upcoming:hover {
  transform: none;
  border-color: rgba(139, 124, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(139, 124, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.product-icon,
.showcase-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #d7fbff;
  box-shadow: none;
}

.product-icon svg,
.showcase-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.product-icon-auth-x {
  width: 6rem;
  height: 3.6rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-icon-auth-x img,
.mobile-product-logo img,
.showcase-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(89, 247, 255, 0.24));
}

.showcase-logo {
  display: block;
  flex: 0 0 auto;
  width: min(100%, 12rem);
  height: 4rem;
}

.product-icon-baudtide img,
.showcase-icon-baudtide img {
  display: block;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(89, 247, 255, 0.34));
}

.product-icon-upcoming {
  border-radius: 14px;
  border-style: dashed;
  border-color: rgba(208, 138, 239, 0.3);
  background: rgba(139, 124, 255, 0.08);
  color: #e6ddff;
  box-shadow: none;
}

.product-icon-upcoming span {
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.product-title-row,
.mobile-product-title-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.product-upcoming-label,
.mobile-product-upcoming-label {
  color: rgba(225, 216, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description,
.section-summary,
.contact-copy {
  color: var(--muted);
  line-height: 1.6;
}

.product-description {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 1.45rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(89, 247, 255, 0.14);
  border: 1px solid rgba(89, 247, 255, 0.28);
  color: #d8fcff;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-badge-open {
  background: rgba(93, 226, 188, 0.12);
  border-color: rgba(93, 226, 188, 0.28);
  color: #d7fff2;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-actions {
  gap: 0.7rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-1px) scale(1.02);
  outline: none;
}

.button-link-muted {
  color: #edf4ff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button-link-muted:hover,
.button-link-muted:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-link-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--accent), var(--accent-3) 48%, #b5f1ff 100%);
  box-shadow: 0 16px 34px rgba(89, 247, 255, 0.22);
}

.button-link-primary:hover,
.button-link-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(89, 247, 255, 0.28);
}

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

.scene-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.scene-layer.is-ready {
  opacity: 1;
}

.scene-layer.is-disabled {
  display: none;
}

.scene-layer canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 6rem;
  overflow: hidden;
  isolation: isolate;
  --hero-progress: 0;
  --hero-logo-progress: 0;
  --hero-features-progress: 0;
  --hero-logo-shift: 0px;
  --hero-logo-scale: 1;
  --hero-features-opacity: 0;
  --hero-features-shift: 16px;
  --hero-feature-shift: 12px;
  --hero-orbit-opacity: 0;
  --hero-orbit-scale: 0.88;
  --hero-core-opacity: 0;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(89, 247, 255, 0.15), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(125, 177, 255, 0.12), transparent 52%),
    linear-gradient(135deg, rgba(9, 16, 30, 0.9), rgba(4, 8, 16, 0.4));
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(60deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px, 160px 160px;
  opacity: 0.35;
}

.hero::after {
  background: radial-gradient(circle at 50% 10%, rgba(89, 247, 255, 0.1), transparent 55%);
  opacity: 0.8;
}

.hero-3d {
  z-index: 1;
  pointer-events: none;
  transform: scale(var(--hero-orbit-scale, 0.88));
  transform-origin: center center;
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.hero-3d canvas {
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

.hero-3d.is-ready {
  opacity: var(--hero-orbit-opacity, 0);
}

.hero.hero--scrub .hero-3d {
  transition: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  width: min(100%, 1200px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;
}

.hero-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(0) translateY(0) scale(1);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform;
}

.hero.hero--scrub .hero-brand {
  transition: none;
  transform: translateX(var(--hero-logo-shift, 0px)) scale(var(--hero-logo-scale, 1));
}

.hero.hero--centered .hero-brand {
  transform: translateX(0) translateY(0) scale(1);
}

.hero.hero--logo-left .hero-brand {
  transform: translateX(var(--hero-left-shift, -260px)) scale(0.92);
}

.logo {
  width: min(88vw, 760px, 76vh);
  max-width: 760px;
  filter: drop-shadow(0 20px 50px rgba(2, 12, 24, 0.6));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content::after {
  content: "";
  position: absolute;
  width: clamp(280px, 44vw, 520px);
  height: clamp(90px, 12vw, 140px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
  bottom: clamp(2.2rem, 6vw, 4.2rem);
  left: 50%;
  transform: translateX(-50%);
  filter: blur(6px);
  opacity: 0.45;
  z-index: 0;
}

.hero-core {
  z-index: 1;
}

.hero-core {
  position: absolute;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(var(--hero-orbit-scale, 0.88));
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 12, 22, 0.9) 0%, rgba(5, 9, 18, 0.9) 55%, rgba(5, 7, 12, 0.75) 100%);
  box-shadow:
    0 0 60px rgba(3, 8, 16, 0.6),
    inset 0 0 40px rgba(89, 247, 255, 0.08);
  opacity: var(--hero-core-opacity, 0);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.hero.hero--scrub .hero-core {
  transition: none;
}

.hero-core::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(89, 247, 255, 0.12);
  box-shadow:
    0 0 0 20px rgba(89, 247, 255, 0.05),
    0 0 0 42px rgba(89, 247, 255, 0.03);
  opacity: 0.7;
}

.hero-core::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(89, 247, 255, 0.45);
  box-shadow: 0 0 16px rgba(89, 247, 255, 0.35);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: corePulse 24s ease-in-out infinite;
}

.hero-tagline {
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 245, 255, 0.5);
  max-width: 48ch;
  line-height: 1.6;
  z-index: 2;
}

.hero-features {
  position: absolute;
  right: clamp(-2rem, -1vw, 0rem);
  top: 50%;
  --hero-features-x: 8rem;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
  text-align: left;
  padding-right: 1.4rem;
  opacity: 0;
  transform: translateY(calc(-50% + 16px)) translateX(var(--hero-features-x, 0));
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero.hero--scrub .hero-features {
  transition: none;
  opacity: var(--hero-features-opacity, 0);
  transform: translateY(calc(-50% + var(--hero-features-shift, 16px)))
    translateX(var(--hero-features-x, 0));
}

.hero.hero--scrub .hero-features {
  --hero-features-x: 0rem;
}

.hero-feature {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero.hero--scrub .hero-feature {
  transition: none;
  opacity: var(--hero-features-opacity, 0);
  transform: translateY(var(--hero-feature-shift, 12px));
}

.hero-feature:nth-child(1) {
  color: var(--accent);
}

.hero-feature:nth-child(2) {
  color: rgba(241, 245, 255, 0.92);
}

.hero-feature:nth-child(3) {
  color: rgba(137, 202, 255, 0.9);
}

.hero-dot {
  color: var(--accent);
  margin-left: 0.05rem;
  opacity: 0.8;
}

.hero.hero--features-visible .hero-features {
  opacity: 1;
  transform: translateY(-50%);
}

.hero.hero--features-visible .hero-feature {
  opacity: 1;
  transform: translateY(0);
}

.hero.hero--features-visible .hero-feature:nth-child(1) {
  transition-delay: 0ms;
}

.hero.hero--features-visible .hero-feature:nth-child(2) {
  transition-delay: 140ms;
}

.hero.hero--features-visible .hero-feature:nth-child(3) {
  transition-delay: 280ms;
}

body.hero-locked {
  overflow: hidden;
  touch-action: none;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

body.is-loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

body:not(.is-loaded) .hero-3d {
  opacity: 0;
}

.hero-text .scroll-hint {
  align-items: flex-start;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: pulse 2.8s ease-in-out infinite;
}

.narrative {
  position: relative;
  padding: 6rem 1.5rem 8rem;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.22) 0%, rgba(6, 11, 20, 0.28) 100%),
    radial-gradient(circle at 20% 80%, rgba(89, 247, 255, 0.12), transparent 55%);
}

.device-bridge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: min(100%, 1100px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.device {
  width: clamp(160px, 20vw, 260px);
  filter: drop-shadow(0 20px 50px rgba(2, 12, 24, 0.6));
  animation: device-breathe 4.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.device-right {
  animation-delay: 1s;
}

.link-line {
  position: relative;
  flex: 1;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.bridge-3d {
  inset: -20% -8%;
  z-index: 1;
  pointer-events: none;
}

.bridge-3d.is-ready {
  opacity: 0.95;
}

.device-bridge.is-3d .link-line,
.device-bridge.is-3d .packet,
.device-bridge.is-3d .lock-indicator,
.device-bridge.is-3d .hacker-figure {
  opacity: 0.12;
  filter: blur(0.3px);
}

.link-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(89, 247, 255, 0.1), rgba(89, 247, 255, 0.6), rgba(89, 247, 255, 0.1));
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.25);
  overflow: hidden;
}

.link-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(89, 247, 255, 0.8) 0 14px,
    rgba(89, 247, 255, 0) 14px 28px
  );
  opacity: 0.4;
  animation: data-flow 2.8s linear infinite;
}

.link-track::after {
  content: "";
  position: absolute;
  inset: -4px 0;
  background: radial-gradient(circle, rgba(89, 247, 255, 0.35), transparent 60%);
  opacity: 0.25;
  animation: encrypt-glow 2.4s ease-in-out infinite;
}

.packet {
  position: absolute;
  top: 50%;
  left: 0%;
  min-width: clamp(190px, 22vw, 260px);
  max-width: 320px;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  color: #e7feff;
  background: rgba(6, 12, 24, 0.88);
  border: 1px solid rgba(89, 247, 255, 0.45);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.25);
  transform: translate(-50%, -160%);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.packet-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.packet-body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #e7feff;
  margin: 0;
  white-space: pre-wrap;
}

.packet-plain {
  animation: packet-plain 6s ease-in-out infinite;
}

.packet-cipher {
  animation: packet-cipher 6s ease-in-out infinite;
}

.lock-indicator {
  position: absolute;
  left: 50%;
  top: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  transform: translate(-50%, -40%) scale(0.9);
  animation: lock-reveal 6s ease-in-out infinite;
  pointer-events: none;
}

.lock-indicator img {
  width: clamp(96px, 11vw, 150px);
  filter: drop-shadow(0 10px 25px rgba(2, 10, 22, 0.5));
}

.lock-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hacker-figure {
  position: absolute;
  left: 50%;
  top: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  animation: hacker-peek 6s ease-in-out infinite;
  pointer-events: none;
}

.hacker-figure img {
  width: clamp(120px, 14vw, 180px);
  filter: drop-shadow(0 18px 40px rgba(2, 10, 22, 0.6));
}

.hacker-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-sticky {
  position: relative;
  display: flex;
  justify-content: center;
}

.story-lines {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  perspective: 900px;
  transform-style: preserve-3d;
}

.story-line {
  position: relative;
  display: block;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  min-height: 52vh;
  width: 100%;
  max-width: 48ch;
  margin: 0 auto;
  padding: 0 0.75rem;
  text-wrap: balance;
  opacity: var(--line-opacity, 0.25);
  transform:
    translateY(var(--line-shift, 0px))
    translateZ(var(--line-depth, 0px))
    rotateX(var(--line-rotate, 0deg))
    scale(var(--line-scale, 1));
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.story-logo {
  display: block;
  width: clamp(320px, 40vw, 480px);
  margin: 1.2rem auto 0;
  filter: drop-shadow(0 12px 28px rgba(2, 10, 22, 0.45)) drop-shadow(0 0 12px rgba(89, 247, 255, 0.15));
}

.accent {
  color: #ffffff;
  text-shadow: 0 0 22px rgba(89, 247, 255, 0.45);
}

.network {
  padding: 5rem 1.5rem 7rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(89, 247, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.62), rgba(3, 7, 15, 0.7));
}

.products-section,
.about-section {
  padding: 5rem 1.5rem 6rem;
}

.products-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(89, 247, 255, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.72), rgba(4, 8, 16, 0.84));
}

.about-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(137, 202, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.76), rgba(5, 8, 15, 0.88));
}

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

.section-heading {
  max-width: 760px;
}

.section-summary {
  margin-top: 1rem;
  max-width: 62ch;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.showcase-card {
  min-height: 100%;
  padding: 1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 19, 35, 0.9), rgba(7, 12, 23, 0.92));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(89, 247, 255, 0.22);
  box-shadow: var(--shadow-strong);
}

.showcase-card-featured {
  background:
    linear-gradient(150deg, rgba(89, 247, 255, 0.12), rgba(139, 124, 255, 0.12)),
    linear-gradient(180deg, rgba(12, 19, 35, 0.94), rgba(7, 12, 23, 0.96));
  border-color: rgba(89, 247, 255, 0.24);
}

.showcase-card-baudtide {
  background:
    linear-gradient(150deg, rgba(93, 226, 188, 0.12), rgba(89, 247, 255, 0.09)),
    linear-gradient(180deg, rgba(12, 19, 35, 0.94), rgba(7, 12, 23, 0.96));
  border-color: rgba(93, 226, 188, 0.25);
}

.showcase-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.showcase-card h3 {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  margin-top: 1.1rem;
}

.showcase-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

.showcase-card .button-link {
  margin-top: 1.25rem;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.showcase-actions .button-link {
  width: auto;
  margin: 0;
}

.showcase-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.showcase-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(241, 245, 255, 0.88);
  line-height: 1.55;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(89, 247, 255, 0.45);
}

.auth-x-section {
  padding-top: clamp(5.5rem, 8vw, 8rem);
  padding-bottom: clamp(5.5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(89, 247, 255, 0.15), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(139, 124, 255, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.92), rgba(4, 8, 16, 0.98));
}

.auth-x-shell {
  display: grid;
  gap: clamp(4.5rem, 9vw, 8rem);
}

.auth-x-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.auth-x-hero-copy {
  max-width: 700px;
}

.auth-x-brand-lockup {
  width: min(100%, 27rem);
  margin-bottom: clamp(0.2rem, 1vw, 0.75rem);
}

.auth-x-brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 16px 30px rgba(2, 10, 22, 0.38))
    drop-shadow(0 0 18px rgba(89, 247, 255, 0.18));
}

.auth-x-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: rgba(241, 245, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.auth-x-eyebrow-line {
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.auth-x-title {
  max-width: 11ch;
  margin-top: 1.2rem;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6.1vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
  color: #f7fbff;
  text-shadow: 0 0 32px rgba(89, 247, 255, 0.1);
}

.auth-x-lede {
  max-width: 56ch;
  margin-top: 1.5rem;
  color: rgba(241, 245, 255, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.auth-x-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.auth-x-visual-status i {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(89, 247, 255, 0.9);
}

.auth-x-hero-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(89, 247, 255, 0.09), transparent 32%),
    linear-gradient(150deg, rgba(12, 27, 47, 0.2), rgba(9, 13, 28, 0.08));
}

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

.auth-x-hero-visual::after {
  display: none;
}

.auth-x-visual-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(89, 247, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 247, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

.auth-x-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(89, 247, 255, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.22);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.auth-x-orbit::before,
.auth-x-orbit::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(89, 247, 255, 0.95);
}

.auth-x-orbit::before {
  top: 13%;
  left: 13%;
}

.auth-x-orbit::after {
  right: 9%;
  bottom: 17%;
  background: #c6a7ff;
  box-shadow: 0 0 16px rgba(198, 167, 255, 0.9);
}

.auth-x-orbit-one {
  width: 80%;
  height: 54%;
}

.auth-x-orbit-two {
  width: 58%;
  height: 88%;
  border-color: rgba(139, 124, 255, 0.44);
  transform: translate(-50%, -50%) rotate(38deg);
}

.auth-x-orbit-two::before {
  top: 71%;
  left: 8%;
  background: #f0b1ff;
  box-shadow: 0 0 16px rgba(240, 177, 255, 0.9);
}

.auth-x-orbit-two::after {
  right: 8%;
  bottom: 72%;
}

.auth-x-visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 174px;
  height: 174px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 32, 55, 0.98), rgba(6, 12, 25, 0.98));
  box-shadow: 0 0 0 12px rgba(89, 247, 255, 0.04), 0 0 55px rgba(89, 247, 255, 0.35);
  transform: translate(-50%, -50%);
}

.auth-x-core-glow {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(89, 247, 255, 0.17);
  border-radius: 50%;
  animation: pulse 3.4s ease-in-out infinite;
}

.auth-x-visual-core img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(89, 247, 255, 0.65));
}

.auth-x-visual-core strong {
  margin-top: 0.15rem;
  color: #fff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.auth-x-visual-core small,
.auth-x-visual-node small {
  color: rgba(241, 245, 255, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.auth-x-visual-node {
  position: absolute;
  display: flex;
  min-width: 112px;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(7, 14, 28, 0.75);
  box-shadow: 0 18px 30px rgba(1, 6, 17, 0.28);
  backdrop-filter: blur(10px);
}

.auth-x-visual-node i {
  width: 0.42rem;
  height: 0.42rem;
  margin-bottom: 0.18rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(89, 247, 255, 0.8);
}

.auth-x-visual-node strong {
  color: rgba(241, 245, 255, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.auth-x-node-device {
  top: 13%;
  left: 8%;
}

.auth-x-node-server {
  right: 8%;
  bottom: 13%;
}

.auth-x-node-server i {
  background: #c6a7ff;
  box-shadow: 0 0 12px rgba(198, 167, 255, 0.8);
}

.auth-x-visual-status {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(241, 245, 255, 0.56);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.auth-x-flow-section {
  display: grid;
  gap: 2rem;
}

.auth-x-properties-section {
  display: grid;
  gap: 2rem;
}

.auth-x-section-heading {
  max-width: 760px;
}

.auth-x-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.auth-x-flow-card,
.auth-x-feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.78), rgba(7, 13, 26, 0.9));
  box-shadow: var(--shadow-soft);
}

.auth-x-flow-card::after,
.auth-x-feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 247, 255, 0.72));
}

.auth-x-flow-index,
.auth-x-feature-mark {
  display: block;
  color: var(--accent);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.auth-x-flow-chip {
  display: inline-flex;
  margin-top: 1.45rem;
  padding: 0.3rem 0.52rem;
  border: 1px solid rgba(89, 247, 255, 0.18);
  border-radius: 999px;
  color: rgba(206, 253, 255, 0.8);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.auth-x-flow-card h3,
.auth-x-feature-card h3 {
  margin-top: 0.85rem;
  color: #fff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.auth-x-flow-card p,
.auth-x-feature-card p {
  margin-top: 0.65rem;
  color: rgba(241, 245, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.auth-x-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.auth-x-feature-card {
  min-height: 180px;
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(89, 247, 255, 0.07), rgba(139, 124, 255, 0.07)),
    rgba(8, 15, 29, 0.82);
}

.auth-x-benchmark-panel {
  padding: 0;
}

.auth-x-section .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.auth-x-benchmark-heading {
  max-width: 760px;
}

.auth-x-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.auth-x-stat-card {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-x-stat-card-accent {
  border-color: rgba(89, 247, 255, 0.26);
  background: linear-gradient(145deg, rgba(89, 247, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.auth-x-stat-card strong {
  display: block;
  color: #fff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.auth-x-stat-card strong span {
  margin-left: 0.18em;
  color: var(--accent);
  font-size: 0.42em;
  letter-spacing: 0;
}

.auth-x-stat-card > span {
  display: block;
  max-width: 18ch;
  margin-top: 0.8rem;
  color: rgba(241, 245, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
}

.auth-x-stat-card small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(241, 245, 255, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-x-signal-flow {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.auth-x-signal-flow::before,
.auth-x-signal-flow::after {
  display: none;
}

.auth-x-signal-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(89, 247, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 247, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 84%, transparent);
}

.auth-x-signal-participant > i {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(89, 247, 255, 0.88);
}

.auth-x-signal-endpoints {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.35rem;
}

.auth-x-signal-endpoints::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 247, 255, 0.38) 18%, rgba(139, 124, 255, 0.34) 82%, transparent);
  box-shadow: 0 0 16px rgba(89, 247, 255, 0.12);
}

.auth-x-signal-participant {
  position: relative;
  z-index: 1;
  display: grid;
  width: max-content;
  min-width: 126px;
  gap: 0.28rem;
  padding: 0.25rem 0;
}

.auth-x-signal-participant-verifier {
  justify-self: end;
}

.auth-x-signal-participant-verifier > i {
  background: #c6a7ff;
  box-shadow: 0 0 12px rgba(198, 167, 255, 0.82);
}

.auth-x-signal-participant strong {
  color: rgba(241, 245, 255, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
}

.auth-x-signal-participant small,
.auth-x-signal-copy small {
  color: rgba(241, 245, 255, 0.46);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-x-signal-sequence {
  display: grid;
  gap: 0.82rem;
  margin-top: 2rem;
}

.auth-x-signal-row {
  display: grid;
  grid-template-columns: 2rem minmax(8.7rem, 0.85fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
}

.auth-x-signal-row-forward {
  transform: translateX(-14px);
}

.auth-x-signal-row-reverse {
  transform: translateX(14px);
}

.auth-x-hero.is-visible .auth-x-signal-row {
  animation: auth-x-signal-row-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(1) {
  animation-delay: 0.15s;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(2) {
  animation-delay: 0.3s;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(3) {
  animation-delay: 0.45s;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(4) {
  animation-delay: 0.6s;
}

.auth-x-signal-index {
  color: var(--accent);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.auth-x-signal-copy {
  display: grid;
  gap: 0.22rem;
}

.auth-x-signal-copy strong {
  color: rgba(241, 245, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
}

.auth-x-signal-line {
  position: relative;
  height: 0.9rem;
  overflow: visible;
  border-top: 1px solid rgba(89, 247, 255, 0.48);
  background: transparent;
}

.auth-x-signal-line::before {
  content: "";
  position: absolute;
  top: -0.18rem;
  left: 0;
  width: 32%;
  height: 0.35rem;
  background: linear-gradient(90deg, rgba(89, 247, 255, 0.18), transparent);
  filter: blur(4px);
}

.auth-x-signal-line::after {
  content: "";
  position: absolute;
  top: -0.34rem;
  right: 0;
  z-index: 2;
  width: 0.62rem;
  height: 0.62rem;
  border-top: 2px solid rgba(226, 255, 255, 0.98);
  border-right: 2px solid rgba(226, 255, 255, 0.98);
  filter: drop-shadow(0 0 5px rgba(89, 247, 255, 0.68));
  pointer-events: none;
  transform: rotate(45deg);
}

.auth-x-signal-row-reverse .auth-x-signal-line {
  border-top-color: rgba(198, 167, 255, 0.5);
  background: transparent;
  transform: scaleX(-1);
}

.auth-x-signal-row-reverse .auth-x-signal-line::after {
  border-color: rgba(237, 224, 255, 0.98);
  filter: drop-shadow(0 0 5px rgba(198, 167, 255, 0.72));
}

.auth-x-signal-row-reverse .auth-x-signal-line::before {
  background: linear-gradient(90deg, rgba(198, 167, 255, 0.2), transparent);
}

.auth-x-signal-line i {
  position: absolute;
  top: -0.27rem;
  left: -0.45rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: #f3ffff;
  box-shadow: 0 0 16px rgba(89, 247, 255, 0.95);
  opacity: 0;
}

.auth-x-hero.is-visible .auth-x-signal-line i {
  opacity: 1;
  animation: auth-x-signal-packet 1.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(1) .auth-x-signal-line i {
  animation-delay: 0.35s;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(2) .auth-x-signal-line i {
  animation-delay: 0.75s;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(3) .auth-x-signal-line i {
  animation-delay: 1.15s;
}

.auth-x-hero.is-visible .auth-x-signal-row:nth-child(4) .auth-x-signal-line i {
  animation-delay: 1.55s;
}

.auth-x-hero.is-visible .auth-x-signal-row-reverse .auth-x-signal-line i {
  box-shadow: 0 0 16px rgba(198, 167, 255, 0.95);
}

.auth-x-orbit-stage {
  position: absolute;
  inset: 5.5rem 0 3.8rem;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92);
  transition:
    opacity 0.9s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.9s;
  pointer-events: none;
}

.auth-x-orbit-stage-label {
  position: absolute;
  top: 0.4rem;
  color: rgba(206, 253, 255, 0.55);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-x-forge-field {
  position: relative;
  width: min(90%, 340px);
  height: 190px;
}

.auth-x-forge-source {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(235, 255, 255, 0.86);
  font-size: 0.56rem;
  letter-spacing: 0.17em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-50%);
}

.auth-x-forge-source-left {
  left: 0;
}

.auth-x-forge-source-right {
  right: 0;
}

.auth-x-forge-source i {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(89, 247, 255, 0.95);
}

.auth-x-forge-source-right i {
  background: #c6a7ff;
  box-shadow: 0 0 14px rgba(198, 167, 255, 0.92);
}

.auth-x-forge-source::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8.5rem;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(89, 247, 255, 0.72), transparent);
  box-shadow: 0 0 10px rgba(89, 247, 255, 0.44);
}

.auth-x-forge-source small {
  white-space: nowrap;
}

.auth-x-forge-source-left::after {
  left: calc(100% + 0.55rem);
}

.auth-x-forge-source-right::after {
  right: calc(100% + 0.55rem);
  background: linear-gradient(270deg, rgba(198, 167, 255, 0.76), transparent);
  box-shadow: 0 0 10px rgba(198, 167, 255, 0.46);
}

.auth-x-forge-impact {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(239, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(231, 255, 255, 0.9);
  box-shadow:
    0 0 0 0.45rem rgba(89, 247, 255, 0.11),
    0 0 28px rgba(89, 247, 255, 0.94),
    0 0 44px rgba(198, 167, 255, 0.54);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.auth-x-orbit-field {
  position: relative;
  width: min(72%, 280px);
  height: 160px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(0.35rem) scale(0.72);
}

.auth-x-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(89, 247, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.12);
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: none;
}

.auth-x-orbit-ring::before,
.auth-x-orbit-ring::after {
  content: "";
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(89, 247, 255, 0.88);
}

.auth-x-orbit-ring::before {
  top: 10%;
  left: 12%;
}

.auth-x-orbit-ring::after {
  right: 10%;
  bottom: 14%;
  background: #c6a7ff;
  box-shadow: 0 0 14px rgba(198, 167, 255, 0.8);
}

.auth-x-orbit-ring-one {
  width: 100%;
  height: 56%;
}

.auth-x-orbit-ring-two {
  width: 64%;
  height: 100%;
  border-color: rgba(198, 167, 255, 0.34);
  transform: translate(-50%, -50%) rotate(38deg);
  animation: none;
}

.auth-x-orbit-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #f5ffff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(89, 247, 255, 0.5);
  transform: translate(-50%, -50%);
}

.auth-x-signal-flow.is-orbiting .auth-x-orbit-stage {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.auth-x-signal-flow.is-orbiting .auth-x-forge-source-left {
  animation: auth-x-forge-source-left 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.auth-x-signal-flow.is-orbiting .auth-x-forge-source-right {
  animation: auth-x-forge-source-right 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.auth-x-signal-flow.is-orbiting .auth-x-forge-source::after {
  animation: auth-x-forge-beam 1.15s ease-out 0.1s forwards;
}

.auth-x-signal-flow.is-orbiting .auth-x-forge-source small {
  animation: auth-x-forge-label 1.1s ease-out 0.05s forwards;
}

.auth-x-signal-flow.is-orbiting .auth-x-forge-source-right::after {
  animation-name: auth-x-forge-beam-right;
}

.auth-x-signal-flow.is-orbiting .auth-x-forge-impact {
  animation: auth-x-forge-impact 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.auth-x-signal-flow.is-orbiting .auth-x-orbit-field {
  animation: auth-x-forge-field-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.auth-x-signal-flow.is-orbiting .auth-x-orbit-ring-one {
  animation: auth-x-orbit-spin 8s linear 1.35s infinite;
}

.auth-x-signal-flow.is-orbiting .auth-x-orbit-ring-two {
  animation: auth-x-orbit-spin-two 11s linear 1.35s infinite reverse;
}

.auth-x-signal-flow.is-orbiting .auth-x-orbit-word {
  animation:
    auth-x-forge-word 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both,
    auth-x-orbit-word-pulse 3.4s ease-in-out 2s infinite;
}

.auth-x-signal-flow.is-orbiting .auth-x-signal-endpoints,
.auth-x-signal-flow.is-orbiting .auth-x-signal-sequence {
  opacity: 0.14;
  transition: opacity 0.9s ease;
}

@keyframes auth-x-forge-source-left {
  0% {
    opacity: 0;
    transform: translate(-2.2rem, -50%) scale(0.86);
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate(7.2rem, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(8.1rem, -50%) scale(0.72);
  }
}

@keyframes auth-x-forge-source-right {
  0% {
    opacity: 0;
    transform: translate(2.2rem, -50%) scale(0.86);
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate(-7.2rem, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-8.1rem, -50%) scale(0.72);
  }
}

@keyframes auth-x-forge-beam {
  0% {
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: left center;
  }
  35%,
  72% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.25);
    transform-origin: left center;
  }
}

@keyframes auth-x-forge-beam-right {
  0% {
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: right center;
  }
  35%,
  72% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.25);
    transform-origin: right center;
  }
}

@keyframes auth-x-forge-label {
  0%,
  12% {
    opacity: 0;
  }
  22%,
  42% {
    opacity: 1;
  }
  58%,
  100% {
    opacity: 0;
  }
}

@keyframes auth-x-forge-impact {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  36% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.35);
  }
  58% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.88);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}

@keyframes auth-x-forge-field-in {
  0% {
    opacity: 0;
    transform: translateY(0.35rem) scale(0.72);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes auth-x-forge-word {
  0% {
    opacity: 0;
    letter-spacing: 0.24em;
    filter: blur(5px);
    transform: translate(-50%, -50%) scale(0.72);
  }
  70% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1.06);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.06em;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes auth-x-orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(342deg);
  }
}

@keyframes auth-x-orbit-spin-two {
  to {
    transform: translate(-50%, -50%) rotate(-322deg);
  }
}

@keyframes auth-x-orbit-word-pulse {
  0%,
  100% {
    opacity: 0.82;
    letter-spacing: 0.06em;
  }
  50% {
    opacity: 1;
    letter-spacing: 0.1em;
  }
}

@keyframes auth-x-signal-row-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes auth-x-signal-packet {
  0%,
  12% {
    left: -0.45rem;
  }
  62%,
  100% {
    left: calc(100% - 0.1rem);
  }
}

.auth-x-benchmark-plot {
  display: grid;
  gap: 1.1rem;
  max-width: 820px;
  margin-top: 2rem;
}

.auth-x-benchmark-row {
  display: grid;
  gap: 0.55rem;
}

.auth-x-benchmark-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(241, 245, 255, 0.7);
  font-size: 0.78rem;
}

.auth-x-benchmark-label strong {
  color: rgba(241, 245, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 500;
}

.auth-x-benchmark-track {
  height: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.auth-x-benchmark-track span {
  display: block;
  width: var(--benchmark-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #91d8ff, #9f8dff);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.4);
}

.auth-x-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.auth-x-chart {
  min-width: 0;
  margin: 0;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(3, 10, 22, 0.62);
}

.auth-x-chart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.auth-x-chart-kicker {
  color: rgba(206, 253, 255, 0.68);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auth-x-chart h3 {
  max-width: 26ch;
  margin-top: 0.55rem;
  color: #fff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.auth-x-chart-scale {
  flex: 0 0 auto;
  padding: 0.38rem 0.5rem;
  border: 1px solid rgba(89, 247, 255, 0.15);
  border-radius: 999px;
  color: rgba(241, 245, 255, 0.46);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.auth-x-chart-axis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 1.55rem 0 0.4rem;
  color: rgba(241, 245, 255, 0.34);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-x-chart-axis span:not(:first-child) {
  text-align: center;
}

.auth-x-chart-axis span:last-child {
  text-align: right;
}

.auth-x-chart-body {
  display: grid;
  gap: 1.15rem;
}

.auth-x-chart-row {
  display: grid;
  gap: 0.5rem;
}

.auth-x-chart-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(241, 245, 255, 0.7);
  font-size: 0.78rem;
}

.auth-x-chart-label strong {
  color: rgba(241, 245, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 500;
}

.auth-x-chart-track {
  position: relative;
  height: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 20%),
    rgba(255, 255, 255, 0.035);
}

.auth-x-chart-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08));
  opacity: 0.45;
}

.auth-x-chart-bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #91d8ff, #9f8dff);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.38);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.auth-x-chart-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -38%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
}

.auth-x-chart.is-visible .auth-x-chart-bar {
  width: var(--chart-width);
}

.auth-x-chart.is-visible .auth-x-chart-bar::after {
  opacity: 1;
  animation: auth-x-bar-sheen 1.15s ease-out 0.32s both;
}

@keyframes auth-x-bar-sheen {
  from {
    left: -38%;
  }
  to {
    left: 100%;
  }
}

.auth-x-chart-bar-session {
  background: linear-gradient(90deg, #7e9eff, #ae8cff);
  box-shadow: 0 0 18px rgba(139, 124, 255, 0.38);
}

.auth-x-chart figcaption {
  margin-top: 1.1rem;
  color: rgba(241, 245, 255, 0.44);
  font-size: 0.68rem;
  line-height: 1.5;
}

.auth-x-range-axis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auth-x-range-plot {
  position: relative;
  min-height: 76px;
  margin-top: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.auth-x-range-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 33.333%);
  opacity: 0.85;
}

.auth-x-range-band {
  position: absolute;
  top: 50%;
  left: var(--range-start);
  width: var(--range-width);
  height: 0.85rem;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #9f8dff);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.4);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.auth-x-range-chart.is-visible .auth-x-range-band {
  transform: translateY(-50%) scaleX(1);
}

.auth-x-range-average {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: var(--range-average);
  width: 1px;
  opacity: 0;
  transform: translateX(-50%) scaleY(0.4);
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition:
    opacity 0.55s ease 0.9s,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.9s;
}

.auth-x-range-chart.is-visible .auth-x-range-average {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}

.auth-x-range-average i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.auth-x-range-average strong {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  color: rgba(241, 245, 255, 0.84);
  font-size: 0.65rem;
  font-weight: 500;
  white-space: nowrap;
  transform: translateX(-50%);
}

.auth-x-range-min,
.auth-x-range-max {
  position: absolute;
  top: calc(50% + 0.9rem);
  color: rgba(241, 245, 255, 0.58);
  font-size: 0.68rem;
  transform: translateX(-50%);
}

.auth-x-range-min {
  left: var(--range-start);
}

.auth-x-range-max {
  left: var(--range-end);
}

.auth-x-range-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
  color: rgba(241, 245, 255, 0.5);
  font-size: 0.68rem;
}

.auth-x-range-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.auth-x-legend-band {
  width: 1.1rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #9f8dff);
}

.auth-x-legend-average {
  width: 1px;
  height: 0.65rem;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.auth-x-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-x-product-footer > div {
  display: grid;
  gap: 0.3rem;
}

.auth-x-product-footer-kicker {
  color: var(--accent);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-x-product-footer strong {
  color: rgba(241, 245, 255, 0.9);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: stretch;
}

.about-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 18, 34, 0.84), rgba(8, 13, 26, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.about-metric strong {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: #fff;
}

.about-metric span {
  color: var(--muted);
  text-align: right;
}

.network-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.network-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.network-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--muted);
}

.network-title {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.2;
  margin: 0;
}

.network-summary {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 40ch;
}

.network-viz {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  isolation: isolate;
}

.network-3d {
  z-index: 2;
  pointer-events: auto;
}

.network-3d.is-ready {
  opacity: 0.98;
}

.network-2d {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.network-viz.is-3d .network-2d {
  opacity: 0;
  pointer-events: none;
}

.network-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 160px;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(7, 12, 24, 0.92);
  border: 1px solid rgba(89, 247, 255, 0.35);
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.network-tooltip.is-visible {
  opacity: 1;
}

.network-tooltip strong {
  display: block;
  font-size: 0.78rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.network-lines .line {
  stroke: rgba(89, 247, 255, 0.35);
  stroke-width: 2;
  stroke-dasharray: 6 12;
  animation: line-dash 3.6s linear infinite;
}

.network-lines .line-2 {
  animation-delay: 0.4s;
}

.network-lines .line-3 {
  animation-delay: 0.8s;
}

.network-lines .line-4 {
  animation-delay: 1.2s;
}

.network-lines .line-5 {
  animation-delay: 1.6s;
}

.network-lines .line-6 {
  animation-delay: 2s;
}

.sink-node {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 18vw, 200px);
  display: grid;
  place-items: center;
  gap: 0.4rem;
  z-index: 3;
}

.sink-screen {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(89, 247, 255, 0.2), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(89, 247, 255, 0.4);
  box-shadow: 0 20px 40px rgba(2, 8, 18, 0.6), inset 0 0 30px rgba(89, 247, 255, 0.2);
  position: relative;
}

.sink-screen::after {
  content: "";
  position: absolute;
  inset: 18% 22%;
  border-radius: 10px;
  border: 1px solid rgba(89, 247, 255, 0.4);
  background: rgba(6, 12, 24, 0.6);
}

.sink-base {
  width: 52%;
  height: 12px;
  border-radius: 999px;
  background: rgba(89, 247, 255, 0.3);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.25);
}

.sink-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.node {
  position: absolute;
  width: clamp(90px, 12vw, 140px);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.node img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 45px rgba(2, 12, 24, 0.6));
}

.node::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  border: 1px solid rgba(89, 247, 255, 0.45);
  opacity: 0.5;
  animation: node-pulse 3.4s ease-out infinite;
}

.node::after {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  border: 1px dashed rgba(89, 247, 255, 0.25);
  opacity: 0.4;
  animation: node-pulse 3.4s ease-out infinite;
  animation-delay: 1.2s;
}

.node-1 {
  left: 12%;
  top: 18%;
}

.node-2 {
  left: 86%;
  top: 20%;
}

.node-3 {
  left: 10%;
  top: 56%;
}

.node-4 {
  left: 88%;
  top: 60%;
}

.node-5 {
  left: 22%;
  top: 84%;
}

.node-6 {
  left: 74%;
  top: 88%;
}

.lwc-tag {
  position: absolute;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(89, 247, 255, 0.16);
  border: 1px solid rgba(89, 247, 255, 0.5);
  color: #e6fbff;
  box-shadow: 0 0 16px rgba(89, 247, 255, 0.25);
  transform: translate(-50%, -50%);
  animation: lwc-pulse 2.6s ease-in-out infinite;
  z-index: 2;
}

.tag-1 {
  left: 28%;
  top: 30%;
}

.tag-2 {
  left: 70%;
  top: 32%;
  animation-delay: 0.4s;
}

.tag-3 {
  left: 24%;
  top: 66%;
  animation-delay: 0.8s;
}

.tag-4 {
  left: 72%;
  top: 70%;
  animation-delay: 1.2s;
}

.tag-5 {
  left: 48%;
  top: 78%;
  animation-delay: 1.6s;
}

.final {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem 6rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(89, 247, 255, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.65), rgba(3, 6, 13, 0.75));
}

.contact-panel {
  width: min(980px, 100%);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 18, 34, 0.85), rgba(7, 12, 22, 0.94)),
    rgba(11, 18, 34, 0.88);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.contact-copy {
  max-width: 54ch;
  margin: 1rem auto 0;
}

.contact-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.about-lore-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(9rem, 15vw, 12rem) 1.5rem clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 24%, rgba(89, 247, 255, 0.16), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(139, 124, 255, 0.14), transparent 35%),
    linear-gradient(145deg, rgba(5, 14, 25, 0.96), rgba(4, 8, 17, 0.98));
}

.about-lore-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(89, 247, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 247, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, black, transparent 74%);
}

.about-lore-hero::after {
  content: "";
  position: absolute;
  right: -11rem;
  bottom: -10rem;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(139, 124, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem rgba(139, 124, 255, 0.025),
    0 0 0 5rem rgba(89, 247, 255, 0.025);
  transform: rotate(24deg) scaleY(0.42);
}

.about-lore-shell,
.about-content-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.about-lore-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-lore-intro {
  max-width: 760px;
}

.about-lore-title {
  max-width: 10ch;
  margin-top: 0;
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(3.25rem, 7.6vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
  text-shadow: 0 0 36px rgba(89, 247, 255, 0.12);
}

.about-lore-lede {
  max-width: 60ch;
  margin-top: 1.7rem;
  color: rgba(241, 245, 255, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.78;
}

.about-lore-links,
.about-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.about-lore-links {
  margin-top: 2rem;
}

.about-lore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.42rem;
  border-bottom: 1px solid rgba(89, 247, 255, 0.58);
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.about-lore-link:hover,
.about-lore-link:focus-visible {
  gap: 0.8rem;
  color: #eaffff;
  border-color: #eaffff;
  outline: none;
}

.about-lore-link-muted {
  color: rgba(241, 245, 255, 0.64);
  border-color: rgba(241, 245, 255, 0.25);
}

.about-origin-card {
  position: relative;
  min-height: 410px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid rgba(89, 247, 255, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(14, 32, 51, 0.92), rgba(8, 14, 28, 0.95)),
    rgba(8, 14, 27, 0.92);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.about-origin-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f1ffff, rgba(208, 138, 239, 0.9), transparent);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.36);
}

.about-origin-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgba(89, 247, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-20deg) scaleY(0.48);
}

.about-origin-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: rgba(206, 253, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-origin-identity {
  position: relative;
  z-index: 1;
  height: 280px;
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
}

.about-origin-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 330px);
  height: 168px;
  border: 1px solid rgba(89, 247, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg) scaleY(0.72);
  box-shadow:
    0 0 0 1rem rgba(89, 247, 255, 0.025),
    0 0 30px rgba(89, 247, 255, 0.1);
}

.about-origin-orbit::before,
.about-origin-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(208, 138, 239, 0.22);
  border-radius: 50%;
}

.about-origin-orbit::before {
  inset: 12%;
}

.about-origin-orbit::after {
  inset: 27%;
  border-color: rgba(255, 189, 121, 0.18);
}

.about-origin-logo {
  --origin-angle: 0deg;
  --origin-radius: clamp(5.1rem, 9vw, 5.5rem);
  --origin-delay: 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(10.5rem, 24vw, 13rem);
  height: clamp(5.5rem, 10vw, 6.4rem);
  place-items: center;
  transform: translate(-50%, -50%) rotate(var(--origin-angle)) translateX(var(--origin-radius)) rotate(calc(-1 * var(--origin-angle)));
  animation: about-origin-logo-orbit 12s linear var(--origin-delay) infinite;
  will-change: transform;
}

.about-origin-logo-habib {
  --origin-angle: 0deg;
  --origin-delay: 0s;
}

.about-origin-logo-aspid {
  --origin-angle: 180deg;
  --origin-delay: -6s;
  width: 6.4rem;
  height: 6.5rem;
  overflow: hidden;
}

.about-origin-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 3.9rem;
  object-fit: contain;
}

.about-origin-logo-habib img {
  width: 6.4rem;
  height: 6.4rem;
  max-width: 6.4rem;
  max-height: 6.4rem;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(1, 6, 17, 0.32));
}

.about-origin-logo-aspid img {
  position: absolute;
  top: -54%;
  left: -38%;
  width: 330%;
  max-width: none;
  max-height: none;
  transform: none;
  filter: drop-shadow(0 10px 18px rgba(1, 6, 17, 0.32));
}

.about-origin-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(89, 247, 255, 0.38);
  border-radius: 50%;
  color: #eaffff;
  background: rgba(6, 15, 28, 0.92);
  box-shadow: 0 0 28px rgba(89, 247, 255, 0.2);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(89, 247, 255, 0.7);
  transform: translate(-50%, -50%);
}

.about-origin-identity-label {
  position: absolute;
  right: 0;
  bottom: -1.6rem;
  left: 0;
  z-index: 3;
  margin: 0;
  color: rgba(206, 253, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.about-origin-identity-label span {
  margin: 0 0.35rem;
  color: var(--accent);
}

@keyframes about-origin-logo-orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--origin-radius)) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(var(--origin-radius)) rotate(-360deg);
  }
}

.about-origin-title {
  position: relative;
  z-index: 1;
  margin-top: 2.6rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.about-origin-copy {
  position: relative;
  z-index: 1;
  max-width: 32ch;
  margin-top: 0.7rem;
  color: rgba(241, 245, 255, 0.62);
  line-height: 1.65;
}

.about-origin-rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  margin-top: 1.8rem;
  background: linear-gradient(90deg, rgba(89, 247, 255, 0.4), transparent);
}

.about-origin-foot {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  color: rgba(206, 253, 255, 0.55);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-origin-foot span {
  margin: 0 0.35rem;
  color: var(--accent);
}

.about-story-section,
.about-principles-section {
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
}

.about-story-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(139, 124, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.78), rgba(4, 8, 16, 0.92));
}

.about-evidence-section {
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(89, 247, 255, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.92), rgba(5, 10, 19, 0.84));
}

.about-evidence-heading {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.about-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-evidence-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(14, 30, 48, 0.88), rgba(7, 13, 25, 0.94));
  box-shadow: var(--shadow-soft);
}

.about-evidence-card-award {
  border-color: rgba(198, 167, 255, 0.2);
  background: linear-gradient(155deg, rgba(30, 25, 56, 0.7), rgba(7, 13, 25, 0.94));
}

.about-evidence-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0b1423;
}

.about-evidence-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-evidence-card figcaption {
  flex: 1;
  padding: 1.35rem 1.4rem 1.5rem;
}

.about-evidence-caption-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: rgba(206, 253, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-evidence-card h3 {
  max-width: 16ch;
  margin-top: 0.8rem;
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-evidence-card p {
  max-width: 54ch;
  margin-top: 0.75rem;
  color: rgba(241, 245, 255, 0.62);
  line-height: 1.65;
}

.about-evidence-meta {
  color: rgba(206, 253, 255, 0.78) !important;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-principles-section {
  background:
    radial-gradient(circle at 12% 35%, rgba(89, 247, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.92), rgba(6, 11, 21, 0.8));
}

.about-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.about-section-title {
  max-width: 15ch;
  margin-top: 0;
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.about-section-summary {
  max-width: 56ch;
  color: rgba(241, 245, 255, 0.66);
  font-size: 1.04rem;
  line-height: 1.8;
}

.about-story-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-story-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.42fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 1.4rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-principle-label {
  color: var(--accent);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-story-label {
  padding-top: 0.08rem;
  color: rgba(206, 253, 255, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-story-copy {
  max-width: 58ch;
}

.about-story-copy h3 {
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
}

.about-story-copy p {
  margin-top: 0.55rem;
  color: rgba(241, 245, 255, 0.62);
  line-height: 1.7;
}

.about-principles-heading {
  margin-bottom: 2.6rem;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-principle-card {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(14, 30, 48, 0.78), rgba(7, 13, 25, 0.9));
  box-shadow: var(--shadow-soft);
}

.about-principle-card:nth-child(2) {
  border-color: rgba(139, 124, 255, 0.22);
  background: linear-gradient(150deg, rgba(31, 27, 62, 0.62), rgba(7, 13, 25, 0.9));
}

.about-principle-card h3 {
  max-width: 12ch;
  margin-top: 3.6rem;
  color: #fff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-principle-card p {
  max-width: 28ch;
  margin-top: 0.8rem;
  color: rgba(241, 245, 255, 0.6);
  line-height: 1.6;
}

.about-next-section {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 9vw, 8rem) 1.5rem;
  background:
    radial-gradient(circle at 72% 28%, rgba(89, 247, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(5, 9, 18, 0.84), rgba(3, 6, 13, 0.95));
}

.about-next-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.68fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  width: min(1040px, 100%);
  padding: clamp(1.6rem, 5vw, 3.4rem);
  border: 1px solid rgba(89, 247, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(14, 32, 51, 0.86), rgba(7, 12, 24, 0.94)),
    rgba(8, 14, 27, 0.9);
  box-shadow: var(--shadow-strong);
}

.about-next-title {
  max-width: 14ch;
  margin-top: 0;
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-next-copy {
  max-width: 54ch;
  margin-top: 1.1rem;
  color: rgba(241, 245, 255, 0.64);
  line-height: 1.7;
}

.about-next-links {
  flex-direction: column;
  align-items: flex-start;
}

.founder-contact-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(8rem, 14vw, 11rem) 1.5rem clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 13% 22%, rgba(89, 247, 255, 0.16), transparent 30%),
    radial-gradient(circle at 91% 72%, rgba(139, 124, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(5, 14, 25, 0.94), rgba(4, 8, 17, 0.98));
}

.founder-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(89, 247, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 247, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
}

.founder-contact-hero::after {
  content: "";
  position: absolute;
  top: 14%;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  z-index: -1;
  border: 1px solid rgba(89, 247, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem rgba(89, 247, 255, 0.025),
    0 0 0 5rem rgba(139, 124, 255, 0.025);
  transform: rotate(-18deg) scaleY(0.42);
  opacity: 0.8;
}

.founder-contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(1160px, 100%);
}

.founder-contact-intro {
  max-width: 720px;
}

.founder-contact-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: rgba(206, 253, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-contact-eyebrow-line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.founder-contact-title {
  max-width: 11ch;
  margin-top: 1.35rem;
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-shadow: 0 0 36px rgba(89, 247, 255, 0.12);
}

.founder-contact-lede {
  max-width: 54ch;
  margin-top: 1.6rem;
  color: rgba(241, 245, 255, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

.founder-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.founder-github-button {
  gap: 0.7rem;
  padding-left: 0.85rem;
}

.founder-github-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(4, 16, 24, 0.12);
}

.founder-github-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.founder-button-arrow {
  margin-left: 0.1rem;
  font-size: 1.15rem;
  line-height: 1;
}

.founder-contact-note {
  margin-top: 1.35rem;
  color: rgba(241, 245, 255, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-contact-orbit {
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 11rem;
  border: 1px solid rgba(89, 247, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-18deg);
}

.founder-contact-orbit-one {
  top: 12%;
  left: -9rem;
}

.founder-contact-orbit-two {
  right: -8rem;
  bottom: 10%;
  border-color: rgba(198, 167, 255, 0.14);
  transform: rotate(34deg) scale(0.8);
}

.founder-profile-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(89, 247, 255, 0.2);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(14, 32, 51, 0.92), rgba(8, 14, 28, 0.94)),
    rgba(8, 14, 27, 0.92);
  box-shadow:
    0 30px 80px rgba(1, 7, 17, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.founder-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f1ffff, rgba(208, 138, 239, 0.9), transparent);
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.36);
}

.founder-profile-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(89, 247, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 247, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, black, transparent 68%);
}

.founder-profile-head,
.founder-profile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.founder-profile-head {
  color: rgba(206, 253, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-profile-head strong {
  color: var(--accent);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.founder-profile-person {
  display: grid;
  grid-template-columns: minmax(9rem, 0.44fr) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 3.8rem;
}

.founder-avatar {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-width: 11rem;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(210, 247, 255, 0.28);
  border-radius: 20px;
  background: #132237;
  box-shadow:
    0 0 0 0.45rem rgba(89, 247, 255, 0.035),
    0 20px 42px rgba(2, 10, 22, 0.36),
    0 0 24px rgba(89, 247, 255, 0.14);
}

.founder-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 10, 20, 0.24));
  pointer-events: none;
}

.founder-avatar::after {
  display: none;
}

.founder-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.founder-profile-role {
  color: rgba(206, 253, 255, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.founder-profile-person h2 {
  margin-top: 0.35rem;
  color: #f7fbff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.045em;
}

.founder-profile-copy {
  max-width: 34ch;
  margin-top: 2rem;
  color: rgba(241, 245, 255, 0.68);
  line-height: 1.65;
}

.founder-focus-list {
  display: grid;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.founder-focus-list div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-focus-list span {
  color: var(--accent);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.founder-focus-list strong {
  color: rgba(241, 245, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 500;
}

.founder-profile-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 245, 255, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.founder-profile-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}

.founder-profile-footer a:hover,
.founder-profile-footer a:focus-visible {
  color: #f0ffff;
  outline: none;
  transform: translateX(2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes navTraceMove {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes slow-glow {
  0%,
  100% {
    text-shadow: 0 0 24px rgba(89, 247, 255, 0.25);
  }
  50% {
    text-shadow: 0 0 42px rgba(89, 247, 255, 0.45);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0.7;
  }
}

@keyframes data-flow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 160px 0;
  }
}

@keyframes encrypt-glow {
  0%,
  100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes packet-plain {
  0% {
    left: 0%;
    opacity: 0;
    transform: translate(-50%, -160%) scale(0.96);
  }
  12% {
    opacity: 1;
  }
  48% {
    left: 55%;
    opacity: 1;
    transform: translate(-50%, -160%) scale(1);
  }
  60% {
    opacity: 0;
    transform: translate(-50%, -160%) scale(0.96);
  }
  100% {
    left: 60%;
    opacity: 0;
  }
}

@keyframes packet-cipher {
  0%,
  50% {
    left: 0%;
    opacity: 0;
    transform: translate(-50%, -160%) scale(0.96);
  }
  62% {
    left: 10%;
    opacity: 1;
    transform: translate(-50%, -160%) scale(1);
  }
  92% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -160%) scale(0.96);
  }
}

@keyframes hacker-peek {
  0%,
  18% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.92);
  }
  30%,
  52% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.92);
  }
}

@keyframes lock-reveal {
  0%,
  48% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.85);
  }
  62% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.9);
  }
}
@keyframes device-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes line-dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes node-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.15;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes lwc-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes starRain {
  0% {
    background-position: 0 0, 0 0, 0 -600px, 90px -1200px, -40px -900px;
  }
  100% {
    background-position: 180px 120px, -120px 180px, 0 1600px, 90px 1400px, -40px 1200px;
  }
}

@keyframes streamSlide {
  0% {
    background-position: 0 0, 0 0, 20% 40%, 70% 60%, 50% 20%;
  }
  100% {
    background-position: -220px 160px, 160px -200px, 30% 44%, 74% 66%, 54% 24%;
  }
}

@keyframes glyphFade {
  0%,
  100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.12;
  }
}

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

  body::after,
  main::before,
  main::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 0 1rem 1.25rem;
  border-top: 1px solid rgba(126, 214, 231, 0.14);
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.08), rgba(3, 5, 9, 0.92));
}

.site-footer-shell,
.site-footer-meta {
  width: min(1240px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.6rem, 5vw, 4rem) 0 2rem;
}

.site-footer-branding {
  max-width: 22rem;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
}

.site-footer-brand-mark {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(240, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.22rem rgba(89, 247, 255, 0.08), 0 0 14px rgba(89, 247, 255, 0.7);
}

.site-footer-branding p {
  max-width: 18rem;
  margin-top: 0.85rem;
  color: rgba(241, 245, 255, 0.54);
  font-size: 0.78rem;
  line-height: 1.65;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  padding-top: 0.15rem;
}

.site-footer-nav a {
  color: rgba(241, 245, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
  color: var(--accent);
}

.site-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(126, 214, 231, 0.12);
  color: rgba(241, 245, 255, 0.42);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer-meta p {
  color: rgba(241, 245, 255, 0.56);
}

@media (max-width: 640px) {
  .site-footer-shell {
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 2.4rem;
  }

  .site-footer-nav {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
  }

  .site-footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0.75rem;
    padding: 0 0.75rem;
  }

  .nav-shell {
    width: calc(100vw - 1.5rem);
    padding: 0.8rem 0.9rem 0.8rem 1rem;
  }

  .site-nav {
    display: none;
  }

  .nav-actions {
    display: flex;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.32rem;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
  }

  .nav-toggle span {
    width: 1.15rem;
    height: 1.5px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    width: min(1240px, calc(100vw - 1.5rem));
    margin: 0.7rem auto 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.34s ease,
      opacity 0.26s ease,
      transform 0.26s ease;
    pointer-events: auto;
  }

  .site-header.is-open .mobile-menu {
    max-height: 80vh;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    padding: 1rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 26, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
  }

  .mobile-nav-link,
  .mobile-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 3.1rem;
    padding: 0.9rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: transparent;
    color: #fff;
    text-decoration: none;
    font: inherit;
  }

  .mobile-products-toggle {
    cursor: pointer;
  }

  .mobile-products.is-open .mobile-products-toggle .nav-caret {
    transform: rotate(225deg) translateY(-1px);
  }

  .mobile-products-grid {
    display: grid;
    gap: 0.8rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
  }

  .mobile-products.is-open .mobile-products-grid {
    max-height: 42rem;
    opacity: 1;
    padding: 0.85rem 0 0.3rem;
  }

  .mobile-product-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-decoration: none;
  }

  .mobile-product-logo {
    display: block;
    width: min(100%, 15rem);
    height: 3.85rem;
    margin-bottom: 0.15rem;
    padding: 0;
  }

  .mobile-product-card span:first-child {
    color: #fff;
    font-weight: 600;
  }

  .mobile-product-card span:last-child {
    color: var(--muted);
    line-height: 1.55;
  }

  .mobile-product-card-featured {
    border-color: rgba(89, 247, 255, 0.24);
    background: linear-gradient(135deg, rgba(89, 247, 255, 0.08), rgba(139, 124, 255, 0.08));
  }

  .mobile-product-card-baudtide {
    border-color: rgba(93, 226, 188, 0.24);
    background: linear-gradient(135deg, rgba(93, 226, 188, 0.09), rgba(89, 247, 255, 0.06));
  }

  .mobile-product-card-upcoming {
    cursor: default;
    border-style: dashed;
    border-color: rgba(139, 124, 255, 0.28);
    background: rgba(139, 124, 255, 0.05);
  }

  .mobile-product-card-upcoming .mobile-product-title-row {
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .mobile-product-card-upcoming .mobile-product-upcoming-label {
    color: rgba(225, 216, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-actions {
    display: grid;
    gap: 0.8rem;
    padding-top: 1rem;
  }

  .hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 2.5rem) 1.25rem 5rem;
  }

  .hero-content {
    position: static;
    min-height: auto;
    padding: 0;
    text-align: center;
  }

  .hero-brand {
    transform: translateX(0) translateY(0) scale(1) !important;
  }

  .hero-features {
    position: static;
    align-items: center;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
  }

  .hero-feature {
    opacity: 1;
    transform: translateY(0);
  }

  .logo {
    width: min(98vw, 600px);
    margin: 0 auto;
  }

  .scroll-hint {
    letter-spacing: 0.2em;
  }

  .narrative {
    padding: 4.5rem 1.25rem 5.5rem;
  }

  .device-bridge {
    flex-direction: column;
    gap: 1.5rem;
  }

  .bridge-3d {
    inset: -25% -4%;
  }

  .link-line {
    width: min(300px, 80vw);
    min-height: 190px;
  }

  .packet {
    min-width: clamp(160px, 72vw, 230px);
    max-width: 260px;
  }

  .packet-body {
    font-size: 0.72rem;
  }

  .hacker-figure img {
    width: clamp(90px, 22vw, 130px);
  }

  .lock-indicator img {
    width: clamp(70px, 18vw, 100px);
  }

  .story-lines {
    perspective: none;
  }

  .story-line {
    min-height: 44vh;
    max-width: 42ch;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    transform: translateY(var(--line-shift, 0px));
  }

  .story-logo {
    width: min(70vw, 220px);
    margin-top: 0.8rem;
  }

  .network {
    padding: 4rem 1.25rem 6rem;
  }

  .products-section,
  .about-section,
  .final {
    padding: 4rem 1.25rem 5.5rem;
  }

  .auth-x-section {
    padding-top: 7.5rem;
  }

  .product-showcase-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: center;
    margin: 0 auto;
  }

  .section-summary {
    margin-left: auto;
    margin-right: auto;
  }

  .about-metric {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-metric span {
    text-align: left;
  }

  .network-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .network-text {
    align-items: center;
  }

  .network-summary {
    max-width: 42ch;
  }

  .network-lines .line,
  .node::before,
  .node::after,
  .link-track::before,
  .link-track::after,
  .device {
    animation: none;
  }

  .node img {
    filter: none;
  }

  .narrative .content {
    border-radius: 22px;
  }

  .network-tooltip {
    display: none;
  }

  body::after {
    opacity: 0.18;
  }

  main::before,
  main::after {
    opacity: 0;
  }
}

/* Simplified encrypted hub-and-spoke network diagram. */
.network {
  padding: clamp(4.5rem, 9vw, 7rem) 1.5rem clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(89, 247, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.72), rgba(3, 7, 15, 0.88));
}

.network-content {
  width: min(1180px, 100%);
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.network-text {
  gap: 1.1rem;
}

.network-kicker {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.network-title {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.network-summary {
  max-width: 36ch;
  font-size: clamp(0.94rem, 1.45vw, 1.08rem);
  line-height: 1.65;
}

.network-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 0.35rem;
  color: rgba(241, 245, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.network-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.network-legend i {
  display: inline-block;
  flex: 0 0 auto;
}

.legend-device,
.legend-server {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.legend-device {
  background: var(--accent-3);
  box-shadow: 0 0 10px rgba(136, 217, 255, 0.8);
}

.legend-tunnel {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 9px rgba(89, 247, 255, 0.8);
}

.legend-server {
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(139, 124, 255, 0.8);
}

.network-viz {
  width: min(100%, 760px);
  height: clamp(470px, 40vw, 560px);
  aspect-ratio: auto;
  margin: 0 auto;
  overflow: visible;
}

.network-viz-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.network-viz-shell::before,
.network-viz-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.network-viz-shell::before {
  inset: 1.5rem 0;
  z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(89, 247, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 247, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 78%, transparent);
}

.network-viz-shell::after {
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(89, 247, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2.5rem rgba(89, 247, 255, 0.018), 0 0 0 5rem rgba(89, 247, 255, 0.012);
}

.network-viz-topline {
  position: absolute;
  top: 0.25rem;
  right: 0;
  left: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(241, 245, 255, 0.48);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(241, 245, 255, 0.7);
}

.network-live i,
.network-server-state i,
.network-node-top i {
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px var(--accent);
  animation: network-status-pulse 2.4s ease-in-out infinite;
}

.network-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-route-base,
.network-route-line {
  fill: none;
  stroke-linecap: round;
}

.network-route-base {
  stroke: rgba(89, 247, 255, 0.12);
  stroke-width: 12;
}

.network-route-line {
  stroke: url("#network-route-gradient");
  stroke-width: 2;
  stroke-dasharray: 10 15;
  animation: network-route-flow 1.7s linear infinite;
  filter: drop-shadow(0 0 4px rgba(89, 247, 255, 0.45));
}

.network-route-line-vertical {
  animation-delay: -0.5s;
}

.network-packet {
  fill: #eaffff;
}

.network-packet-reply {
  fill: #a79dff;
}

.network-server,
.network-node,
.network-cipher {
  position: absolute;
  z-index: 4;
}

.network-server {
  left: 50%;
  top: 49.5%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(76%, 310px);
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(139, 124, 255, 0.44);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(31, 29, 64, 0.96), rgba(8, 18, 31, 0.96));
  box-shadow: 0 0 0 5px rgba(139, 124, 255, 0.05), 0 16px 30px rgba(2, 8, 18, 0.45), 0 0 26px rgba(139, 124, 255, 0.16);
  transform: translate(-50%, -50%);
}

.network-server-icon {
  display: grid;
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 11px;
  background: rgba(139, 124, 255, 0.16);
  color: #d7d1ff;
}

.network-server-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.network-server strong,
.network-server span,
.network-node strong,
.network-node span {
  display: block;
}

.network-server strong {
  color: #fff;
  font-size: 0.82rem;
}

.network-server > div:nth-child(2) span {
  margin-top: 0.18rem;
  color: rgba(241, 245, 255, 0.52);
  font-size: 0.58rem;
}

.network-server-state {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  color: var(--accent) !important;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-node {
  width: clamp(118px, 17vw, 150px);
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(136, 217, 255, 0.3);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(15, 38, 53, 0.96), rgba(6, 17, 29, 0.96));
  box-shadow: 0 12px 24px rgba(2, 8, 18, 0.34), 0 0 18px rgba(89, 247, 255, 0.08);
}

.network-node-1 {
  top: 14%;
  left: 5%;
}

.network-node-2 {
  top: 14%;
  right: 5%;
}

.network-node-3 {
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.network-node-top {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  color: rgba(241, 245, 255, 0.54);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.network-node strong {
  margin-top: 0.42rem;
  color: #fff;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 0.94rem;
}

.network-node > span:last-child {
  margin-top: 0.15rem;
  color: var(--accent);
  font-size: 0.58rem;
}

.network-cipher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.45rem;
  border: 1px solid rgba(89, 247, 255, 0.24);
  border-radius: 7px;
  background: rgba(5, 18, 29, 0.82);
  color: rgba(215, 255, 255, 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 14px rgba(89, 247, 255, 0.1);
  animation: network-cipher-pulse 2.4s ease-in-out infinite;
}

.network-cipher i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 7px var(--accent);
}

.network-cipher-1 {
  top: 32%;
  left: 30%;
}

.network-cipher-2 {
  top: 32%;
  right: 30%;
  animation-delay: 0.8s;
}

.network-cipher-3 {
  bottom: 29%;
  left: 50%;
  animation-delay: 1.5s;
  transform: translateX(-50%);
}

@keyframes network-route-flow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -50;
  }
}

@keyframes network-status-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes network-cipher-pulse {
  0%,
  100% {
    border-color: rgba(89, 247, 255, 0.2);
    box-shadow: 0 0 12px rgba(89, 247, 255, 0.06);
  }
  50% {
    border-color: rgba(89, 247, 255, 0.5);
    box-shadow: 0 0 18px rgba(89, 247, 255, 0.18);
  }
}

@media (max-width: 768px) {
  .network {
    padding: 4.75rem 1rem 6rem;
  }

  .network-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .network-text {
    align-items: center;
  }

  .network-title {
    max-width: 15ch;
  }

  .network-summary {
    max-width: 38ch;
  }

  .network-legend {
    justify-content: center;
  }

  .network-viz {
    width: min(100%, 560px);
    height: clamp(450px, 118vw, 520px);
  }

  .network-viz-shell {
    min-height: 0;
  }

  .network-node {
    width: 120px;
  }

  .network-node-1 {
    left: 3%;
  }

  .network-node-2 {
    right: 3%;
  }

  .network-node-3 {
    bottom: 1rem;
  }

  .network-server {
    width: min(82%, 300px);
  }

  .network-cipher-1 {
    left: 23%;
  }

  .network-cipher-2 {
    right: 23%;
  }
}

@media (max-width: 430px) {
  .network-viz-shell {
    min-height: 0;
  }

  .network-viz-topline {
    top: 0;
    right: 0;
    left: 0;
    font-size: 0.5rem;
  }

  .network-node {
    width: 106px;
    padding: 0.6rem;
  }

  .network-node strong {
    font-size: 0.8rem;
  }

  .network-node > span:last-child,
  .network-server > div:nth-child(2) span {
    font-size: 0.5rem;
  }

  .network-server {
    width: 86%;
    gap: 0.5rem;
    padding: 0.7rem;
  }

  .network-server-icon {
    flex-basis: 1.9rem;
    width: 1.9rem;
    height: 1.9rem;
  }

  .network-server strong {
    font-size: 0.7rem;
  }

  .network-server-state {
    font-size: 0.5rem;
  }

  .network-cipher {
    padding: 0.25rem 0.35rem;
    font-size: 0.47rem;
  }

  .network-cipher-1 {
    left: 21%;
  }

  .network-cipher-2 {
    right: 21%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-route-line,
  .network-live i,
  .network-server-state i,
  .network-node-top i,
  .network-cipher {
    animation: none;
  }
}

@media (max-width: 480px) {
  .contact-actions {
    display: grid;
    width: 100%;
  }

  .contact-actions .button-link,
  .mobile-actions .button-link {
    width: 100%;
  }

  .scroll-hint {
    font-size: 0.75rem;
  }
}

/* Narrative clarity pass: keep the packet story readable above the atmospheric 3D layer. */
.narrative {
  padding: clamp(5rem, 9vw, 8rem) 1.5rem clamp(5rem, 10vw, 9rem);
}

.narrative-intro {
  position: relative;
  z-index: 4;
  width: min(100%, 760px);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.narrative-intro .section-kicker {
  color: var(--accent);
  opacity: 0.8;
}

.narrative-title {
  margin-top: 0.9rem;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.narrative-summary {
  max-width: 62ch;
  margin: 1.15rem auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  text-wrap: balance;
}

.device-bridge {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(170px, 220px);
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2.75rem);
  width: min(100%, 1280px);
  min-height: 330px;
  margin: 0 auto clamp(1.75rem, 4vw, 3rem);
}

.device-node {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.device-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(241, 245, 255, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(89, 247, 255, 0.08), 0 0 14px var(--accent);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.device-node-destination .status-dot {
  animation-delay: 1.1s;
}

.device {
  width: clamp(170px, 18vw, 245px);
  filter: drop-shadow(0 20px 50px rgba(2, 12, 24, 0.6));
  animation: device-breathe 4.5s ease-in-out infinite;
}

.device-node-destination .device {
  animation-delay: 1s;
}

.device-label {
  color: rgba(241, 245, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.device-label span {
  color: rgba(241, 245, 255, 0.46);
  font-weight: 400;
}

.device-bridge .bridge-3d {
  inset: 6% 12%;
  z-index: 1;
  pointer-events: none;
}

.bridge-3d.is-ready {
  opacity: 0.98;
}

.device-bridge.is-3d .link-line,
.device-bridge.is-3d .packet,
.device-bridge.is-3d .lock-indicator,
.device-bridge.is-3d .hacker-figure {
  opacity: 1;
  filter: none;
}

.link-line {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-direction {
  position: absolute;
  top: 0.15rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateX(-50%);
  color: rgba(241, 245, 255, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-direction span {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.link-track {
  top: 52%;
  height: 8px;
  background:
    linear-gradient(90deg, rgba(255, 177, 92, 0.2), rgba(255, 177, 92, 0.85) 44%, rgba(89, 247, 255, 0.95) 56%, rgba(89, 247, 255, 0.22));
  box-shadow: 0 0 18px rgba(89, 247, 255, 0.25), 0 0 24px rgba(255, 177, 92, 0.16);
  overflow: visible;
}

.link-track::before {
  border-radius: inherit;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 247, 220, 0.9) 0 14px,
    rgba(255, 247, 220, 0) 14px 28px
  );
  opacity: 0.55;
  animation: data-flow 2.8s linear infinite;
}

.link-track::after {
  left: 50%;
  top: 50%;
  width: 2px;
  height: 72px;
  inset: auto;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px var(--accent);
  opacity: 1;
  animation: gate-beam 8s ease-in-out infinite;
}

.track-zone {
  position: absolute;
  top: calc(52% + 1rem);
  color: rgba(241, 245, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.track-zone-plain {
  left: 2%;
  color: #ffc681;
}

.track-zone-cipher {
  right: 2%;
  color: var(--accent);
}

.bridge-stage-label {
  position: absolute;
  top: 15%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(241, 245, 255, 0.82);
  opacity: 0.35;
  transform: translateY(4px);
  animation: stage-label 8s ease-in-out infinite;
  pointer-events: none;
}

.bridge-stage-plain {
  left: 2%;
  animation-name: stage-label-plain;
}

.bridge-stage-encrypt {
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  animation-name: stage-label-encrypt;
}

.bridge-stage-deliver {
  right: 2%;
  animation-name: stage-label-deliver;
}

.stage-index {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid rgba(89, 247, 255, 0.45);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.58rem;
  letter-spacing: 0;
}

.stage-copy {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.stage-copy strong {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-copy small {
  color: rgba(241, 245, 255, 0.46);
  font-size: 0.62rem;
}

.packet {
  top: 52%;
  z-index: 5;
  min-width: clamp(205px, 22vw, 280px);
  max-width: 320px;
  padding: 0.72rem 0.9rem 0.78rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16, 23, 37, 0.96), rgba(6, 12, 24, 0.93));
  border: 1px solid rgba(89, 247, 255, 0.45);
  box-shadow: 0 12px 28px rgba(2, 8, 18, 0.42), 0 0 22px rgba(89, 247, 255, 0.22);
  transform: translate(-50%, -155%);
  backdrop-filter: blur(12px);
}

.packet-plain {
  border-color: rgba(255, 177, 92, 0.62);
  box-shadow: 0 12px 28px rgba(2, 8, 18, 0.42), 0 0 22px rgba(255, 177, 92, 0.18);
  animation: packet-plain 8s ease-in-out infinite;
}

.packet-cipher {
  animation: packet-cipher 8s ease-in-out infinite;
}

.packet-label {
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  margin-bottom: 0.22rem;
}

.packet-meta {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(241, 245, 255, 0.54);
  font-size: 0.62rem;
}

.packet-body {
  font-size: 0.78rem;
}

.lock-indicator {
  top: 52%;
  z-index: 6;
  gap: 0.15rem;
  transform: translate(-50%, -50%) scale(0.72);
  animation: lock-reveal 8s ease-in-out infinite;
}

.lock-indicator::before {
  content: "";
  position: absolute;
  width: 6.5rem;
  height: 6.5rem;
  border: 1px solid rgba(89, 247, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(89, 247, 255, 0.18), inset 0 0 24px rgba(89, 247, 255, 0.08);
  animation: gate-ring 8s ease-in-out infinite;
}

.lock-indicator img {
  position: relative;
  width: clamp(70px, 7vw, 92px);
}

.lock-label,
.hacker-tag {
  position: relative;
  display: grid;
  gap: 0.15rem;
  min-width: max-content;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: rgba(6, 12, 24, 0.82);
  border: 1px solid rgba(89, 247, 255, 0.22);
  text-align: center;
}

.lock-label strong,
.hacker-tag strong {
  color: #ffffff;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lock-label small,
.hacker-tag small {
  color: rgba(241, 245, 255, 0.56);
  font-size: 0.58rem;
}

.hacker-figure {
  left: 27%;
  top: 72%;
  z-index: 6;
  gap: 0.2rem;
  transform: translate(-50%, -35%) scale(0.78);
  animation: hacker-peek 8s ease-in-out infinite;
}

.hacker-figure::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  width: 3.4rem;
  height: 1px;
  transform: translateX(-50%) rotate(-24deg);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 177, 92, 0.8), transparent);
  box-shadow: 0 0 10px rgba(255, 177, 92, 0.5);
}

.hacker-figure img {
  width: clamp(108px, 11vw, 148px);
}

.hacker-tag {
  border-color: rgba(255, 177, 92, 0.42);
}

.bridge-legend {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.8rem;
  width: min(100%, 900px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  color: rgba(241, 245, 255, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bridge-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-swatch {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px currentColor;
}

.legend-swatch-plain {
  color: #ffb15c;
  background: #ffb15c;
}

.legend-swatch-gate {
  color: #ffffff;
  background: #ffffff;
}

.legend-swatch-cipher {
  color: var(--accent);
  background: var(--accent);
}

@keyframes packet-plain {
  0%,
  8% {
    left: 2%;
    opacity: 0;
    transform: translate(-50%, -155%) scale(0.92);
  }
  16%,
  36% {
    left: 24%;
    opacity: 1;
    transform: translate(-50%, -155%) scale(1);
  }
  42%,
  45% {
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -155%) scale(1.04);
  }
  49%,
  100% {
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -155%) scale(0.9);
  }
}

@keyframes packet-cipher {
  0%,
  53% {
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -155%) scale(0.9);
  }
  59%,
  70% {
    left: 62%;
    opacity: 1;
    transform: translate(-50%, -155%) scale(1);
  }
  94% {
    left: 98%;
    opacity: 1;
    transform: translate(-50%, -155%) scale(1);
  }
  100% {
    left: 98%;
    opacity: 0;
    transform: translate(-50%, -155%) scale(0.9);
  }
}

@keyframes hacker-peek {
  0%,
  12% {
    opacity: 0;
    transform: translate(-50%, -35%) scale(0.76);
  }
  20%,
  38% {
    opacity: 1;
    transform: translate(-50%, -42%) scale(1);
  }
  45%,
  100% {
    opacity: 0;
    transform: translate(-50%, -35%) scale(0.76);
  }
}

@keyframes lock-reveal {
  0%,
  40% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
  46%,
  63% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  71%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

@keyframes stage-label {
  0%,
  100% {
    opacity: 0.28;
  }
}

@keyframes stage-label-plain {
  10%,
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  0%,
  8%,
  48%,
  100% {
    opacity: 0.28;
    transform: translateY(4px);
  }
}

@keyframes stage-label-encrypt {
  38%,
  64% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  0%,
  34%,
  70%,
  100% {
    opacity: 0.28;
    transform: translateX(-50%) translateY(4px);
  }
}

@keyframes stage-label-deliver {
  58%,
  94% {
    opacity: 1;
    transform: translateY(0);
  }
  0%,
  54%,
  100% {
    opacity: 0.28;
    transform: translateY(4px);
  }
}

@keyframes gate-beam {
  0%,
  36%,
  72%,
  100% {
    opacity: 0.28;
    height: 42px;
  }
  45%,
  62% {
    opacity: 1;
    height: 92px;
  }
}

@keyframes gate-ring {
  0%,
  38%,
  70%,
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  45%,
  62% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .narrative {
    padding: 4.5rem 1.25rem 5.5rem;
  }

  .narrative-title {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .narrative-summary {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .device-bridge {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    min-height: 0;
  }

  .device-node {
    gap: 0.45rem;
  }

  .device {
    width: clamp(170px, 54vw, 235px);
  }

  .device-node-source {
    order: 1;
  }

  .link-line {
    order: 2;
    width: min(100%, 320px);
    min-height: 390px;
    margin: 0 auto;
  }

  .device-node-destination {
    order: 3;
  }

  .device-bridge .bridge-3d {
    inset: 0 -8%;
  }

  .flow-direction {
    top: 0.25rem;
  }

  .link-track {
    left: 50%;
    right: auto;
    top: 10%;
    width: 8px;
    height: 80%;
    background: linear-gradient(to bottom, rgba(255, 177, 92, 0.3), rgba(255, 177, 92, 0.9) 42%, rgba(89, 247, 255, 0.95) 58%, rgba(89, 247, 255, 0.24));
    transform: translateX(-50%);
  }

  .link-track::before {
    background: repeating-linear-gradient(
      0deg,
      rgba(255, 247, 220, 0.9) 0 14px,
      rgba(255, 247, 220, 0) 14px 28px
    );
    animation: data-flow-vertical 2.8s linear infinite;
  }

  .link-track::after {
    left: 50%;
    top: 50%;
    width: 72px;
    height: 2px;
    animation: gate-beam-mobile 8s ease-in-out infinite;
  }

  .flow-direction span {
    transform: rotate(90deg);
  }

  .track-zone {
    top: auto;
    left: auto;
    right: auto;
  }

  .track-zone-plain {
    top: 16%;
    right: calc(50% + 1.1rem);
  }

  .track-zone-cipher {
    top: 79%;
    left: calc(50% + 1.1rem);
  }

  .bridge-stage-label {
    display: none;
  }

  .bridge-stage-plain {
    top: 25%;
    right: calc(50% + 1.1rem);
  }

  .bridge-stage-encrypt {
    top: 47%;
    left: calc(50% + 1.1rem);
    transform: translateY(4px);
  }

  .bridge-stage-deliver {
    top: 68%;
    right: calc(50% + 1.1rem);
  }

  .stage-copy small {
    max-width: 12ch;
  }

  .packet {
    left: 50%;
    min-width: min(230px, 74vw);
    max-width: 250px;
    padding: 0.65rem 0.75rem;
    transform: translate(-50%, -50%);
  }

  .packet-body {
    font-size: 0.7rem;
  }

  .packet-plain {
    animation-name: packet-plain-mobile;
  }

  .packet-cipher {
    animation-name: packet-cipher-mobile;
  }

  .lock-indicator {
    top: 52%;
  }

  .hacker-figure {
    left: 18%;
    top: 58%;
    transform: translate(-50%, -35%) scale(0.78);
    animation-name: hacker-peek-mobile;
  }

  .hacker-figure img {
    width: clamp(78px, 22vw, 98px);
  }

  .hacker-tag {
    width: 112px;
    min-width: 0;
  }

  .hacker-tag strong {
    font-size: 0.52rem;
    line-height: 1.25;
  }

  .bridge-legend {
    gap: 0.65rem 1rem;
    font-size: 0.58rem;
    line-height: 1.4;
  }
}

@keyframes data-flow-vertical {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 160px;
  }
}

@keyframes gate-beam-mobile {
  0%,
  36%,
  72%,
  100% {
    opacity: 0.28;
    width: 42px;
  }
  45%,
  62% {
    opacity: 1;
    width: 92px;
  }
}

@keyframes packet-plain-mobile {
  0%,
  8% {
    top: 18%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  16%,
  36% {
    top: 30%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  42%,
  45% {
    top: 45%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
  49%,
  100% {
    top: 45%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@keyframes packet-cipher-mobile {
  0%,
  53% {
    top: 45%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  59%,
  70% {
    top: 66%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  94% {
    top: 82%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    top: 82%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@keyframes hacker-peek-mobile {
  0%,
  12% {
    opacity: 0;
    transform: translate(-50%, -35%) scale(0.76);
  }
  20%,
  38% {
    opacity: 1;
    transform: translate(-50%, -42%) scale(1);
  }
  45%,
  100% {
    opacity: 0;
    transform: translate(-50%, -35%) scale(0.76);
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot,
  .device,
  .link-track::before,
  .link-track::after,
  .packet,
  .bridge-stage-label,
  .lock-indicator,
  .lock-indicator::before,
  .hacker-figure {
    animation: none;
  }

  .packet-plain {
    left: 24%;
    opacity: 1;
    transform: translate(-50%, -155%) scale(1);
  }

  .packet-cipher {
    left: 76%;
    opacity: 1;
    transform: translate(-50%, -155%) scale(1);
  }

  .lock-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .hacker-figure {
    opacity: 0.9;
    transform: translate(-50%, -35%) scale(0.9);
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .packet-plain,
  .packet-cipher {
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }

  .packet-plain {
    top: 30%;
  }

  .packet-cipher {
    top: 70%;
  }
}

/* Final mobile composition: keep hero content in one predictable vertical flow. */
@media (max-width: 768px) {
  html,
  body {
    min-width: 0;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--nav-height) + 2.25rem) 1rem 3rem;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: 24rem;
    gap: 1.35rem;
  }

  .hero-brand {
    width: 100%;
    min-width: 0;
    transform: none !important;
  }

  .logo {
    display: block;
    width: min(100%, 22rem);
    max-width: 100%;
    height: auto;
  }

  .hero-tagline {
    width: min(100%, 21rem);
    font-size: clamp(0.62rem, 2.5vw, 0.78rem);
    letter-spacing: 0.16em;
    line-height: 1.55;
  }

  .hero-features,
  .hero.hero--features-visible .hero-features,
  .hero.hero--scrub .hero-features {
    position: static;
    width: 100%;
    padding: 0;
    align-items: center;
    gap: 0.12rem;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
  }

  .hero-feature,
  .hero.hero--features-visible .hero-feature,
  .hero.hero--scrub .hero-feature {
    font-size: clamp(1.9rem, 9.6vw, 2.7rem);
    line-height: 1.08;
    white-space: nowrap;
    opacity: 1;
    transform: none !important;
  }

  .mobile-menu {
    overflow-y: hidden;
    overscroll-behavior: contain;
  }

  .site-header.is-open .mobile-menu {
    max-height: min(80svh, 38rem);
    overflow-y: auto;
  }

  .mobile-products.is-open .mobile-products-grid {
    max-height: none;
    overflow: visible;
  }

  .lock-indicator {
    top: 40%;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 0 0.5rem;
  }

  .nav-shell,
  .mobile-menu {
    width: calc(100vw - 1rem);
  }

  .nav-shell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand-mark {
    gap: 0.08rem;
  }

  .brand-logo {
    flex-basis: 2.8rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-feature {
    font-size: clamp(1.75rem, 9.2vw, 2.25rem);
  }
}

/* Mobile hero sequence: logo first, then reveal the value words as the page scrolls. */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .network-viz {
    overflow: hidden;
  }

  .narrative {
    overflow: hidden;
  }

  main {
    overflow: visible;
  }

  .hero.hero--mobile-sequence {
    display: block;
    height: 360svh;
    min-height: 360svh;
    padding: 0 1rem;
    overflow: visible;
  }

  .hero.hero--mobile-sequence .hero-bg {
    right: 0;
    left: 0;
  }

  .hero.hero--mobile-sequence .hero-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100svh;
    min-height: 100svh;
    padding: calc(var(--nav-height) + 2.25rem) 0.75rem 2rem;
  }

  .hero.hero--mobile-sequence.hero--mobile-ready .hero-content {
    position: absolute;
    top: calc(100% - 100svh);
    right: 0;
    bottom: auto;
    left: 0;
  }

  .hero.hero--mobile-sequence .hero-3d {
    position: fixed;
    inset: 0;
    height: 100svh;
    z-index: 1;
  }

  .hero.hero--mobile-sequence.hero--mobile-ready .hero-3d {
    opacity: 0;
  }

  .hero.hero--mobile-sequence .hero-brand {
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(calc(100% - 1.5rem), 32rem);
    min-width: 0;
    transform: translate(-50%, calc(-50% - var(--mobile-logo-lift, 0px)))
      scale(var(--mobile-logo-scale, 1)) !important;
    transform-origin: center center;
    transition: none;
  }

  .hero.hero--mobile-sequence .logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hero.hero--mobile-sequence .hero-tagline {
    width: min(100%, 21rem);
    font-size: clamp(0.62rem, 2.5vw, 0.78rem);
    letter-spacing: 0.16em;
    line-height: 1.55;
  }

  .hero.hero--mobile-sequence .hero-features {
    position: absolute;
    top: 55%;
    right: auto;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: calc(100% - 1.5rem);
    padding: 0;
    opacity: 1;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: none;
  }

  .hero.hero--mobile-sequence .hero-feature {
    font-size: clamp(1.8rem, 9.2vw, 2.65rem);
    line-height: 1.04;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(24px);
    transition: none;
  }

  .hero.hero--mobile-sequence .hero-feature:nth-child(1) {
    opacity: var(--mobile-feature-1, 0);
    transform: translateY(var(--mobile-feature-1-shift, 24px));
  }

  .hero.hero--mobile-sequence .hero-feature:nth-child(2) {
    opacity: var(--mobile-feature-2, 0);
    transform: translateY(var(--mobile-feature-2-shift, 24px));
  }

  .hero.hero--mobile-sequence .hero-feature:nth-child(3) {
    opacity: var(--mobile-feature-3, 0);
    transform: translateY(var(--mobile-feature-3-shift, 24px));
  }

}

@media (max-width: 900px) {
  .about-lore-shell {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-lore-intro {
    max-width: 780px;
  }

  .about-origin-card {
    width: min(100%, 680px);
  }

  .about-story-heading,
  .about-next-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-evidence-grid {
    grid-template-columns: 1fr;
  }

  .founder-contact-shell {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .founder-contact-intro {
    max-width: 780px;
  }

  .founder-profile-card {
    width: min(100%, 680px);
  }

  .auth-x-hero {
    grid-template-columns: 1fr;
  }

  .auth-x-hero-copy {
    max-width: 760px;
  }

  .auth-x-hero-visual {
    width: min(100%, 620px);
    min-height: 420px;
    margin: 0 auto;
  }

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

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

  .auth-x-chart-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-lore-hero {
    min-height: auto;
    padding: 7.5rem 1rem 4rem;
  }

  .about-lore-title {
    max-width: 11ch;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .about-lore-lede {
    font-size: 1rem;
  }

  .about-lore-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .about-origin-card {
    min-height: 0;
    padding: 1.2rem;
    border-radius: 26px;
  }

  .about-origin-identity {
    height: 250px;
    margin-top: 2rem;
  }

  .about-origin-orbit {
    width: min(100%, 280px);
    height: 142px;
  }

  .about-origin-logo {
    width: clamp(8.5rem, 42vw, 11rem);
    height: 5.5rem;
  }

  .about-origin-logo-habib,
  .about-origin-logo-aspid {
    --origin-radius: clamp(4.6rem, 18vw, 5.2rem);
  }

  .about-origin-logo-habib img {
    width: 4.8rem;
    height: 4.8rem;
    max-width: 4.8rem;
    max-height: 4.8rem;
  }

  .about-origin-logo-aspid img {
    width: 330%;
  }

  .about-origin-logo-aspid {
    width: 4.8rem;
    height: 4.8rem;
  }

  .about-origin-identity-label {
    bottom: -1.4rem;
    font-size: 0.55rem;
    letter-spacing: 0.11em;
  }

  .about-story-section,
  .about-evidence-section,
  .about-principles-section,
  .about-next-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .about-evidence-card {
    border-radius: 26px;
  }

  .about-evidence-card figcaption {
    padding: 1.2rem;
  }

  .about-story-heading {
    gap: 1.5rem;
  }

  .about-section-title {
    max-width: 13ch;
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .about-section-summary {
    font-size: 1rem;
  }

  .about-story-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1.35rem 0;
  }

  .about-story-label,
  .about-story-copy {
    grid-column: auto;
  }

  .about-story-label {
    padding-top: 0;
  }

  .about-story-copy h3 {
    font-size: 1.25rem;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principle-card {
    min-height: 0;
  }

  .about-principle-card h3 {
    margin-top: 2.8rem;
  }

  .about-next-card {
    gap: 2rem;
    padding: 1.4rem;
    border-radius: 26px;
  }

  .about-next-title {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .founder-contact-hero {
    min-height: auto;
    padding: 7.5rem 1rem 3.5rem;
  }

  .founder-contact-eyebrow {
    gap: 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .founder-contact-title {
    max-width: 12ch;
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .founder-contact-lede {
    font-size: 1rem;
  }

  .founder-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .founder-contact-actions .button-link {
    width: 100%;
  }

  .founder-contact-note {
    font-size: 0.58rem;
    line-height: 1.7;
  }

  .founder-profile-card {
    min-height: 0;
    padding: 1.2rem;
    border-radius: 26px;
  }

  .founder-profile-person {
    grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
    align-items: flex-start;
    margin-top: 3.2rem;
  }

  .founder-avatar {
    max-width: 9rem;
    border-radius: 18px;
  }

  .founder-profile-person h2 {
    font-size: 1.65rem;
  }

  .founder-profile-copy {
    margin-top: 1.7rem;
  }

  .founder-profile-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .auth-x-title {
    max-width: 12ch;
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .auth-x-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-x-actions .button-link {
    justify-content: center;
  }

  .auth-x-hero-visual {
    min-height: 350px;
  }

  .auth-x-signal-flow {
    min-height: 470px;
    padding: 1.1rem;
  }

  .auth-x-signal-endpoints {
    margin-top: 1.85rem;
  }

  .auth-x-signal-participant {
    min-width: 106px;
    padding: 0.25rem 0;
  }

  .auth-x-signal-row {
    grid-template-columns: 1.55rem minmax(7rem, 0.9fr) minmax(0, 1.1fr);
    gap: 0.45rem;
  }

  .auth-x-signal-copy strong {
    font-size: 0.68rem;
  }

  .auth-x-signal-copy small {
    font-size: 0.48rem;
  }

  .auth-x-orbit-stage {
    inset: 5.2rem 0 3.4rem;
  }

  .auth-x-forge-field {
    width: 94%;
    height: 154px;
  }

  .auth-x-forge-source {
    gap: 0.3rem;
    font-size: 0.45rem;
    letter-spacing: 0.12em;
  }

  .auth-x-forge-source::after {
    width: 6.2rem;
  }

  .auth-x-orbit-field {
    width: 88%;
    height: 132px;
  }

  .auth-x-orbit-stage-label {
    font-size: 0.48rem;
  }

  .auth-x-visual-core {
    width: 142px;
    height: 142px;
  }

  .auth-x-visual-core img {
    width: 44px;
    height: 44px;
  }

  .auth-x-visual-node {
    min-width: 96px;
    padding: 0.6rem 0.65rem;
  }

  .auth-x-node-device {
    top: 9%;
    left: 5%;
  }

  .auth-x-node-server {
    right: 5%;
    bottom: 9%;
  }

  .auth-x-visual-status {
    right: 0.85rem;
    bottom: 0.75rem;
    font-size: 0.5rem;
  }

  .auth-x-flow-grid,
  .auth-x-feature-grid,
  .auth-x-stat-grid {
    grid-template-columns: 1fr;
  }

  .auth-x-flow-card,
  .auth-x-feature-card {
    min-height: 0;
  }

  .auth-x-benchmark-heading {
    flex-direction: column;
    gap: 1rem;
  }

  .auth-x-benchmark-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .auth-x-chart-heading {
    flex-direction: column;
    gap: 0.75rem;
  }

  .auth-x-chart-scale {
    align-self: flex-start;
  }

  .auth-x-chart-axis {
    font-size: 0.55rem;
  }

  .auth-x-chart-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .auth-x-range-average strong {
    font-size: 0.58rem;
  }

  .auth-x-product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-x-product-footer .button-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .founder-profile-person {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .founder-avatar {
    width: 9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-origin-logo {
    animation: none;
    transform: translate(-50%, -50%) rotate(var(--origin-angle)) translateX(var(--origin-radius)) rotate(calc(-1 * var(--origin-angle)));
  }

  .auth-x-hero .auth-x-signal-row {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .auth-x-hero .auth-x-signal-line i {
    left: calc(100% - 0.1rem);
    opacity: 0.85;
    animation: none;
  }
}
