/* Local Inference Lab: public landing page */

:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-deep: #020203;
  --surface: #0a0a0d;
  --surface-raised: #101014;
  --ink: #f7f7fa;
  --ink-soft: #cbcbd3;
  --muted: #8f8f9b;
  --faint: #7a7a86;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --violet: #7928ff;
  --blue: #3f6fff;
  --cyan: #18c8e9;
  --gradient: linear-gradient(110deg, var(--violet) 3%, var(--blue) 51%, var(--cyan) 98%);
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1240px;
  --header-height: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(39, 82, 255, 0.08), transparent 27rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(97, 80, 255, 0.48);
  color: #fff;
}

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

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: #fff;
  color: #050506;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.page-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.018;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(62, 104, 255, 0.065), transparent 68%);
  transform: translate3d(calc(var(--pointer-x, -600px) - 50%), calc(var(--pointer-y, -600px) - 50%), 0);
  transition: opacity 400ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-color: var(--line);
  background: rgba(5, 5, 6, 0.79);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: flex;
  width: min(1440px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-socials {
  display: flex;
  margin-left: -10px;
  padding-left: 22px;
  align-items: center;
  gap: 7px;
  border-left: 1px solid var(--line);
}

.site-nav .nav-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms var(--ease-out);
}

.site-nav .nav-icon::after {
  display: none;
}

.site-nav .nav-icon:hover,
.site-nav .nav-icon:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nav-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.nav-icon-hf img {
  width: 19px;
  height: auto;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 240ms var(--ease-out);
}

.nav-toggle span:first-child {
  transform: translateY(-3px);
}

.nav-toggle span:last-child {
  transform: translateY(3px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

/* Shared typography and controls */

.section {
  position: relative;
  padding-block: 152px;
}

.eyebrow {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span:not(.status-dot):not(.hero-eyebrow-text) {
  color: var(--faint);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(24, 200, 233, 0.09), 0 0 18px rgba(24, 200, 233, 0.75);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.gradient-text {
  display: inline-block;
  padding-right: 0.08em;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 220ms var(--ease-out);
}

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

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  background: #f4f4f8;
  box-shadow: 0 10px 38px rgba(71, 84, 255, 0.15);
  color: #09090b;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 44px rgba(71, 84, 255, 0.25);
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-soft);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.text-link {
  display: inline-flex;
  padding-bottom: 8px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--cyan);
}

/* Hero */

.hero {
  display: flex;
  position: relative;
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 72px) 0 92px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 42%;
  bottom: 0;
  width: 1px;
  content: "";
  background: linear-gradient(transparent 5%, var(--line) 35%, var(--line) 70%, transparent 95%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 12%;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line) 23%, var(--line) 78%, transparent);
}

.hero-aurora {
  position: absolute;
  z-index: -3;
  top: 2%;
  right: -11%;
  width: min(63vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.28;
  background:
    radial-gradient(circle at 46% 47%, rgba(5, 5, 6, 0) 0 26%, rgba(44, 52, 255, 0.22) 38%, transparent 65%),
    conic-gradient(from 160deg, transparent 0 42%, rgba(120, 35, 255, 0.2) 49%, rgba(24, 200, 233, 0.14) 64%, transparent 72%);
  filter: blur(40px);
  animation: auroraDrift 12s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.hero-eyebrow {
  margin-bottom: 34px;
}

.hero-eyebrow-text > span[aria-hidden="true"] {
  color: var(--faint);
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 34px;
  font-size: clamp(4.5rem, 8.1vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 37px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  letter-spacing: -0.018em;
  line-height: 1.65;
}

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

.hero-disciplines {
  display: flex;
  margin-top: 46px;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-disciplines span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.hero-disciplines span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--faint);
}

.hero-visual {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.signal-stage {
  position: relative;
  width: min(42vw, 550px);
  min-width: 430px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(17, 18, 25, 0.96) 0 38%, rgba(8, 8, 11, 0.92) 64%, rgba(5, 5, 6, 0.4) 74%),
    #08080a;
  box-shadow:
    inset 0 0 80px rgba(82, 44, 255, 0.04),
    0 0 0 18px rgba(255, 255, 255, 0.008),
    0 40px 100px rgba(0, 0, 0, 0.52);
}

.signal-stage::before,
.signal-stage::after {
  position: absolute;
  z-index: 3;
  content: "";
  pointer-events: none;
}

.signal-stage::before {
  inset: 10.5%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.signal-stage::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 11%, var(--line) 12%, transparent 12.5% 87.5%, var(--line) 88%, transparent 89%);
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-position: center;
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, #000 0 55%, transparent 73%);
}

.stage-scan {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 17%;
  left: 17%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(27, 204, 238, 0.72), transparent);
  box-shadow: 0 0 18px rgba(27, 204, 238, 0.45);
  animation: scan 5.8s ease-in-out 1.4s infinite;
}

.orbit {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
}

.orbit-outer {
  inset: 5.5%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  animation: spin 38s linear infinite;
}

.orbit-outer::before,
.orbit-outer::after,
.orbit-inner::before {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.orbit-outer::before {
  top: 7%;
  left: 18%;
  width: 6px;
  height: 6px;
  background: var(--violet);
  box-shadow: 0 0 15px var(--violet);
}

.orbit-outer::after {
  right: 7%;
  bottom: 25%;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.orbit-inner {
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: spinReverse 28s linear infinite;
}

.orbit-inner::before {
  top: -3px;
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.signal-tick {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.5);
}

.tick-top,
.tick-bottom {
  left: calc(50% - 8px);
  width: 16px;
  height: 1px;
}

.tick-top {
  top: 5.4%;
}

.tick-bottom {
  bottom: 5.4%;
}

.tick-left,
.tick-right {
  top: calc(50% - 8px);
  width: 1px;
  height: 16px;
}

.tick-left {
  left: 5.4%;
}

.tick-right {
  right: 5.4%;
}

.logo-halo {
  position: absolute;
  z-index: 1;
  inset: 19%;
  border-radius: 50%;
  background: conic-gradient(from 30deg, rgba(24, 200, 233, 0.28), transparent 28%, rgba(121, 40, 255, 0.3) 62%, transparent 88%);
  filter: blur(22px);
  animation: haloPulse 5s ease-in-out infinite alternate;
}

.logo-core {
  position: absolute;
  z-index: 5;
  inset: 24%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: #020203;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.015),
    0 24px 60px rgba(0, 0, 0, 0.7);
}

.logo-core img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.025);
}

.stage-label {
  position: absolute;
  z-index: 6;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.stage-label span {
  display: block;
  margin-bottom: 2px;
  color: var(--faint);
  font-size: 8px;
}

.stage-label-top {
  top: 18%;
  left: 11%;
}

.stage-label-right {
  right: 10%;
  bottom: 21%;
  text-align: right;
}

.stage-index {
  position: absolute;
  z-index: 6;
  bottom: 6.5%;
  left: 50%;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.scroll-cue {
  display: flex;
  position: absolute;
  bottom: 29px;
  left: 24px;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom left;
  transition: color 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--ink);
}

.scroll-cue svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  animation: nudge 1.8s ease-in-out infinite;
}

/* Principle rail */

.capability-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.rail-inner {
  display: grid;
  min-height: 80px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.rail-inner > span {
  display: flex;
  height: 100%;
  padding-inline: 28px;
  align-items: center;
  gap: 16px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rail-inner > span:last-child {
  border-right: 1px solid var(--line);
}

.rail-inner i {
  color: var(--faint);
  font-style: normal;
}

/* Mission */

.mission {
  background:
    radial-gradient(circle at 1% 53%, rgba(121, 40, 255, 0.055), transparent 29rem),
    var(--bg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.mission-heading {
  margin-bottom: 100px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-intro {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.7;
}

.principles {
  border-top: 1px solid var(--line-strong);
}

.principle {
  display: grid;
  min-height: 174px;
  padding-block: 38px;
  grid-template-columns: 90px minmax(210px, 0.75fr) minmax(280px, 1.25fr);
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.principle-number {
  padding-top: 5px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.principle h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.principle p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Focus */

.focus {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 100%, rgba(63, 111, 255, 0.08), transparent 40rem),
    #070708;
  background-size: 64px 64px, 64px 64px, auto, auto;
  isolation: isolate;
}

.focus-glow {
  position: absolute;
  z-index: -1;
  top: -34%;
  left: 36%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  opacity: 0.12;
  background: conic-gradient(from 110deg, var(--violet), var(--blue), var(--cyan), transparent 72%);
  filter: blur(110px);
}

.focus-heading {
  margin-bottom: 84px;
}

.focus-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.focus-platform {
  display: flex;
  position: relative;
  min-height: 400px;
  padding: 34px 36px 32px;
  flex-direction: column;
  overflow: hidden;
  transition: background-color 220ms ease;
}

.focus-platform + .focus-platform {
  border-left: 1px solid var(--line);
}

.focus-platform::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.focus-platform:hover {
  background: rgba(255, 255, 255, 0.018);
}

.focus-platform:hover::before {
  transform: scaleX(1);
}

.focus-platform-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.focus-platform-meta span:last-child {
  color: var(--ink-soft);
}

.focus-architecture {
  margin: 66px 0 22px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(3.7rem, 5.4vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
  opacity: 0.78;
}

.focus-platform h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.focus-platform > p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.focus-platform-footer {
  display: flex;
  margin-top: auto;
  padding-top: 25px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.focus-platform-footer i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
}

.focus-platform:nth-child(2) .focus-platform-footer i {
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.focus-platform:nth-child(3) .focus-platform-footer i {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* b12x */

.project {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    var(--bg-deep);
  background-size: 48px 48px;
  isolation: isolate;
}

.project-glow {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: -10%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  opacity: 0.16;
  background: conic-gradient(from 180deg, transparent, var(--violet), var(--blue), var(--cyan), transparent 76%);
  filter: blur(120px);
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.project-copy h2 {
  max-width: 540px;
  margin: 0 0 28px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.project-copy > p:not(.eyebrow) {
  max-width: 555px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.project-wordmark {
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.project-wordmark span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.project-tags {
  display: flex;
  margin-bottom: 39px;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kernel-panel {
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(9, 9, 13, 0.91);
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.panel-header,
.panel-footer {
  display: flex;
  min-height: 56px;
  padding-inline: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-header {
  border-bottom: 1px solid var(--line);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.panel-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.panel-visual {
  position: relative;
  min-height: 436px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(50, 67, 255, 0.08), transparent 48%);
  background-size: 34px 34px, 34px 34px, auto;
}

.panel-visual::before,
.panel-visual::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.panel-visual::before {
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.panel-visual::after {
  inset: 0;
  background: radial-gradient(circle at center, transparent 37%, rgba(9, 9, 13, 0.7) 90%);
}

.operator-core {
  display: flex;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 124px;
  height: 124px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #070709;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.018),
    0 0 54px rgba(66, 77, 255, 0.22);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.07em;
  transform: translate(-50%, -50%);
}

.operator-core strong {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.operator-ring {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 230px;
  height: 230px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  animation: spinCentered 30s linear infinite;
}

.ring-b {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.operator-node {
  display: flex;
  position: absolute;
  z-index: 5;
  min-width: 102px;
  padding: 9px 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(8, 8, 11, 0.92);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}

.operator-node i {
  color: var(--faint);
  font-style: normal;
}

.node-a {
  top: 17%;
  left: 9%;
}

.node-b {
  top: 17%;
  right: 8%;
}

.node-c {
  right: 10%;
  bottom: 16%;
}

.node-d {
  bottom: 16%;
  left: 10%;
}

.operator-path {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 185px;
  height: 1px;
  background: linear-gradient(90deg, rgba(121, 40, 255, 0.7), rgba(24, 200, 233, 0.5));
  transform-origin: left center;
}

.operator-path::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
}

.path-a {
  transform: rotate(-139deg);
}

.path-b {
  transform: rotate(-42deg);
}

.path-c {
  transform: rotate(40deg);
}

.path-d {
  transform: rotate(140deg);
}

.install-row {
  display: flex;
  min-height: 84px;
  padding: 15px 17px 15px 23px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.install-row code {
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.install-row code span {
  margin-right: 7px;
  color: var(--cyan);
}

.copy-button {
  display: inline-flex;
  min-width: 82px;
  height: 38px;
  padding-inline: 12px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible,
.copy-button.is-copied {
  border-color: rgba(24, 200, 233, 0.5);
  background: rgba(24, 200, 233, 0.07);
  color: var(--ink);
}

.copy-button svg {
  width: 15px;
  height: 15px;
}

.panel-footer {
  justify-content: flex-start;
  gap: 26px;
}

.panel-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.panel-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

.panel-footer span:nth-child(2) i {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

.panel-footer span:nth-child(3) i {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* Community */

.community {
  padding-block: 160px 180px;
  background:
    radial-gradient(circle at 78% 47%, rgba(24, 200, 233, 0.045), transparent 28rem),
    var(--bg);
}

.community > .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.77fr) minmax(500px, 1.23fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: end;
}

.community-heading h2 {
  margin: 0 0 30px;
  font-size: clamp(3.3rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.community-heading h2 span {
  color: var(--faint);
}

.community-heading > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.community-links {
  border-top: 1px solid var(--line-strong);
}

.community-links > a {
  display: grid;
  min-height: 126px;
  padding: 26px 4px;
  grid-template-columns: 52px 1fr 34px;
  gap: 23px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    padding 260ms var(--ease-out),
    background-color 180ms ease;
}

.community-links > a:hover,
.community-links > a:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.community-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.018);
}

.community-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.community-icon.hf-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.community-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.community-label strong {
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.community-label small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-arrow {
  width: 24px;
  height: 24px;
  color: var(--faint);
  transition:
    color 180ms ease,
    transform 220ms var(--ease-out);
}

.community-links > a:hover .community-arrow,
.community-links > a:focus-visible .community-arrow {
  color: var(--cyan);
  transform: translate(3px, -3px);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #020203;
}

.footer-main {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand strong {
  font-size: 15px;
  font-weight: 700;
}

.footer-brand span {
  color: var(--muted);
  font-size: 12px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.back-to-top svg {
  width: 17px;
  height: 17px;
  transition: transform 220ms var(--ease-out);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--ink);
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  transform: translateY(-4px);
}

.footer-meta {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copy-status {
  position: fixed;
  z-index: 150;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  opacity: 0;
  background: rgba(13, 13, 17, 0.92);
  color: var(--ink-soft);
  font-size: 12px;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
}

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

/* Progressive reveal */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 180ms;
}

.js [data-reveal][data-reveal-delay="3"] {
  transition-delay: 270ms;
}

.js [data-reveal][data-reveal-delay="4"] {
  transition-delay: 360ms;
}

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

/* Motion */

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

@keyframes spinCentered {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes haloPulse {
  from {
    opacity: 0.62;
    transform: scale(0.96) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1.06) rotate(8deg);
  }
}

@keyframes scan {
  0%,
  15% {
    top: 14%;
    opacity: 0;
  }
  25% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.45;
  }
  85%,
  100% {
    top: 84%;
    opacity: 0;
  }
}

@keyframes auroraDrift {
  from {
    transform: translate3d(-2%, -2%, 0) rotate(-3deg);
  }
  to {
    transform: translate3d(3%, 2%, 0) rotate(5deg);
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: rotate(90deg) translateY(0);
  }
  50% {
    transform: rotate(90deg) translateY(4px);
  }
}

/* Responsive */

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 28px;
  }

  .signal-stage {
    width: min(42vw, 490px);
    min-width: 390px;
  }

  .project-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
    gap: 60px;
  }

  .community > .container {
    gap: 70px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 44px));
  }

  .js .nav-toggle {
    display: flex;
  }

  html:not(.js) .site-nav {
    display: none;
  }

  .site-nav {
    gap: 22px;
  }

  .js .site-nav {
    display: flex;
    position: absolute;
    z-index: 1;
    inset: 0;
    height: 100dvh;
    overflow-y: auto;
    padding: calc(var(--header-height) + 42px) 28px 44px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    visibility: hidden;
    opacity: 0;
    background: #050506;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 220ms ease,
      transform 300ms var(--ease-out),
      visibility 220ms;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .site-nav > a {
    width: 100%;
    padding: 14px 0;
    color: var(--ink);
    font-size: clamp(1.7rem, 8vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.045em;
  }

  .js .site-nav > a::after {
    display: none;
  }

  .js .site-nav .nav-socials {
    width: auto;
    margin: 18px 0 0;
    padding: 24px 0 0;
    gap: 10px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .js .site-nav .nav-icon {
    width: 46px;
    height: 46px;
    padding: 0;
    font-size: initial;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 78px) 0 100px;
  }

  .hero::before {
    right: 18%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 86px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 14vw, 7.8rem);
  }

  .hero-lede {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .signal-stage {
    width: min(76vw, 600px);
    min-width: 0;
  }

  .scroll-cue {
    display: none;
  }

  .rail-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .rail-inner > span {
    min-height: 68px;
    border-bottom: 1px solid var(--line);
  }

  .rail-inner > span:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .rail-inner > span:nth-child(3),
  .rail-inner > span:nth-child(4) {
    border-bottom: 0;
  }

  .section {
    padding-block: 120px;
  }

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

  .mission-heading {
    margin-bottom: 76px;
  }

  .focus-heading {
    margin-bottom: 64px;
  }

  .focus-platform {
    min-height: 350px;
    padding: 28px 24px;
  }

  .focus-architecture {
    margin-top: 54px;
  }

  .principle {
    grid-template-columns: 64px minmax(180px, 0.72fr) minmax(250px, 1.28fr);
    gap: 24px;
  }

  .project-grid,
  .community > .container {
    grid-template-columns: 1fr;
  }

  .project-grid {
    gap: 80px;
  }

  .project-copy {
    max-width: 700px;
  }

  .kernel-panel {
    width: min(100%, 740px);
    margin-inline: auto;
  }

  .community > .container {
    gap: 78px;
  }

  .community-heading {
    max-width: 700px;
  }

  .community-links {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand-name {
    font-size: 13px;
  }

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

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-eyebrow {
    align-items: flex-start;
    line-height: 1.7;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.85rem, 18vw, 6rem);
    line-height: 0.92;
  }

  .hero-lede {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 auto;
  }

  .hero-disciplines {
    margin-top: 38px;
    gap: 12px 16px;
  }

  .hero-disciplines span {
    gap: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .signal-stage {
    width: min(102vw, 480px);
    margin-inline: -7vw;
  }

  .stage-label {
    display: none;
  }

  .rail-inner > span {
    padding-inline: 14px;
    gap: 9px;
    font-size: 8px;
  }

  .section {
    padding-block: 96px;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .community-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .mission-heading {
    margin-bottom: 64px;
  }

  .focus-heading {
    margin-bottom: 58px;
  }

  .focus-platforms {
    grid-template-columns: 1fr;
  }

  .focus-platform {
    min-height: 300px;
    padding: 30px 24px 26px;
  }

  .focus-platform + .focus-platform {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .focus-architecture {
    margin: 42px 0 18px;
    font-size: 4rem;
  }

  .principle {
    min-height: 0;
    padding-block: 30px;
    grid-template-columns: 40px 1fr;
    gap: 12px 16px;
  }

  .principle-number {
    grid-row: 1 / span 2;
  }

  .principle h3 {
    font-size: 1.7rem;
  }

  .principle p {
    grid-column: 2;
    font-size: 0.95rem;
  }

  .project-grid {
    gap: 64px;
  }

  .project-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .project-wordmark {
    font-size: 5.1rem;
  }

  .kernel-panel {
    min-height: 0;
    border-radius: 15px;
  }

  .panel-visual {
    min-height: 350px;
  }

  .panel-visual::before {
    width: 290px;
    height: 290px;
  }

  .operator-core {
    width: 98px;
    height: 98px;
    font-size: 23px;
  }

  .ring-a {
    width: 182px;
    height: 182px;
  }

  .ring-b {
    width: 270px;
    height: 270px;
  }

  .operator-node {
    min-width: 85px;
    padding: 7px 8px;
    gap: 5px;
    font-size: 7px;
  }

  .node-a {
    top: 13%;
    left: 5%;
  }

  .node-b {
    top: 13%;
    right: 4%;
  }

  .node-c {
    right: 6%;
    bottom: 12%;
  }

  .node-d {
    bottom: 12%;
    left: 6%;
  }

  .operator-path {
    width: 138px;
  }

  .install-row {
    min-height: 74px;
    padding-left: 17px;
  }

  .install-row code {
    font-size: 11px;
  }

  .copy-button {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .copy-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .panel-footer {
    gap: 18px;
  }

  .community {
    padding-block: 104px 112px;
  }

  .community > .container {
    gap: 58px;
  }

  .community-links > a {
    min-height: 110px;
    grid-template-columns: 44px 1fr 24px;
    gap: 15px;
  }

  .community-icon {
    width: 42px;
    height: 42px;
  }

  .community-icon svg {
    width: 19px;
    height: 19px;
  }

  .community-label small {
    max-width: 48vw;
    font-size: 0.74rem;
  }

  .community-arrow {
    width: 20px;
    height: 20px;
  }

  .footer-main {
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-meta {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 120px;
    line-height: 1.2;
    white-space: normal;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .signal-stage {
    width: 108vw;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
