:root {
  color-scheme: dark;
  --bg: #1a1a1b;
  --page: #050809;
  --ink: #0d0d0d;
  --surface: rgba(13, 13, 13, 0.72);
  --surface-2: rgba(248, 249, 250, 0.055);
  --line: rgba(248, 249, 250, 0.12);
  --line-bright: rgba(0, 245, 212, 0.38);
  --text: #f8f9fa;
  --muted: rgba(248, 249, 250, 0.68);
  --muted-2: rgba(248, 249, 250, 0.42);
  --primary: #2e5bff;
  --ai: #00f5d4;
  --warn: #ffb84d;
  --radius: 8px;
  --content: min(1180px, calc(100vw - 40px));
  --header: rgba(10, 12, 15, 0.86);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f7f8;
  --page: #ffffff;
  --ink: #061c2b;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-2: rgba(0, 63, 107, 0.045);
  --line: rgba(0, 63, 107, 0.14);
  --line-bright: rgba(46, 91, 255, 0.28);
  --text: #061c2b;
  --muted: rgba(6, 28, 43, 0.7);
  --muted-2: rgba(6, 28, 43, 0.46);
  --header: rgba(235, 241, 245, 0.97);
  --shadow: 0 24px 90px rgba(6, 28, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 48% 30%, rgba(0, 245, 212, 0.1), transparent 32rem),
    radial-gradient(circle at 22% 20%, rgba(46, 91, 255, 0.22), transparent 30rem),
    linear-gradient(180deg, #000 0%, #111214 44%, #050809 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-ready {
  opacity: 1;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 245, 212, 0.11), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(46, 91, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 46%, #dcebf1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 245, 212, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 212, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 34%, rgba(0, 0, 0, 0.44));
}

:root[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(46, 91, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 91, 255, 0.035) 1px, transparent 1px);
  opacity: 0.24;
}

:root[data-theme="light"] body::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent 38%, rgba(255, 255, 255, 0.2));
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

:root[data-theme="light"] .noise {
  opacity: 0.055;
}

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.34;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 212, 0.14), transparent 28rem),
    var(--page);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease, opacity 160ms ease;
}

body.is-transitioning .page-transition-overlay {
  opacity: 1;
  transform: scaleY(1);
}

:root[data-theme="light"] .signal-canvas {
  opacity: 0.18;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(248, 249, 250, 0.065);
  background: var(--header);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100vw - 40px));
  height: 80px;
  margin: 0 auto;
  gap: 24px;
}

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

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 245, 212, 0.74);
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(0, 245, 212, 0.16) 42% 48%, transparent 48%),
    rgba(248, 249, 250, 0.035);
  box-shadow: 0 0 22px rgba(0, 245, 212, 0.12);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 16px;
  width: 18px;
  height: 3px;
  background: var(--ai);
  border-radius: 99px;
  transform-origin: right center;
}

.brand-mark::before {
  transform: rotate(50deg);
}

.brand-mark::after {
  transform: rotate(-50deg);
}

.brand-word {
  color: var(--text);
  font-weight: 850;
}

.brand-word span {
  color: var(--muted);
  font-weight: 300;
}

:root[data-theme="light"] .brand-mark {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(46, 91, 255, 0.12) 42% 48%, transparent 48%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(46, 91, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="location"],
.nav-links a[aria-current="page"] {
  color: var(--ai);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  background: rgba(46, 91, 255, 0.56);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 0 15px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta:hover {
  border-color: var(--ai);
  background: var(--ai);
  color: #061311;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  width: 4.4rem;
  height: 2.35rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 245, 212, 0.44);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.92);
  color: #f8f9fa;
  padding: 0 0.5rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(0, 245, 212, 0.82);
  box-shadow: 0 0 24px rgba(0, 245, 212, 0.2);
}

.theme-toggle:focus-visible {
  outline: 2px solid rgba(0, 245, 212, 0.9);
  outline-offset: 3px;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 0.32rem;
  width: 1.78rem;
  height: 1.78rem;
  border-radius: 999px;
  background: #f8f9fa;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, background 180ms ease;
}

.theme-toggle__icon {
  position: relative;
  z-index: 1;
  width: 0.98rem;
  height: 0.98rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.theme-toggle__icon--sun {
  color: rgba(248, 249, 250, 0.72);
  opacity: 0;
  transform: scale(0.84);
}

.theme-toggle__icon--moon {
  color: #f8f9fa;
  opacity: 1;
  transform: scale(1);
}

.theme-toggle__spark {
  stroke-width: 2.8;
}

:root[data-theme="light"] .theme-toggle {
  border-color: rgba(6, 28, 43, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #061c2b;
  box-shadow: 0 10px 24px rgba(6, 28, 43, 0.1);
}

:root[data-theme="light"] .theme-toggle::after {
  background: #061c2b;
  transform: translateX(1.98rem);
}

:root[data-theme="light"] .theme-toggle__icon--sun {
  color: #30435f;
  opacity: 1;
  transform: scale(1);
}

:root[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: scale(0.84);
}

.brand:focus-visible,
.nav-links a:focus-visible,
.header-cta:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--ai);
  outline-offset: 4px;
}

.section-band {
  position: relative;
  scroll-margin-top: 96px;
}

.section-shell {
  width: var(--content);
  margin: 0 auto;
}

.hero {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 112px 0 86px;
}

.risk-core {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: center;
  pointer-events: none;
}

.core-orb {
  position: absolute;
  left: 28%;
  top: 50%;
  width: min(54vw, 700px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 212, 0.32), transparent 0 6%, rgba(0, 245, 212, 0.13) 7%, transparent 32%),
    radial-gradient(circle at center, rgba(46, 91, 255, 0.34), rgba(0, 245, 212, 0.1) 28%, rgba(0, 0, 0, 0) 66%);
  box-shadow:
    0 0 80px rgba(0, 245, 212, 0.18),
    inset 0 0 90px rgba(0, 245, 212, 0.12);
  transform: translate(-50%, -50%);
  animation: coreBreath 7s ease-in-out infinite;
}

:root[data-theme="light"] .core-orb {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 212, 0.3), transparent 0 6%, rgba(46, 91, 255, 0.08) 7%, transparent 32%),
    radial-gradient(circle at center, rgba(46, 91, 255, 0.2), rgba(0, 245, 212, 0.08) 28%, rgba(255, 255, 255, 0) 66%);
  box-shadow:
    0 0 80px rgba(46, 91, 255, 0.12),
    inset 0 0 90px rgba(0, 245, 212, 0.08);
}

.core-orb::before,
.core-orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 245, 212, 0.14);
  border-radius: inherit;
}

.core-orb::after {
  inset: 26%;
}

.scanline {
  position: absolute;
  inset: 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 212, 0.14), transparent);
  opacity: 0.34;
  transform: translateY(-100%);
  animation: scan 6s linear infinite;
}

:root[data-theme="light"] .scanline {
  opacity: 0.18;
}

.aresta-core {
  position: absolute;
  left: 28%;
  top: 50%;
  width: min(78vw, 820px);
  height: min(78vw, 820px);
  overflow: visible;
  filter: drop-shadow(0 0 28px rgba(0, 245, 212, 0.16));
  transform: translate(-50%, -50%);
}

:root[data-theme="light"] .aresta-core {
  filter: drop-shadow(0 0 28px rgba(46, 91, 255, 0.12));
}

.core-halo {
  opacity: 0.74;
}

.core-ring {
  fill: none;
  stroke: rgba(0, 245, 212, 0.16);
  stroke-width: 1;
  stroke-dasharray: 18 16;
  transform-origin: center;
  animation: ringSpin 18s linear infinite;
}

.core-ring--inner {
  stroke: rgba(248, 249, 250, 0.1);
  stroke-dasharray: 8 20;
  animation-duration: 13s;
  animation-direction: reverse;
}

:root[data-theme="light"] .core-ring--inner {
  stroke: rgba(6, 28, 43, 0.12);
}

.core-piece {
  fill: none;
  stroke: url(#arestaTrace);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  opacity: 0.64;
  animation: drawTrace 6.4s ease-in-out infinite alternate;
}

.core-piece--primary {
  stroke-width: 7;
  opacity: 0.9;
}

.core-piece--secondary {
  stroke: rgba(46, 91, 255, 0.9);
}

.core-piece--accent {
  stroke: rgba(0, 245, 212, 0.62);
  animation-delay: -1.4s;
}

.core-node {
  fill: var(--ai);
  filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.85));
  animation: nodePulse 3.5s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(470px, 7fr);
  align-items: center;
  gap: 44px;
  width: min(1220px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 22px;
  border: 1px solid rgba(0, 245, 212, 0.36);
  background: rgba(0, 245, 212, 0.055);
  color: var(--ai);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1;
  padding: 10px 13px;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(0, 245, 212, 0.08);
}

:root[data-theme="light"] .section-kicker {
  background: rgba(0, 245, 212, 0.06);
  color: #0aa998;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--ai);
}

.hero-terminal {
  min-height: 2.2rem;
  margin: 0 0 14px;
  color: var(--ai);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terminal-cursor {
  color: rgba(248, 249, 250, 0.7);
  animation: blink 1s step-end infinite;
}

:root[data-theme="light"] .terminal-cursor {
  color: rgba(6, 28, 43, 0.58);
}

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

h1,
h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 900;
  line-height: 0.97;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  padding: 0 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ai);
  color: #041311;
  box-shadow: 0 18px 40px rgba(0, 245, 212, 0.18);
}

.button-secondary {
  border: 1px solid rgba(248, 249, 250, 0.18);
  background: rgba(248, 249, 250, 0.045);
  color: var(--text);
}

:root[data-theme="light"] .button-secondary {
  border-color: rgba(6, 28, 43, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(0, 245, 212, 0.52);
  color: var(--ai);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  width: 100%;
  max-width: 650px;
  margin: 46px 0 0;
}

.hero-metric {
  display: grid;
  gap: 9px;
  text-align: center;
}

.hero-metric + .hero-metric {
  border-left: 1px solid rgba(248, 249, 250, 0.11);
}

.hero-metric dt {
  color: var(--ai);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1;
}

.hero-metric dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint span {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--ai), transparent);
}

.client-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid rgba(248, 249, 250, 0.1);
  background: #02070a;
  padding: 42px 0;
}

.client-strip p {
  margin: 0 0 22px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-align: center;
  text-transform: uppercase;
}

.client-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.client-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.client-ticker-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.client-ticker span {
  min-width: max-content;
  border: 1px solid rgba(248, 249, 250, 0.1);
  background: rgba(248, 249, 250, 0.04);
  color: rgba(248, 249, 250, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  padding: 14px 22px;
  text-transform: uppercase;
}

.glass-card {
  border: 1px solid rgba(0, 245, 212, 0.2);
  background:
    linear-gradient(180deg, rgba(46, 91, 255, 0.11), rgba(0, 245, 212, 0.04)),
    rgba(13, 13, 13, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

:root[data-theme="light"] .glass-card {
  border-color: rgba(46, 91, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(0, 245, 212, 0.055)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 78svh;
  padding: 150px 0 84px;
  overflow: hidden;
}

.compact-page-hero {
  min-height: 62svh;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.page-copy {
  max-width: 860px;
}

.page-copy.single {
  max-width: 980px;
}

.page-copy h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.page-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.system-panel,
.product-terminal {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
}

.system-panel::before,
.product-terminal::before {
  content: "";
  position: absolute;
  inset: auto -18% -38% 28%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.24), rgba(46, 91, 255, 0.18) 36%, transparent 68%);
  opacity: 0.72;
}

.panel-status {
  display: inline-flex;
  border: 1px solid rgba(0, 245, 212, 0.36);
  color: var(--ai);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 34px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.system-panel h2 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.system-panel p {
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.panel-metrics {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 48px 0 0;
}

.panel-metrics div,
.product-terminal div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(248, 249, 250, 0.12);
  background: rgba(5, 8, 12, 0.54);
  padding: 13px 14px;
}

.panel-metrics dt,
.product-terminal span {
  color: var(--ai);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.panel-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: right;
}

:root[data-theme="light"] .panel-metrics div,
:root[data-theme="light"] .product-terminal div,
:root[data-theme="light"] .proof-console div,
:root[data-theme="light"] .atlas-sidebar,
:root[data-theme="light"] .chat-panel,
:root[data-theme="light"] .pipeline-panel,
:root[data-theme="light"] .kanban-column,
:root[data-theme="light"] .lead,
:root[data-theme="light"] .message-in {
  border-color: rgba(6, 28, 43, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

:root[data-theme="light"] .message-out {
  border-color: rgba(46, 91, 255, 0.2);
  background: rgba(46, 91, 255, 0.08);
}

:root[data-theme="light"] .ai-card {
  background: rgba(0, 245, 212, 0.08);
}

.product-terminal {
  display: grid;
  align-content: end;
  gap: 12px;
}

.product-terminal b {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.about,
.engine,
.ecosystem,
.interface,
.proof,
.pricing,
.contact,
.cta-band {
  padding: 104px 0;
}

.about {
  border-bottom: 1px solid rgba(248, 249, 250, 0.1);
  background: rgba(3, 8, 13, 0.72);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  min-height: 430px;
  padding: clamp(28px, 5vw, 58px);
}

.about-card h2,
.section-heading h2,
.proof-panel h2,
.contact-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.about-copy p,
.section-heading p,
.feature-card p,
.processor-card p,
.interface p,
.proof-panel p,
.metric-card p,
.price-card p,
.contact-inner p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

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

.section-heading.centered .section-kicker {
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(248, 249, 250, 0.1);
}

.feature-card,
.service-card,
.solution-card,
.flow-card,
.blog-card {
  min-height: 310px;
  border-width: 0 1px 0 0;
  border-radius: 0;
  box-shadow: none;
  padding: 28px;
}

.feature-card:last-child {
  border-right: 0;
}

.solution-card:last-child,
.service-card:last-child,
.flow-card:last-child {
  border-right: 0;
}

.feature-card span,
.service-card span,
.solution-card span,
.flow-card span,
.blog-card span,
.processor-card span,
.metric-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--ai);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.feature-card h3,
.service-card h3,
.solution-card h3,
.flow-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.solution-grid,
.service-grid,
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(248, 249, 250, 0.1);
}

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

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

.solution-card,
.service-card,
.flow-card {
  display: flex;
  flex-direction: column;
}

.solution-card p,
.service-card p,
.flow-card p,
.blog-card p {
  color: var(--muted);
  line-height: 1.7;
}

.solution-card .button {
  margin-top: auto;
}

.ecosystem {
  overflow: hidden;
  background: linear-gradient(180deg, #000, #071012 46%, #02070a);
  color: #f8f9fa;
}

.ecosystem .section-heading h2,
.ecosystem .solution-card h3,
.ecosystem .flow-card h3,
.ecosystem .processor-card strong,
.ecosystem .processor-core strong {
  color: #f8f9fa;
}

.ecosystem .section-heading p,
.ecosystem .processor-card p {
  color: rgba(248, 249, 250, 0.74);
}

.ecosystem .solution-card,
.ecosystem .flow-card {
  color: #061c2b;
}

.ecosystem .solution-card h3,
.ecosystem .flow-card h3 {
  color: #061c2b;
}

.ecosystem .solution-card p,
.ecosystem .flow-card p {
  color: rgba(6, 28, 43, 0.72);
}

.processor-stage {
  position: relative;
  min-height: 690px;
  margin-top: 32px;
}

.processor-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(36vw, 28rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.16), transparent 62%);
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.processor-axis {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: rgba(248, 249, 250, 0.34);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
}

.processor-axis--left {
  left: 4%;
}

.processor-axis--right {
  right: 4%;
}

.processor-traces {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: url(#processorTrace);
  stroke-width: 2;
  opacity: 0.78;
}

.processor-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.16), rgba(46, 91, 255, 0.14) 54%, rgba(5, 8, 12, 0.9));
  box-shadow: 0 0 60px rgba(0, 245, 212, 0.16);
  transform: translate(-50%, -50%);
}

.processor-core strong {
  margin-top: 56px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.atlas-compass {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 245, 212, 0.58);
  border-radius: 50%;
}

.atlas-compass::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 8px;
  height: 18px;
  background: linear-gradient(to bottom, var(--ai) 0 50%, var(--primary) 50% 100%);
  clip-path: polygon(50% 0, 100% 100%, 50% 76%, 0 100%);
  transform: rotate(35deg);
}

.processor-card {
  position: absolute;
  z-index: 4;
  width: min(250px, 25vw);
  min-height: 145px;
  padding: 20px;
}

.processor-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.processor-card p {
  margin: 0;
  font-size: 0.9rem;
}

.processor-card--a { left: 0; top: 0; }
.processor-card--b { left: 0; top: 50%; transform: translateY(-50%); }
.processor-card--c { left: 0; bottom: 0; }
.processor-card--d { right: 0; top: 0; }
.processor-card--e { right: 0; top: 50%; transform: translateY(-50%); }
.processor-card--f { right: 0; bottom: 0; }

.interface-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(600px, 1.22fr);
  align-items: center;
  gap: 42px;
}

.atlas-frame {
  overflow: hidden;
}

.atlas-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  border-bottom: 1px solid rgba(248, 249, 250, 0.12);
  padding: 0 18px;
}

.atlas-logo,
.atlas-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.atlas-logo .atlas-compass {
  position: relative;
}

.atlas-status {
  color: var(--muted);
  font-size: 0.82rem;
}

.atlas-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ai);
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.8);
}

.atlas-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 155px;
  gap: 14px;
  min-height: 530px;
  padding: 14px;
}

.atlas-sidebar,
.chat-panel,
.pipeline-panel {
  border: 1px solid rgba(248, 249, 250, 0.12);
  background: rgba(5, 8, 12, 0.48);
  padding: 12px;
}

.sidebar-title,
.pipeline-title {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  background: rgba(248, 249, 250, 0.035);
  padding: 10px 8px;
}

.lead.active {
  border-color: rgba(0, 245, 212, 0.34);
  background: rgba(0, 245, 212, 0.08);
}

.lead > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
}

.lead.active > span {
  background: var(--ai);
}

.lead strong,
.lead small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead strong {
  font-size: 0.78rem;
}

.lead small {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.68rem;
}

.lead b {
  color: var(--ai);
  font-size: 0.78rem;
}

.chat-panel {
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(248, 249, 250, 0.1);
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header small {
  color: var(--muted-2);
  margin-top: 4px;
}

.chat-header span {
  align-self: flex-start;
  border: 1px solid rgba(0, 245, 212, 0.32);
  border-radius: 99px;
  color: var(--ai);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 5px 8px;
}

.message {
  max-width: 86%;
  border: 1px solid rgba(248, 249, 250, 0.12);
  color: #e7ecef;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 11px 12px;
}

.message-in {
  background: rgba(248, 249, 250, 0.055);
}

.message-out {
  align-self: flex-end;
  border-color: rgba(46, 91, 255, 0.34);
  background: rgba(46, 91, 255, 0.14);
}

.ai-card {
  margin-top: auto;
  border: 1px solid rgba(0, 245, 212, 0.28);
  background: rgba(0, 245, 212, 0.08);
  padding: 13px;
}

.ai-card div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.ai-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-card strong {
  color: var(--ai);
  font-size: 0.78rem;
}

.ai-card ul,
.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-card li {
  position: relative;
  color: #e6f4f2;
  font-size: 0.78rem;
  line-height: 1.42;
  padding-left: 14px;
}

.ai-card li + li {
  margin-top: 7px;
}

.ai-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--ai);
}

.pipeline-panel {
  display: flex;
  flex-direction: column;
}

.kanban-column {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(248, 249, 250, 0.12);
  margin-bottom: 10px;
  background: rgba(248, 249, 250, 0.035);
  padding: 11px 10px;
}

.kanban-column.hot {
  border-color: rgba(255, 184, 77, 0.42);
  background: rgba(255, 184, 77, 0.08);
}

.kanban-column span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.kanban-column b {
  font-size: 0.82rem;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 6px;
  min-height: 118px;
  margin-top: auto;
  border-top: 1px solid rgba(248, 249, 250, 0.1);
  padding-top: 14px;
}

.mini-chart span {
  display: block;
  min-height: 18px;
  background: linear-gradient(to top, var(--primary), var(--ai));
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 14px;
}

.proof-panel {
  padding: 34px;
}

.proof-panel h2 {
  margin-bottom: 20px;
}

.proof-panel p {
  max-width: 660px;
}

.proof-console {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.proof-console div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(248, 249, 250, 0.12);
  background: rgba(5, 8, 12, 0.48);
  padding: 13px 14px;
}

.proof-console span {
  color: var(--ai);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
}

.proof-console b {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

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

.metric-card {
  min-height: 122px;
  padding: 22px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(0, 245, 212, 0.58);
  background:
    linear-gradient(150deg, rgba(0, 245, 212, 0.14), rgba(46, 91, 255, 0.12) 44%, rgba(248, 249, 250, 0.045)),
    rgba(13, 13, 13, 0.78);
}

.plan-badge {
  align-self: flex-start;
  border: 1px solid rgba(0, 245, 212, 0.42);
  color: var(--ai);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 30px;
}

.price-card li {
  position: relative;
  color: #dce2e8;
  line-height: 1.4;
  padding-left: 20px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ai);
  transform: rotate(45deg);
}

.price-card .button {
  margin-top: auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
}

.contact-inner h2 {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(248, 249, 250, 0.12);
  outline: none;
  background: rgba(5, 8, 12, 0.72);
  color: var(--text);
  padding: 0 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 245, 212, 0.54);
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.1);
}

.contact-form textarea {
  min-height: 128px;
  padding-block: 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 249, 250, 0.38);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-methods a {
  color: var(--ai);
  font-weight: 900;
}

.contact-methods span {
  color: var(--muted-2);
  font-size: 0.86rem;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding: clamp(30px, 5vw, 54px);
}

.cta-inner h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.cta-inner .button {
  min-width: 240px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  border-width: 1px;
}

.blog-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.blog-card a {
  margin-top: auto;
  color: var(--ai);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--ai);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer {
  padding: 72px 0 34px;
  background: rgba(5, 8, 12, 0.74);
  color: #f8f9fa;
}

.site-footer .brand-word,
.site-footer .brand-word span {
  color: #f8f9fa;
}

.site-footer p {
  color: rgba(248, 249, 250, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  gap: 42px;
  width: var(--content);
  margin: 0 auto;
}

.footer-grid h3 {
  color: rgba(248, 249, 250, 0.92);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(248, 249, 250, 0.76);
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--ai);
}

.footer-bottom {
  width: var(--content);
  margin: 46px auto 0;
  border-top: 1px solid rgba(248, 249, 250, 0.1);
  color: rgba(248, 249, 250, 0.72);
  padding-top: 22px;
  font-size: 0.82rem;
}

@keyframes coreBreath {
  0%, 100% { opacity: 0.74; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes scan {
  to { transform: translateY(540%); }
}

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

@keyframes drawTrace {
  to { stroke-dashoffset: 0; }
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.6; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.14); }
}

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

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

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
    font-size: 0.67rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .interface-grid,
  .proof-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .system-panel,
  .product-terminal {
    min-height: 330px;
  }

  .hero-spacer {
    display: none;
  }

  .hero-copy {
    margin-left: auto;
    max-width: 720px;
  }

  .aresta-core,
  .core-orb {
    left: 20%;
  }

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

  .solution-grid,
  .service-grid,
  .flow-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(2n),
  .solution-card:nth-child(2n),
  .service-card:nth-child(2n),
  .flow-card:nth-child(2n) {
    border-right: 0;
  }

  .feature-card,
  .solution-card,
  .service-card,
  .flow-card {
    border-bottom: 1px solid rgba(248, 249, 250, 0.1);
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  :root {
    --content: min(100vw - 28px, 1180px);
  }

  .header-inner {
    display: flex;
    height: 80px;
    padding: 0;
  }

  .brand {
    justify-self: start;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 100svh;
    padding-top: 98px;
    align-items: center;
  }

  .page-hero {
    min-height: auto;
    padding: 124px 0 74px;
  }

  .hero-grid {
    width: var(--content);
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
    overflow: hidden;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 0.62rem;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-terminal {
    max-width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12vw, 3.7rem);
    overflow-wrap: anywhere;
  }

  .hero h1 {
    padding-left: 20%;
    font-size: clamp(2.38rem, 10vw, 3.05rem);
    text-align: right;
  }

  .page-copy h1 {
    font-size: clamp(2.85rem, 12vw, 3.8rem);
  }

  .page-copy p {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    text-align: center;
  }

  .hero-metric {
    border-top: 0;
    text-align: center;
    padding: 0;
  }

  .hero-metric + .hero-metric {
    border-left: 0;
  }

  .scroll-hint {
    display: none;
  }

  .aresta-core {
    left: 12%;
    top: 42%;
    width: 52vw;
    height: 52vw;
    opacity: 0.9;
    transform: translate(0, -50%);
  }

  .core-orb {
    left: 22%;
    top: 42%;
    width: 58vw;
    opacity: 0.64;
  }

  .about,
  .engine,
  .ecosystem,
  .interface,
  .proof,
  .pricing,
  .contact,
  .cta-band {
    padding: 82px 0;
  }

  .about-card,
  .engine-grid,
  .solution-grid,
  .service-grid,
  .flow-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    gap: 28px;
  }

  .about-card h2,
  .section-heading h2,
  .proof-panel h2,
  .contact-inner h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .feature-card,
  .feature-card:nth-child(2n),
  .solution-card,
  .solution-card:nth-child(2n),
  .service-card,
  .service-card:nth-child(2n),
  .flow-card,
  .flow-card:nth-child(2n) {
    border-right: 0;
  }

  .blog-card {
    min-height: 360px;
  }

  .cta-inner h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .cta-inner .button {
    width: 100%;
  }

  .processor-stage {
    display: grid;
    min-height: 0;
    gap: 14px;
  }

  .processor-stage::before,
  .processor-axis,
  .processor-traces {
    display: none;
  }

  .processor-core,
  .processor-card,
  .processor-card--a,
  .processor-card--b,
  .processor-card--c,
  .processor-card--d,
  .processor-card--e,
  .processor-card--f {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .processor-core {
    min-height: 132px;
    border-radius: 0;
  }

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

  .contact-inner {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    width: calc(100vw - 20px);
  }

  .brand-word {
    font-size: 0.92rem;
  }

  .nav-links {
    font-size: 0.54rem;
  }

  h1 {
    font-size: clamp(2.68rem, 11.5vw, 3.2rem);
  }

  .section-kicker {
    letter-spacing: 0.13em;
  }

  .proof-console div {
    display: grid;
    gap: 6px;
  }

  .proof-console b {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
