:root {
  --ink: #050507;
  --ink-soft: #090a0e;
  --ink-raised: #0e1017;
  --ink-lift: #141722;
  --paper: #f1f2ec;
  --paper-bright: #fafbf7;
  --paper-dim: #d9ddd2;
  --white: #f7f8f4;
  --text-soft: #b8bdc7;
  --muted: #747b88;
  --line: rgba(238, 244, 255, 0.14);
  --line-strong: rgba(238, 244, 255, 0.25);
  --dark-line: rgba(7, 9, 13, 0.15);
  --acid: #c9ff62;
  --cyan: #62e8ff;
  --blue: #4c8dff;
  --violet: #9d77ff;
  --pink: #ff70d2;
  --spectrum: linear-gradient(100deg, var(--acid) 0%, var(--cyan) 38%, var(--violet) 72%, var(--pink) 100%);
  --shadow: 0 38px 120px rgba(0, 0, 0, 0.44);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --frame: min(1380px, calc(100vw - 80px));
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    560px circle at var(--pointer-x) var(--pointer-y),
    rgba(98, 232, 255, 0.045),
    transparent 64%
  );
}

::selection {
  color: #050507;
  background: var(--acid);
}

img,
svg,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

.frame {
  width: var(--frame);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.84rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 700;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--spectrum);
  box-shadow: 0 0 16px rgba(98, 232, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 600;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: rgba(237, 243, 255, 0.11);
  background: rgba(5, 5, 7, 0.76);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 18px rgba(98, 232, 255, 0.14));
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark strong {
  color: var(--cyan);
  font-size: 1.04em;
  font-weight: 900;
}

.brand-labs {
  margin-left: 9px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-signal {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(221, 226, 235, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-signal span,
.contact-status i,
.bento-status i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(201, 255, 98, 0.8);
  animation: signal-pulse 2.6s ease-in-out infinite;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-navigation a {
  position: relative;
  color: rgba(229, 233, 240, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.primary-navigation a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms var(--ease);
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="true"] {
  color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(237, 243, 255, 0.2);
  border-radius: 999px;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease !important;
}

.nav-contact:hover {
  border-color: rgba(201, 255, 98, 0.5);
  background: rgba(201, 255, 98, 0.07);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.menu-button i {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition:
    top 220ms ease,
    transform 220ms ease;
}

.menu-button i:nth-of-type(1) {
  top: 17px;
}

.menu-button i:nth-of-type(2) {
  top: 26px;
}

.menu-button[aria-expanded="true"] i:nth-of-type(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i:nth-of-type(2) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(820px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 47%, rgba(98, 232, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #050507 0%, #06070a 72%, #08090d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.74) 40%, transparent 69%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.36), transparent 23%, transparent 73%, rgba(5, 5, 7, 0.8));
}

.x-field {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.36;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 44%, rgba(0, 0, 0, 0.74));
}

.hero-spectrum {
  position: absolute;
  z-index: -3;
  top: 7%;
  right: -12%;
  width: min(65vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(90px);
  background: conic-gradient(
    from 0deg,
    transparent 0 18%,
    rgba(98, 232, 255, 0.48) 23%,
    transparent 34% 51%,
    rgba(157, 119, 255, 0.44) 60%,
    transparent 72% 86%,
    rgba(201, 255, 98, 0.32) 94%,
    transparent
  );
  animation: spectrum-drift 18s linear infinite;
}

.hero-vector {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: clamp(-230px, -6vw, -70px);
  width: min(64vw, 840px);
  aspect-ratio: 1;
  opacity: 0.26;
  transform: translateY(-50%) rotate(2deg);
  filter: drop-shadow(0 0 42px rgba(98, 232, 255, 0.12));
}

.hero-vector-path {
  fill: none;
  stroke: url(#hero-beam);
  stroke-width: 1.2;
  stroke-dasharray: 7 14;
  vector-effect: non-scaling-stroke;
  animation: dash-flow 18s linear infinite;
}

.hero-vector-path-b {
  animation-direction: reverse;
  animation-duration: 22s;
}

.hero-vector-ring {
  fill: none;
  stroke: rgba(191, 229, 255, 0.22);
  stroke-width: 1;
  stroke-dasharray: 2 13;
  transform-origin: 360px 360px;
  animation: rotate 36s linear infinite;
}

.hero-vector-ring-small {
  stroke: rgba(201, 255, 98, 0.28);
  animation-direction: reverse;
  animation-duration: 24s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 88px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  color: rgba(222, 228, 238, 0.66);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker-index {
  color: var(--acid);
}

.hero-kicker-rule {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 255, 98, 0.75), transparent);
}

.hero-title {
  max-width: 1130px;
  margin: 0;
  font-size: clamp(4.45rem, 8.05vw, 8.7rem);
  font-weight: 580;
  letter-spacing: -0.078em;
  line-height: 0.865;
  text-wrap: balance;
}

.title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.title-spectrum {
  color: transparent;
  background: var(--spectrum);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-shift 8s ease-in-out infinite;
}

.hero-lower {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(320px, 590px) auto;
  align-items: end;
  gap: 58px;
  margin-top: 44px;
}

.hero-lede {
  margin: 0;
  color: rgba(224, 229, 237, 0.74);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.7;
  letter-spacing: -0.012em;
}

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

.button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 760;
  letter-spacing: -0.015em;
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 180ms var(--ease-out);
  will-change: transform;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease-out);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: #080909;
  background: var(--acid);
  box-shadow:
    0 0 0 1px rgba(201, 255, 98, 0.22),
    0 18px 50px rgba(201, 255, 98, 0.12);
}

.button-primary:hover {
  background: #d7ff8a;
  box-shadow:
    0 0 0 1px rgba(201, 255, 98, 0.34),
    0 23px 60px rgba(201, 255, 98, 0.19);
}

.button-outline {
  border-color: rgba(237, 243, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.022);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  border-color: rgba(98, 232, 255, 0.45);
  background: rgba(98, 232, 255, 0.07);
}

.hero-telemetry {
  position: absolute;
  right: 0;
  bottom: 94px;
  display: grid;
  gap: 8px;
  width: 295px;
  padding: 18px 19px;
  border: 1px solid rgba(237, 243, 255, 0.12);
  border-radius: 16px;
  color: rgba(217, 224, 234, 0.56);
  background: rgba(7, 8, 12, 0.44);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.hero-telemetry div {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  padding-block: 5px;
  border-bottom: 1px solid rgba(237, 243, 255, 0.065);
}

.hero-telemetry div:last-child {
  border-bottom: 0;
}

.hero-telemetry span {
  color: var(--cyan);
}

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(217, 224, 234, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(237, 243, 255, 0.16);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: translateX(-100%);
  animation: scan-line 2.4s var(--ease) infinite;
}

.hero-coordinate {
  position: absolute;
  z-index: 2;
  color: rgba(207, 216, 229, 0.25);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.hero-coordinate-a {
  top: 26%;
  right: 22px;
}

.hero-coordinate-b {
  right: 22px;
  bottom: 18%;
}

/* Moving capability rail */
.signal-belt {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgba(4, 5, 7, 0.28);
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-0.65deg);
  transform-origin: center;
}

.signal-track {
  width: max-content;
  display: flex;
  animation: marquee 30s linear infinite;
}

.signal-group {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  padding: 18px 17px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-group i {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Shared sections */
.section-light {
  position: relative;
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.section-dark-alt {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 33%, rgba(157, 119, 255, 0.085), transparent 32rem),
    radial-gradient(circle at 82% 72%, rgba(98, 232, 255, 0.06), transparent 36rem),
    #08090d;
}

.section-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(54px, 8vw, 130px);
}

.section-marker {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-top: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-marker span {
  color: var(--cyan);
}

.section-light .section-marker span {
  color: #2759d6;
}

.section-marker p {
  margin: 0;
  opacity: 0.53;
}

.overline {
  margin-bottom: 22px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-light .overline {
  color: #2745b8;
}

.display-heading {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: clamp(3.25rem, 6.4vw, 7.1rem);
  font-weight: 560;
  letter-spacing: -0.071em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-heading-row {
  align-items: start;
  margin-bottom: 74px;
}

.section-intro-copy {
  max-width: 690px;
  margin: 32px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

/* Company */
.company {
  min-height: 930px;
  padding: 170px 0 150px;
  overflow: hidden;
}

.company::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(7, 9, 13, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 13, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000 82%, transparent);
}

.company-x {
  position: absolute;
  right: -3vw;
  bottom: -0.34em;
  color: transparent;
  background: linear-gradient(145deg, rgba(65, 92, 246, 0.12), rgba(98, 232, 255, 0.2), rgba(255, 112, 210, 0.1));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: min(59vw, 850px);
  font-weight: 720;
  letter-spacing: -0.16em;
  line-height: 0.72;
  user-select: none;
  transform: rotate(-4deg);
}

.company-content {
  position: relative;
  z-index: 1;
}

.company .display-heading {
  max-width: 1090px;
}

.company-copy {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(45px, 8vw, 110px);
  margin-top: 64px;
}

.company-copy p {
  margin-bottom: 20px;
}

.company-lead {
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  font-weight: 530;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.company-copy > div {
  max-width: 580px;
  color: rgba(7, 9, 13, 0.7);
  font-size: 1.02rem;
  line-height: 1.72;
}

.company-principles {
  max-width: 1030px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 66px;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.company-principles span {
  position: relative;
  padding: 18px 20px;
  border-right: 1px solid var(--dark-line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.company-principles span:first-child {
  padding-left: 0;
  text-align: left;
}

.company-principles span:last-child {
  border-right: 0;
  padding-right: 0;
  text-align: right;
}

/* Capabilities */
.capabilities {
  padding: 160px 0 170px;
  overflow: hidden;
}

.capabilities::before {
  content: "";
  position: absolute;
  top: 0;
  right: -360px;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(from 90deg, rgba(98, 232, 255, 0.08), transparent 28%, rgba(157, 119, 255, 0.06), transparent 65%);
  filter: blur(70px);
}

.bento-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 360px 360px 260px;
  gap: 18px;
}

.bento-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-width: 0;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--ink-soft);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 180ms var(--ease-out);
  will-change: transform;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.bento-card:hover {
  border-color: rgba(98, 232, 255, 0.34);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(98, 232, 255, 0.04);
}

.card-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    430px circle at var(--spot-x) var(--spot-y),
    rgba(98, 232, 255, 0.14),
    transparent 56%
  );
  transition: opacity 220ms ease;
}

.bento-card:hover .card-spotlight {
  opacity: 1;
}

.bento-product {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.bento-connected {
  grid-column: 8 / 13;
  grid-row: 1;
}

.bento-intelligence {
  grid-column: 8 / 13;
  grid-row: 2;
}

.bento-strategy {
  grid-column: 1 / 13;
  grid-row: 3;
}

.bento-topline,
.bento-copy,
.product-visual,
.network-visual,
.intelligence-visual,
.strategy-visual {
  position: relative;
  z-index: 2;
  transform: translateZ(22px);
}

.bento-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bento-index,
.bento-status {
  color: rgba(221, 228, 238, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bento-status i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(98, 232, 255, 0.72);
}

.bento-copy {
  position: absolute;
  right: 29px;
  bottom: 30px;
  left: 29px;
}

.bento-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.bento-copy p {
  max-width: 550px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Product card visual */
.product-visual {
  position: absolute;
  inset: 80px 32px 160px;
  perspective: 1000px;
}

.product-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(214, 235, 255, 0.17);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(9, 13, 21, 0.83);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.product-window::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 24px;
  border-bottom: 1px solid rgba(214, 235, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.product-window::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 10px 0 0 rgba(98, 232, 255, 0.58), 20px 0 0 rgba(157, 119, 255, 0.58);
}

.product-window-a {
  top: 11%;
  left: 2%;
  width: 52%;
  height: 58%;
  transform: rotateY(10deg) rotateX(3deg) rotate(-4deg);
  animation: float-a 7s ease-in-out infinite;
}

.product-window-a span {
  position: absolute;
  left: 16px;
  height: 5px;
  border-radius: 999px;
  background: rgba(208, 222, 237, 0.16);
}

.product-window-a span:nth-child(1) {
  top: 45px;
  width: 28%;
}

.product-window-a span:nth-child(2) {
  top: 61px;
  width: 61%;
}

.product-window-a span:nth-child(3) {
  top: 77px;
  width: 47%;
}

.product-window-a i {
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 44%;
  height: 42%;
  border: 1px solid rgba(98, 232, 255, 0.14);
  border-radius: 13px;
  background: radial-gradient(circle at 65% 35%, rgba(98, 232, 255, 0.24), transparent 42%);
}

.product-window-b {
  top: 4%;
  right: 4%;
  width: 43%;
  height: 70%;
  transform: rotateY(-9deg) rotateX(4deg) rotate(4deg);
  animation: float-b 8.4s ease-in-out infinite;
}

.product-window-b span {
  position: absolute;
  left: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(208, 222, 237, 0.16);
}

.product-window-b span:nth-child(1) {
  top: 46px;
  width: 53%;
}

.product-window-b span:nth-child(2) {
  top: 64px;
  width: 34%;
}

.product-window-b i {
  position: absolute;
  right: 15px;
  left: 15px;
  height: 30px;
  border: 1px solid rgba(98, 232, 255, 0.11);
  border-radius: 10px;
  background: rgba(98, 232, 255, 0.035);
}

.product-window-b i:nth-of-type(1) {
  top: 90px;
}

.product-window-b i:nth-of-type(2) {
  top: 130px;
}

.product-window-b i:nth-of-type(3) {
  top: 170px;
}

.product-window-c {
  right: 19%;
  bottom: 4%;
  width: 52%;
  height: 37%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 40px 15px 14px;
  transform: rotateX(-3deg) rotate(-1deg);
  animation: float-c 6.8s ease-in-out infinite;
}

.product-window-c i {
  border: 1px solid rgba(201, 255, 98, 0.13);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(201, 255, 98, 0.07), transparent);
}

.product-scan {
  position: absolute;
  top: 3%;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: 0.55;
  background: linear-gradient(transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px rgba(98, 232, 255, 0.42);
  animation: product-scan 6s var(--ease) infinite;
}

/* Connected visual */
.network-visual {
  position: absolute;
  inset: 69px 20px 112px;
  display: grid;
  place-items: center;
}

.network-visual svg {
  width: 100%;
  overflow: visible;
}

.network-visual path {
  fill: none;
  stroke: rgba(98, 232, 255, 0.26);
  stroke-width: 1.4;
  stroke-dasharray: 7 12;
  animation: dash-flow 12s linear infinite;
}

.network-visual .network-line-b {
  stroke: rgba(157, 119, 255, 0.24);
  animation-direction: reverse;
  animation-duration: 15s;
}

.network-visual circle {
  fill: #090b10;
  stroke: var(--cyan);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 8px rgba(98, 232, 255, 0.52));
  animation: node-breathe 3.2s ease-in-out infinite;
}

.network-visual circle:nth-of-type(even) {
  stroke: var(--violet);
  animation-delay: -1.1s;
}

.network-visual .network-core {
  fill: rgba(201, 255, 98, 0.13);
  stroke: var(--acid);
}

/* Intelligence visual */
.intelligence-visual {
  position: absolute;
  inset: 70px 22px 112px;
  overflow: hidden;
  border-radius: 18px;
}

.intelligence-visual::before,
.intelligence-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 160%;
  background: linear-gradient(transparent, rgba(98, 232, 255, 0.2), transparent);
}

.intelligence-visual::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.intelligence-visual::before {
  transform: translate(-50%, -50%);
}

.wave {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(98, 232, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: wave-expand 4.8s ease-out infinite;
}

.wave-a {
  width: 76px;
  height: 76px;
}

.wave-b {
  width: 76px;
  height: 76px;
  border-color: rgba(157, 119, 255, 0.2);
  animation-delay: -1.6s;
}

.wave-c {
  width: 76px;
  height: 76px;
  border-color: rgba(201, 255, 98, 0.2);
  animation-delay: -3.2s;
}

.intel-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 255, 98, 0.5);
  border-radius: 16px;
  background: rgba(8, 11, 16, 0.92);
  box-shadow: 0 0 40px rgba(98, 232, 255, 0.1);
  transform: translate(-50%, -50%) rotate(45deg);
}

.intel-core span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(201, 255, 98, 0.9);
}

.intel-label {
  position: absolute;
  color: rgba(220, 227, 236, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
}

.intel-label-a {
  top: 10%;
  left: 8%;
}

.intel-label-b {
  top: 20%;
  right: 7%;
}

.intel-label-c {
  right: 13%;
  bottom: 11%;
}

/* Strategy card */
.strategy-visual {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 43px auto 0;
}

.strategy-visual div {
  min-width: 142px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(237, 243, 255, 0.12);
  border-radius: 13px;
  color: rgba(231, 235, 243, 0.78);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.79rem;
}

.strategy-visual div span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.57rem;
}

.strategy-visual > i {
  position: relative;
  width: clamp(16px, 3.2vw, 48px);
  height: 1px;
  overflow: hidden;
  background: rgba(237, 243, 255, 0.14);
}

.strategy-visual > i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateX(-100%);
  animation: scan-line 3.2s var(--ease) infinite;
}

.strategy-visual > i:nth-of-type(2)::after {
  animation-delay: -1.05s;
}

.strategy-visual > i:nth-of-type(3)::after {
  animation-delay: -2.1s;
}

.bento-copy-horizontal {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(340px, 1.2fr);
  align-items: end;
  gap: 60px;
}

.bento-copy-horizontal h3,
.bento-copy-horizontal p {
  margin-bottom: 0;
}

/* Approach */
.approach {
  padding: 168px 0 110px;
  border-top: 1px solid var(--line);
  overflow: clip;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.035) 50%, transparent calc(50% + 0.5px));
  background-size: 25% 100%;
}

.approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(65px, 9vw, 150px);
  align-items: start;
}

.approach-intro {
  position: sticky;
  top: calc(var(--header-height) + 54px);
  min-height: 610px;
  padding-bottom: 70px;
}

.approach-intro .section-marker {
  margin-bottom: 72px;
}

.approach-intro .display-heading {
  max-width: 640px;
  font-size: clamp(3.6rem, 6.4vw, 6.7rem);
}

.approach-summary {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.72;
}

.approach-meter {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 25px;
}

.approach-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(219, 226, 236, 0.43);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.approach-count span:first-child {
  color: var(--acid);
  font-size: 1.05rem;
}

.approach-count i {
  font-style: normal;
}

.approach-track {
  height: 2px;
  overflow: hidden;
  background: rgba(237, 243, 255, 0.12);
}

.approach-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--spectrum);
  transform: scaleX(0.25);
  transform-origin: left center;
  transition: transform 560ms var(--ease-out);
}

.approach-steps {
  border-top: 1px solid var(--line);
}

.approach-step {
  min-height: 520px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-content: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0.36;
  transform: translateX(22px);
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease);
}

.approach-step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.step-number {
  padding-top: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.step-label {
  margin-bottom: 23px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-step h3 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4.15vw, 4.55rem);
  font-weight: 560;
  letter-spacing: -0.063em;
  line-height: 1;
  text-wrap: balance;
}

.approach-step p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

/* Standards */
.standards {
  padding: 160px 0 170px;
  overflow: hidden;
}

.standards::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -170px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(82, 91, 250, 0.13), transparent 68%);
}

.standards-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}

.standards-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dark-line);
}

.standard-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.65fr) minmax(330px, 1fr) 44px;
  align-items: center;
  gap: 30px;
  min-height: 142px;
  padding: 25px 5px;
  overflow: hidden;
  border-bottom: 1px solid var(--dark-line);
  isolation: isolate;
  transition:
    color 300ms ease,
    padding 300ms var(--ease-out);
}

.standard-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateY(102%);
  transition: transform 420ms var(--ease-out);
}

.standard-row::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -180%;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  opacity: 0;
  background: conic-gradient(from 45deg, rgba(201, 255, 98, 0.17), rgba(98, 232, 255, 0.12), rgba(157, 119, 255, 0.14), transparent 70%);
  filter: blur(35px);
  transition: opacity 420ms ease;
}

.standard-row:hover {
  padding-inline: 25px;
  color: var(--white);
}

.standard-row:hover::before {
  transform: translateY(0);
}

.standard-row:hover::after {
  opacity: 1;
}

.standard-index {
  color: rgba(7, 9, 13, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
}

.standard-row:hover .standard-index {
  color: var(--cyan);
}

.standard-row h3 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 5rem);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 1;
}

.standard-row p {
  margin: 0;
  color: rgba(7, 9, 13, 0.62);
  font-size: 1rem;
}

.standard-row:hover p {
  color: rgba(232, 236, 243, 0.7);
}

.standard-arrow {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: transform 300ms var(--ease-out);
}

.standard-row:hover .standard-arrow {
  color: var(--acid);
  transform: rotate(45deg);
}

/* Contact */
.contact {
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, #000 10%, transparent 72%);
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  mix-blend-mode: screen;
}

.contact-orb-a {
  top: -250px;
  left: -180px;
  width: 650px;
  height: 650px;
  opacity: 0.16;
  background: var(--violet);
  animation: orb-float 14s ease-in-out infinite;
}

.contact-orb-b {
  right: -200px;
  bottom: -290px;
  width: 720px;
  height: 720px;
  opacity: 0.14;
  background: var(--cyan);
  animation: orb-float 17s ease-in-out infinite reverse;
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding: 125px 0;
}

.contact-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: rgba(220, 226, 236, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-heading {
  max-width: 1160px;
  margin: 0 0 32px;
  font-size: clamp(4rem, 8.4vw, 9rem);
  font-weight: 540;
  letter-spacing: -0.078em;
  line-height: 0.87;
  text-wrap: balance;
}

.contact-copy {
  max-width: 620px;
  margin: 0 0 48px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.contact-link {
  --magnet-x: 0px;
  --magnet-y: 0px;
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px 18px 32px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 2.35rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition:
    border-color 250ms ease,
    background 250ms ease,
    transform 180ms var(--ease-out);
}

.contact-link:hover {
  border-color: rgba(201, 255, 98, 0.45);
  background: linear-gradient(90deg, rgba(201, 255, 98, 0.055), rgba(98, 232, 255, 0.035), transparent);
}

.contact-link i {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  transition: transform 320ms var(--ease-out);
}

.contact-link:hover i {
  transform: rotate(-45deg) scale(1.06);
}

.contact-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #040405;
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(219, 225, 235, 0.4);
  font-size: 0.78rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(219, 225, 235, 0.4);
  font-size: 0.72rem;
}

.footer-meta a {
  color: rgba(232, 236, 244, 0.72);
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--acid);
}

/* Reveal system */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 860ms var(--ease-out),
    transform 860ms var(--ease-out);
}

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

.title-line.reveal {
  clip-path: inset(0 0 105% 0);
  opacity: 1;
  transform: translateY(0);
  transition: clip-path 920ms var(--ease-out);
}

.title-line.reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

.reveal-delay-3 {
  transition-delay: 280ms;
}

.reveal-delay-4 {
  transition-delay: 370ms;
}

/* Legal and 404 pages */
.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 80% 12%, rgba(98, 232, 255, 0.08), transparent 30rem),
    var(--ink);
}

.simple-page main {
  flex: 1;
}

.simple-header {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(20px);
}

.legal-hero {
  padding: calc(var(--header-height) + 110px) 0 66px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .overline {
  margin-bottom: 24px;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.legal-hero > .frame > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 58px;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.82rem;
  font-weight: 680;
}

.back-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.back-link:hover {
  color: var(--white);
}

.back-link:hover svg {
  transform: translateX(-4px);
}

.legal-content {
  max-width: 900px;
  padding: 78px 0 130px;
}

.legal-content section {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 48px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:first-child {
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content p {
  margin: 0;
}

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

.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(98, 232, 255, 0.35);
  text-underline-offset: 4px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(98, 232, 255, 0.08), transparent 32rem),
    var(--ink);
}

.error-panel {
  position: relative;
  width: min(760px, calc(100vw - 40px));
  padding: 80px 42px;
  text-align: center;
}

.error-code {
  margin: 0;
  color: transparent;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(8rem, 26vw, 18rem);
  font-weight: 650;
  letter-spacing: -0.12em;
  line-height: 0.72;
}

.error-panel h1 {
  margin: 42px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 1;
}

.error-panel > p:not(.error-code) {
  max-width: 540px;
  margin: 0 auto 35px;
  color: var(--text-soft);
}

/* Animations */
@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes spectrum-drift {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -190;
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes scan-line {
  0% {
    transform: translateX(-100%);
  }
  45%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float-a {
  0%,
  100% {
    transform: rotateY(10deg) rotateX(3deg) rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotateY(10deg) rotateX(3deg) rotate(-4deg) translateY(-12px);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: rotateY(-9deg) rotateX(4deg) rotate(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-9deg) rotateX(4deg) rotate(4deg) translateY(10px);
  }
}

@keyframes float-c {
  0%,
  100% {
    transform: rotateX(-3deg) rotate(-1deg) translateY(0);
  }
  50% {
    transform: rotateX(-3deg) rotate(-1deg) translateY(-8px);
  }
}

@keyframes product-scan {
  0%,
  100% {
    left: 8%;
    opacity: 0;
  }
  12% {
    opacity: 0.55;
  }
  55% {
    left: 92%;
    opacity: 0.55;
  }
  70% {
    opacity: 0;
  }
}

@keyframes node-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes wave-expand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
  }
  15% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(70px, 35px, 0) scale(1.12);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --frame: min(100% - 48px, 1080px);
  }

  .header-signal {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .primary-navigation {
    justify-self: end;
  }

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

  .hero-telemetry {
    width: 260px;
  }

  .section-grid {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 60px;
  }

  .bento-grid {
    grid-template-rows: 330px 330px 280px;
  }

  .strategy-visual div {
    min-width: 115px;
  }

  .approach-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(430px, 1.28fr);
    gap: 65px;
  }

  .standard-row {
    grid-template-columns: 64px minmax(210px, 0.6fr) minmax(280px, 1fr) 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .hero {
    min-height: 900px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.28), rgba(5, 5, 7, 0.76) 56%, rgba(5, 5, 7, 0.94)),
      linear-gradient(90deg, rgba(5, 5, 7, 0.92), transparent 74%);
  }

  .hero-vector {
    top: 42%;
    right: -220px;
    width: 780px;
    opacity: 0.19;
  }

  .hero-spectrum {
    top: 4%;
    right: -38%;
    width: 100vw;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 80px);
  }

  .hero-title {
    font-size: clamp(4.05rem, 12.5vw, 6.9rem);
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 690px;
  }

  .hero-telemetry {
    display: none;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-marker {
    padding-bottom: 16px;
    border-bottom: 1px solid currentColor;
    opacity: 0.55;
  }

  .company {
    min-height: auto;
    padding: 130px 0 120px;
  }

  .company-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-copy > div {
    max-width: 720px;
  }

  .company-x {
    right: -12vw;
    font-size: 82vw;
    opacity: 0.6;
  }

  .capabilities {
    padding: 125px 0 130px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 650px 380px 380px 340px;
  }

  .bento-product,
  .bento-connected,
  .bento-intelligence,
  .bento-strategy {
    grid-column: 1;
  }

  .bento-product {
    grid-row: 1;
  }

  .bento-connected {
    grid-row: 2;
  }

  .bento-intelligence {
    grid-row: 3;
  }

  .bento-strategy {
    grid-row: 4;
  }

  .product-visual {
    inset: 78px 34px 150px;
  }

  .strategy-visual {
    flex-wrap: wrap;
    height: auto;
    gap: 9px;
    margin-top: 38px;
  }

  .strategy-visual > i {
    width: 20px;
  }

  .bento-copy-horizontal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .approach {
    padding-top: 125px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .approach-intro {
    position: relative;
    top: auto;
    min-height: auto;
    padding-bottom: 85px;
  }

  .approach-intro .section-marker {
    margin-bottom: 48px;
  }

  .approach-meter {
    max-width: 700px;
  }

  .approach-step {
    min-height: 440px;
  }

  .standards {
    padding: 125px 0 130px;
  }

  .standard-row {
    grid-template-columns: 52px 1fr 38px;
    gap: 20px;
    min-height: 160px;
  }

  .standard-row p {
    grid-column: 2 / 4;
    padding-bottom: 7px;
  }

  .standard-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .contact {
    min-height: 690px;
  }

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --frame: calc(100vw - 32px);
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-wordmark {
    font-size: 0.86rem;
  }

  .brand-labs {
    margin-left: 7px;
    font-size: 0.58rem;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .menu-button {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 7, 0.97);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-120%);
    transition:
      transform 280ms var(--ease-out),
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 16px 11px;
    border-bottom: 1px solid rgba(237, 243, 255, 0.08);
    font-size: 0.98rem;
  }

  .primary-navigation a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    margin-top: 10px;
    justify-content: center;
    border: 1px solid rgba(237, 243, 255, 0.17) !important;
  }

  .hero {
    min-height: 850px;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 76px);
    padding-bottom: 100px;
  }

  .hero-kicker {
    margin-bottom: 26px;
    font-size: 0.59rem;
  }

  .hero-kicker-rule {
    width: 28px;
  }

  .hero-title {
    font-size: clamp(3.55rem, 17.2vw, 5.6rem);
    line-height: 0.89;
    letter-spacing: -0.075em;
  }

  .hero-lower {
    margin-top: 35px;
  }

  .hero-lede {
    max-width: 520px;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 auto;
  }

  .scroll-cue {
    bottom: 38px;
  }

  .hero-coordinate {
    display: none;
  }

  .hero-vector {
    top: 49%;
    right: -330px;
    width: 760px;
    opacity: 0.14;
  }

  .hero-grid {
    background-size: 52px 52px;
  }

  .signal-group {
    gap: 25px;
    padding-block: 15px;
    font-size: 0.62rem;
  }

  .display-heading {
    font-size: clamp(2.85rem, 13.5vw, 5rem);
  }

  .company {
    padding: 105px 0 95px;
  }

  .company-copy {
    margin-top: 42px;
  }

  .company-lead {
    font-size: 1.28rem;
  }

  .company-copy > div {
    font-size: 0.96rem;
  }

  .company-principles {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .company-principles span {
    border-bottom: 1px solid var(--dark-line);
  }

  .company-principles span:nth-child(2) {
    border-right: 0;
    text-align: right;
  }

  .company-principles span:nth-child(3) {
    border-bottom: 0;
    padding-left: 0;
    text-align: left;
  }

  .company-principles span:nth-child(4) {
    border-bottom: 0;
  }

  .capabilities {
    padding: 105px 0 105px;
  }

  .section-heading-row {
    margin-bottom: 52px;
  }

  .section-intro-copy {
    margin-top: 25px;
    font-size: 0.97rem;
  }

  .bento-grid {
    grid-template-rows: 560px 360px 360px 410px;
    gap: 13px;
  }

  .bento-card {
    padding: 22px;
    border-radius: 22px;
  }

  .bento-copy {
    right: 22px;
    bottom: 23px;
    left: 22px;
  }

  .bento-copy h3 {
    font-size: 1.8rem;
  }

  .bento-copy p {
    font-size: 0.88rem;
  }

  .product-visual {
    inset: 70px 13px 160px;
    transform: scale(0.92);
  }

  .product-window-a {
    left: 0;
    width: 57%;
  }

  .product-window-b {
    right: 0;
    width: 46%;
  }

  .product-window-c {
    right: 10%;
    width: 65%;
  }

  .network-visual,
  .intelligence-visual {
    inset: 65px 10px 122px;
  }

  .strategy-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 35px;
  }

  .strategy-visual div {
    min-width: 0;
    justify-content: flex-start;
  }

  .strategy-visual > i {
    display: none;
  }

  .approach {
    padding: 105px 0 70px;
  }

  .approach-intro {
    padding-bottom: 80px;
  }

  .approach-intro .display-heading {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .approach-step {
    min-height: 400px;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 55px 0;
  }

  .approach-step h3 {
    font-size: clamp(2rem, 9.8vw, 3.6rem);
  }

  .approach-step p:last-child {
    font-size: 0.94rem;
  }

  .standards {
    padding: 105px 0 105px;
  }

  .standards-heading {
    margin-bottom: 55px;
  }

  .standard-row {
    grid-template-columns: 38px 1fr 32px;
    gap: 14px;
    min-height: 145px;
  }

  .standard-row:hover {
    padding-inline: 8px;
  }

  .standard-row h3 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .standard-row p {
    font-size: 0.9rem;
  }

  .contact {
    min-height: 670px;
  }

  .contact-inner {
    padding: 95px 0;
  }

  .contact-topline {
    align-items: flex-start;
    gap: 20px;
  }

  .contact-heading {
    font-size: clamp(3.6rem, 16.5vw, 6rem);
  }

  .contact-link {
    min-height: 86px;
    padding: 16px 15px 16px 18px;
    font-size: clamp(0.94rem, 4.8vw, 1.45rem);
  }

  .contact-link i {
    width: 48px;
    height: 48px;
  }

  .footer-inner {
    min-height: 170px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding-block: 36px;
  }

  .footer-meta {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .legal-hero {
    padding-top: calc(var(--header-height) + 75px);
  }

  .back-link {
    margin-bottom: 43px;
  }

  .legal-content {
    padding-top: 55px;
  }

  .legal-content section {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 3.35rem;
  }

  .button {
    width: 100%;
  }

  .company-principles span {
    padding-inline: 10px;
    font-size: 0.61rem;
  }

  .bento-grid {
    grid-template-rows: 540px 350px 350px 430px;
  }

  .contact-link {
    font-size: 0.86rem;
  }
}

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

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

  .signal-track {
    transform: none !important;
  }

  .reveal,
  .title-line.reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .approach-step {
    opacity: 1;
    transform: none;
  }
}

/* Founder feature — extends the approved Company/About section without changing its core design. */
.founder-panel {
  position: relative;
  z-index: 2;
  max-width: 1030px;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: stretch;
  margin-top: 72px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 16%, rgba(98, 232, 255, 0.15), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(157, 119, 255, 0.13), transparent 38%),
    #090a0f;
  border: 1px solid rgba(7, 9, 13, 0.16);
  box-shadow: 0 34px 90px rgba(20, 25, 52, 0.16);
}

.founder-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.founder-identity,
.founder-content {
  position: relative;
  z-index: 1;
}

.founder-identity {
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(202, 255, 98, 0.055), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.founder-monogram {
  position: relative;
  z-index: 2;
  font-size: clamp(4.2rem, 7vw, 6.9rem);
  font-weight: 620;
  letter-spacing: -0.105em;
  line-height: 1;
  color: transparent;
  background: linear-gradient(120deg, var(--acid), var(--cyan) 46%, #b18bff 82%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateX(-0.05em);
}

.founder-orbit,
.founder-signal {
  position: absolute;
  pointer-events: none;
}

.founder-orbit {
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(98, 232, 255, 0.24);
  border-radius: 50%;
  animation: founder-orbit 15s linear infinite;
}

.founder-orbit-a {
  transform: rotate(24deg) scaleY(0.5);
}

.founder-orbit-b {
  border-color: rgba(202, 255, 98, 0.2);
  transform: rotate(-31deg) scaleY(0.68);
  animation-direction: reverse;
  animation-duration: 19s;
}

.founder-signal {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(98, 232, 255, 0.82);
}

.founder-signal-a {
  top: 24%;
  right: 23%;
}

.founder-signal-b {
  bottom: 22%;
  left: 24%;
  background: var(--acid);
  box-shadow: 0 0 20px rgba(202, 255, 98, 0.72);
}

.founder-content {
  align-self: center;
  max-width: 690px;
}

.founder-label {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-content h3 {
  max-width: 710px;
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 540;
  letter-spacing: -0.058em;
  line-height: 1;
  text-wrap: balance;
}

.founder-content > p:not(.founder-label) {
  max-width: 660px;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.99rem;
  line-height: 1.74;
}

.founder-link {
  --magnet-x: 0px;
  --magnet-y: 0px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 19px;
  padding-bottom: 7px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  font-weight: 710;
  letter-spacing: 0.025em;
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.founder-link:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.founder-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

@keyframes founder-orbit {
  to {
    rotate: 360deg;
  }
}

@media (max-width: 900px) {
  .founder-panel {
    grid-template-columns: 1fr;
  }

  .founder-identity {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .founder-panel {
    margin-top: 52px;
    padding: 18px;
    gap: 30px;
  }

  .founder-identity {
    min-height: 205px;
  }

  .founder-orbit {
    width: 145px;
  }

  .founder-content h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-orbit {
    animation: none;
  }
}
