:root {
  --bg: #050608;
  --bg-soft: #090c10;
  --panel: rgba(13, 17, 23, 0.74);
  --panel-solid: #10141b;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f9fc;
  --muted: #aeb7c5;
  --faint: #6d7786;
  --blue: #74b7ff;
  --green: #73f5bd;
  --amber: #ffcb6d;
  --red: #ff7d7d;
  --max: 1180px;
  --nav-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #050608 0%, #080b10 46%, #050608 100%);
  background-size: 84px 84px, 84px 84px, 100% 100%;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(116, 183, 255, 0.12), transparent 18%, transparent 82%, rgba(115, 245, 189, 0.09)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%, rgba(255, 255, 255, 0.02));
  opacity: 0.72;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 8, 0.22));
}

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

img,
canvas {
  display: block;
}

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

::selection {
  background: rgba(116, 183, 255, 0.35);
  color: white;
}

.signal-canvas,
.grain,
.scan-field,
.cursor-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.signal-canvas {
  z-index: 1;
  opacity: 0.55;
}

.grain {
  z-index: 3;
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.scan-field {
  z-index: 4;
  background: repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.035) 8px 9px);
  opacity: 0.22;
}

.cursor-field {
  z-index: 5;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor-field::before,
.cursor-field::after {
  content: "";
  position: absolute;
  background: rgba(116, 183, 255, 0.18);
  transform: translate3d(var(--mx, -100px), var(--my, -100px), 0);
}

.cursor-field::before {
  width: 1px;
  height: 100vh;
  top: -50vh;
  left: 0;
}

.cursor-field::after {
  width: 100vw;
  height: 1px;
  top: 0;
  left: -50vw;
}

body.has-pointer .cursor-field {
  opacity: 1;
}

.section-shell {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 8;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 50%;
  width: min(100% - 32px, 1240px);
  height: var(--nav-h);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(6, 8, 12, 0.64);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.topbar.scrolled {
  background: rgba(6, 8, 12, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(116, 183, 255, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(116, 183, 255, 0.22), rgba(115, 245, 189, 0.1)),
    rgba(255, 255, 255, 0.04);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  letter-spacing: 0;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand em {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links .nav-pill {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.scroll-meter {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.scroll-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--amber));
  box-shadow: 0 0 18px rgba(116, 183, 255, 0.55);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.86) 34%, rgba(5, 6, 8, 0.34) 68%, rgba(5, 6, 8, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.2) 0%, rgba(5, 6, 8, 0.2) 62%, rgba(5, 6, 8, 0.98) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 9%;
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 183, 255, 0.8), transparent);
  box-shadow: 0 0 24px rgba(116, 183, 255, 0.4);
}

.hero-model {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 72%;
  min-height: 100%;
  overflow: hidden;
}

.hero-model canvas {
  width: 100% !important;
  height: 100% !important;
}

.model-loader,
.model-fail {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 14%;
  display: grid;
  gap: 12px;
  min-width: 220px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 11, 16, 0.66);
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  backdrop-filter: blur(16px);
}

.model-loader i {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.model-loader b {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 180ms ease;
}

.model-loader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.model-fail {
  display: none;
}

.model-fail.show {
  display: grid;
}

.hero-content.section-shell {
  padding-top: 80px;
  width: min(100% - 48px, 690px);
  max-width: 690px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

h1,
h2,
h3,
.brand,
.button,
.stat-card strong,
.work-link strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 28px;
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 700;
}

h1 span {
  color: var(--blue);
  text-shadow: 0 0 36px rgba(116, 183, 255, 0.24);
}

h2 {
  margin-bottom: 20px;
  font-size: 3.25rem;
  line-height: 1.03;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-sub {
  max-width: 650px;
  margin-bottom: 36px;
  color: #c5cedc;
  font-size: 1.1rem;
  line-height: 1.72;
}

.action-row,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 46%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  background: linear-gradient(135deg, rgba(116, 183, 255, 0.22), rgba(115, 245, 189, 0.08));
  border-color: rgba(116, 183, 255, 0.5);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 42px 0 0;
}

.hero-meta div {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.hero-meta dt {
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-meta dd {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(115, 245, 189, 0.8);
  animation: pulse 2.4s ease-in-out infinite;
}

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

.hero-photo {
  position: absolute;
  z-index: 9;
  right: min(48px, 4vw);
  bottom: 42px;
  width: 238px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

.hero-photo span {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
}

.intro-band,
.case-section,
.press-section,
.about-section,
.contact-section {
  position: relative;
  z-index: 7;
  padding: 118px 0;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(116, 183, 255, 0.06), transparent 45%, rgba(115, 245, 189, 0.045)),
    rgba(255, 255, 255, 0.015);
}

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

.section-heading .eyebrow,
.case-header .eyebrow,
.about-section .eyebrow,
.contact-section .eyebrow {
  margin-bottom: 18px;
}

.section-heading p,
.case-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.work-rail {
  display: grid;
  gap: 14px;
}

.work-link {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(9, 12, 16, 0.72);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.work-link::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 220ms ease;
}

.work-link:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background:
    linear-gradient(90deg, rgba(116, 183, 255, 0.08), transparent),
    rgba(9, 12, 16, 0.9);
}

.work-link:hover::after {
  opacity: 1;
}

.work-link span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.work-link strong {
  color: var(--text);
  font-size: 1.35rem;
}

.work-link p {
  grid-column: 2;
  margin: -22px 0 0;
  color: var(--muted);
}

.case-section {
  border-bottom: 1px solid var(--line);
}

.apruss-section {
  background:
    linear-gradient(180deg, rgba(116, 183, 255, 0.035), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 50%);
}

.logbook-section {
  background:
    linear-gradient(180deg, rgba(115, 245, 189, 0.03), transparent 46%),
    linear-gradient(90deg, transparent, rgba(255, 203, 109, 0.035));
}

.case-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 66px;
}

.stat-card,
.cap-card,
.press-card,
.case-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(10, 13, 18, 0.78);
  backdrop-filter: blur(14px);
}

.stat-card::before,
.cap-card::before,
.press-card::before,
.case-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 183, 255, 0.7), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.stat-card:hover::before,
.cap-card:hover::before,
.press-card:hover::before,
.case-panel:hover::before {
  opacity: 1;
}

.stat-card {
  min-height: 246px;
  padding: 26px;
}

.stat-card span,
.press-card span,
.cap-icon {
  display: inline-flex;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-card strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 34px 0 14px;
  color: var(--text);
  font-size: 3.2rem;
  line-height: 1;
}

.stat-card strong em {
  color: var(--faint);
  font-size: 1.2rem;
  font-style: normal;
}

.stat-card p {
  margin: 0;
}

.case-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 16px;
}

.prose h3 {
  margin-top: 34px;
}

.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.prose p {
  margin-bottom: 16px;
}

.prose strong {
  color: var(--text);
  font-weight: 700;
}

.prose ul {
  margin: 18px 0 26px;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.case-panel {
  position: sticky;
  top: 112px;
  padding: 26px;
}

.case-panel h3 + p {
  margin-bottom: 24px;
}

.chip-row,
.work-centers {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip-row {
  margin: 0 0 34px;
}

.chip-row span,
.work-centers span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 20px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-list div {
  padding: 16px;
  background: rgba(10, 13, 18, 0.92);
}

.spec-list dt {
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.model-slice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(115, 245, 189, 0.08), transparent 48%, rgba(255, 203, 109, 0.08)),
    rgba(8, 11, 16, 0.78);
}

.model-slice h3 {
  margin: 8px 0 0;
  font-size: 1.8rem;
}

.telemetry-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.telemetry-strip span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.cap-card {
  min-height: 248px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cap-card:hover,
.press-card:hover,
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.cap-icon {
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(116, 183, 255, 0.24);
  border-radius: 8px;
  background: rgba(116, 183, 255, 0.08);
}

.cap-card h3 {
  margin-bottom: 10px;
}

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

.logbook-prose {
  margin-top: 56px;
}

.press-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

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

.press-card {
  min-height: 232px;
  padding: 25px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.press-card strong {
  display: block;
  margin: 24px 0 28px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  line-height: 1.38;
}

.press-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.about-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(116, 183, 255, 0.04), transparent 50%),
    rgba(255, 255, 255, 0.01);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.5fr) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.portrait {
  position: sticky;
  top: 116px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(5, 6, 8, 0.76)),
    linear-gradient(90deg, rgba(116, 183, 255, 0.12), transparent 42%);
}

.portrait img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.about-meta div {
  padding: 17px;
  background: rgba(10, 13, 18, 0.92);
}

.about-meta dt {
  margin-bottom: 6px;
  color: var(--faint);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-meta dd {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.about-meta a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(116, 183, 255, 0.35);
}

.contact-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(116, 183, 255, 0.1), transparent 36%),
    linear-gradient(225deg, rgba(115, 245, 189, 0.08), transparent 34%),
    #06080c;
}

.contact-inner {
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
}

.contact-inner h2 {
  max-width: 760px;
  margin: 8px auto 16px;
}

.contact-inner p {
  max-width: 570px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-links {
  justify-content: center;
}

/* SILICON LOGIC PAGE */
.project-page .topbar {
  background: rgba(6, 8, 12, 0.78);
}

.publication-hero {
  position: relative;
  z-index: 7;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 96px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(116, 183, 255, 0.1), transparent 32%),
    linear-gradient(245deg, rgba(115, 245, 189, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
}

.publication-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.7), rgba(5, 6, 8, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(116, 183, 255, 0.05) 80px 81px);
}

.publication-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.publication-hero-copy {
  max-width: 790px;
}

.publication-hero h1 {
  max-width: 820px;
  font-size: 4.35rem;
}

.publication-hero h1 span {
  color: var(--green);
  text-shadow: 0 0 34px rgba(115, 245, 189, 0.2);
}

.proof-visual {
  position: relative;
  min-height: 540px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(115, 245, 189, 0.12), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(116, 183, 255, 0.18), transparent 30%),
    rgba(8, 11, 16, 0.78);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.proof-visual::before,
.proof-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.proof-visual::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.proof-visual::after {
  inset: auto 30px 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
  box-shadow: 0 0 26px rgba(115, 245, 189, 0.35);
}

.proof-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.proof-topline strong {
  color: var(--green);
}

.proof-code {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 6, 9, 0.68);
  color: #d8e1ee;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

.proof-code span:nth-child(7) {
  color: var(--green);
}

.proof-chain {
  position: absolute;
  inset: auto 42px 92px 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.proof-chain i {
  height: 54px;
  border: 1px solid rgba(116, 183, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(116, 183, 255, 0.12), rgba(115, 245, 189, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.silicon-section,
.methodology-section,
.specs-section {
  background:
    linear-gradient(180deg, rgba(115, 245, 189, 0.032), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 48%);
}

.page-section {
  position: relative;
  z-index: 7;
  padding: 118px 0;
  border-bottom: 1px solid var(--line);
}

.compact-header {
  margin-bottom: 44px;
}

.proof-panel {
  background:
    linear-gradient(180deg, rgba(115, 245, 189, 0.055), transparent),
    rgba(10, 13, 18, 0.78);
}

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

.track-card,
.dimension-card,
.pipeline-step,
.roadmap-card,
.verification-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent),
    rgba(10, 13, 18, 0.78);
  backdrop-filter: blur(14px);
}

.track-card {
  min-height: 300px;
  padding: 28px;
}

.track-card > span,
.dimension-card span,
.pipeline-step span,
.roadmap-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.track-card h3 {
  font-size: 1.62rem;
}

.track-card p,
.dimension-card p,
.pipeline-step p,
.roadmap-card p {
  color: var(--muted);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.metric-row span {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-note {
  max-width: 920px;
  margin: 34px 0 0;
  color: #c5cedc;
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.dimension-card {
  min-height: 252px;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.dimension-card:hover,
.track-card:hover,
.pipeline-step:hover,
.roadmap-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.dimension-card p {
  margin: 0;
  line-height: 1.62;
}

.dimension-card strong {
  color: var(--text);
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 76px minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
}

.pipeline-step span,
.pipeline-step h3,
.pipeline-step p {
  margin: 0;
}

.pipeline-step h3 {
  font-size: 1.45rem;
}

.single-column {
  grid-template-columns: 1fr;
}

.roadmap-card {
  min-height: 160px;
  padding: 24px;
}

.roadmap-card p {
  margin: 0;
  font-size: 1.02rem;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stack-grid div {
  min-height: 156px;
  padding: 20px;
  background: rgba(10, 13, 18, 0.9);
}

.stack-grid dt {
  margin-bottom: 10px;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stack-grid dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.spec-list a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(116, 183, 255, 0.35);
}

.verification-section {
  background:
    linear-gradient(135deg, rgba(116, 183, 255, 0.09), transparent 38%),
    linear-gradient(225deg, rgba(115, 245, 189, 0.08), transparent 36%);
}

.verification-card {
  padding: 42px;
}

.verification-card h2 {
  max-width: 760px;
}

.verification-card p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.verification-card a:not(.button) {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(116, 183, 255, 0.35);
}

/* VARGIX HOME */
body.vargix-home {
  --home-soft: #e6d9ff;
  --home-purple: #a56bff;
  --home-violet: #6a2cff;
  --home-deep: #1a0b2e;
  --home-ink: #160a2b;
  --home-muted: #625875;
  --home-line: rgba(26, 11, 46, 0.11);
  --home-card: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(90deg, rgba(26, 11, 46, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(26, 11, 46, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, rgba(230, 217, 255, 0.78), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(165, 107, 255, 0.24), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf8ff 42%, #f7f1ff 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%, 100% 100%;
  color: var(--home-ink);
}

body.vargix-home::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 107, 255, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(230, 217, 255, 0.46), transparent 36%, rgba(106, 44, 255, 0.08));
  opacity: 1;
}

body.vargix-home::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%, rgba(255, 255, 255, 0.44));
}

.vargix-home .signal-canvas {
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.brand-aurora {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 22%, rgba(230, 217, 255, 0.78), transparent 28%),
    radial-gradient(circle at 72% 18%, rgba(165, 107, 255, 0.26), transparent 26%),
    radial-gradient(circle at 76% 78%, rgba(106, 44, 255, 0.14), transparent 34%);
  filter: blur(4px);
}

.vargix-home .cursor-field::before,
.vargix-home .cursor-field::after {
  background: rgba(106, 44, 255, 0.16);
}

.home-topbar {
  border-color: rgba(26, 11, 46, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 90px rgba(62, 25, 118, 0.12);
}

.home-topbar.scrolled {
  border-color: rgba(26, 11, 46, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.home-brand {
  color: var(--home-ink);
}

.home-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(106, 44, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

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

.home-brand em {
  color: var(--home-muted);
}

.home-nav a {
  color: var(--home-muted);
}

.home-nav a:hover,
.home-nav a.active {
  color: var(--home-ink);
  background: rgba(106, 44, 255, 0.07);
}

.home-nav .nav-pill {
  color: white;
  border-color: rgba(106, 44, 255, 0.22);
  background: linear-gradient(135deg, var(--home-purple), var(--home-violet));
  box-shadow: 0 12px 28px rgba(106, 44, 255, 0.22);
}

.vargix-home .scroll-meter span {
  background: linear-gradient(90deg, var(--home-soft), var(--home-purple), var(--home-violet), var(--home-deep));
  box-shadow: 0 0 18px rgba(106, 44, 255, 0.4);
}

.vargix-home .eyebrow {
  color: var(--home-violet);
}

.vargix-home .button {
  border-radius: 12px;
}

.vargix-home .button-primary {
  color: white;
  border-color: rgba(106, 44, 255, 0.3);
  background: linear-gradient(135deg, var(--home-purple), var(--home-violet));
  box-shadow: 0 18px 40px rgba(106, 44, 255, 0.22);
}

.vargix-home .button-secondary {
  color: var(--home-ink);
  border-color: rgba(26, 11, 46, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.vargix-hero {
  position: relative;
  z-index: 7;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 82px;
}

.vargix-hero::before {
  content: "";
  position: absolute;
  inset: 116px 5% 72px;
  z-index: 0;
  border: 1px solid rgba(26, 11, 46, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(230, 217, 255, 0.22)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 40px 140px rgba(62, 25, 118, 0.14);
}

.vargix-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: center;
}

.vargix-hero-copy {
  max-width: 740px;
}

.vargix-hero h1 {
  margin-bottom: 28px;
  color: var(--home-ink);
  font-size: 5.45rem;
  line-height: 0.93;
}

.vargix-hero h1 em {
  display: inline-block;
  color: var(--home-violet);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 0 34px rgba(106, 44, 255, 0.18);
}

.vargix-hero .hero-sub {
  max-width: 660px;
  color: var(--home-muted);
  font-size: 1.12rem;
}

.vargix-hero-brand {
  display: grid;
  gap: 18px;
}

.brand-stage {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(26, 11, 46, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 28%, rgba(230, 217, 255, 0.82), transparent 32%),
    radial-gradient(circle at 74% 30%, rgba(165, 107, 255, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 255, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 34px 100px rgba(62, 25, 118, 0.18);
}

.brand-stage::before,
.brand-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-stage::before {
  inset: 22px;
  border: 1px solid rgba(106, 44, 255, 0.08);
  border-radius: 22px;
}

.brand-stage::after {
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(106, 44, 255, 0.12);
  filter: blur(42px);
}

.brand-stage .brand-stage-mark {
  position: relative;
  z-index: 2;
  width: min(54%, 320px);
  filter: saturate(1.12) contrast(1.04);
}

.brand-stage strong {
  position: relative;
  z-index: 2;
  color: var(--home-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1;
}

.signal-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.signal-stack span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(26, 11, 46, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--home-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.home-marquee {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 24px;
  width: min(100% - 48px, var(--max));
  min-height: 42px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 20px;
  border: 1px solid rgba(26, 11, 46, 0.1);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(230, 217, 255, 0.5), rgba(255, 255, 255, 0.76));
  color: var(--home-violet);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-focus-section,
.home-proof-section,
.home-work-section,
.home-method-section,
.home-brand-section,
.home-contact-section {
  position: relative;
  z-index: 7;
  padding: 118px 0;
}

.vargix-home .section-heading h2,
.vargix-home .case-header h2,
.home-brand-board h2,
.home-contact-card h2 {
  color: var(--home-ink);
}

.vargix-home .section-heading p,
.vargix-home .case-lede {
  color: var(--home-muted);
}

.home-focus-grid,
.home-project-grid,
.home-method-rail {
  display: grid;
  gap: 14px;
}

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

.home-focus-card,
.home-project-card,
.home-method-step,
.home-stat-card,
.home-contact-card,
.brand-board-preview {
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    var(--home-card);
  box-shadow: 0 24px 80px rgba(62, 25, 118, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-focus-card {
  min-height: 330px;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-focus-card:hover,
.home-project-card:hover,
.home-method-step:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 44, 255, 0.22);
  box-shadow: 0 30px 90px rgba(62, 25, 118, 0.16);
}

.home-focus-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(230, 217, 255, 0.98), rgba(255, 255, 255, 0.74));
  color: var(--home-violet);
  box-shadow: inset 0 1px 0 white, 0 16px 34px rgba(106, 44, 255, 0.14);
}

.home-focus-icon svg {
  width: 34px;
  height: 34px;
}

.home-focus-card h3,
.home-project-card h3,
.home-method-step h3 {
  color: var(--home-ink);
}

.home-focus-card p,
.home-project-card p,
.home-method-step p {
  color: var(--home-muted);
}

.home-proof-section {
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background:
    linear-gradient(90deg, rgba(230, 217, 255, 0.62), transparent 48%, rgba(165, 107, 255, 0.12)),
    rgba(255, 255, 255, 0.38);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.62fr);
  gap: 52px;
  align-items: center;
}

.home-stat-stack {
  display: grid;
  gap: 12px;
}

.home-stat-card {
  padding: 24px;
}

.home-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--home-violet);
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.home-stat-card span {
  color: var(--home-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-project-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
}

.home-project-card {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.home-project-card.primary {
  background:
    radial-gradient(circle at 82% 12%, rgba(165, 107, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 243, 255, 0.76));
}

.home-project-card > span,
.home-method-step span {
  margin-bottom: 18px;
  color: var(--home-violet);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-project-card h3 {
  font-size: 1.8rem;
}

.home-project-card dl {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(26, 11, 46, 0.1);
  border-radius: 16px;
  background: rgba(26, 11, 46, 0.08);
}

.home-project-card dl div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.home-project-card dt {
  color: var(--home-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-project-card dd {
  margin: 0;
  color: var(--home-ink);
  font-family: "Space Grotesk", sans-serif;
}

.project-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 11px 14px;
  border: 1px solid rgba(106, 44, 255, 0.18);
  border-radius: 12px;
  color: var(--home-violet);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.58);
}

.home-method-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(230, 217, 255, 0.76), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(230, 217, 255, 0.22));
}

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

.home-method-step {
  min-height: 300px;
  padding: 24px;
}

.home-method-step span {
  display: inline-flex;
}

.home-brand-section {
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-brand-board {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.68fr);
  gap: 52px;
  align-items: center;
}

.home-brand-board p {
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.brand-board-preview {
  margin: 0;
  padding: 12px;
  overflow: hidden;
}

.brand-board-preview img {
  width: 100%;
  border-radius: 18px;
  mix-blend-mode: multiply;
}

.home-contact-section {
  padding-bottom: 92px;
}

.home-contact-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 60px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(165, 107, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(230, 217, 255, 0.56));
}

.home-contact-card h2 {
  max-width: 760px;
  margin: 10px auto 16px;
}

.home-contact-card p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-footer {
  border-top-color: var(--home-line);
  color: var(--home-muted);
}

.footer {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
}

.reveal,
.reveal-scale,
.reveal-slide-l,
.reveal-slide-r {
  opacity: 0;
  transition: opacity 860ms cubic-bezier(0.16, 1, 0.3, 1), transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translateY(26px);
}

.reveal-scale {
  transform: scale(0.97);
}

.reveal-slide-l {
  transform: translateX(-28px);
}

.reveal-slide-r {
  transform: translateX(28px);
}

.reveal.in,
.reveal-scale.in,
.reveal-slide-l.in,
.reveal-slide-r.in {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 80ms;
}

[data-delay="2"] {
  transition-delay: 160ms;
}

[data-delay="3"] {
  transition-delay: 240ms;
}

[data-delay="4"] {
  transition-delay: 320ms;
}

[data-delay="5"] {
  transition-delay: 400ms;
}

[data-delay="6"] {
  transition-delay: 480ms;
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-anim {
  opacity: 0;
  animation: hero-fade 1120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim[data-d="1"] {
  animation-delay: 90ms;
}

.hero-anim[data-d="2"] {
  animation-delay: 220ms;
}

.hero-anim[data-d="3"] {
  animation-delay: 350ms;
}

.hero-anim[data-d="4"] {
  animation-delay: 480ms;
}

.hero-anim[data-d="5"] {
  animation-delay: 610ms;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-model {
    width: 86%;
    opacity: 0.82;
  }

  .case-header,
  .case-body,
  .about-grid,
  .publication-hero-grid {
    grid-template-columns: 1fr;
  }

  .vargix-hero-grid,
  .home-proof-grid,
  .home-brand-board {
    grid-template-columns: 1fr;
  }

  .vargix-hero h1 {
    font-size: 4.1rem;
  }

  .home-focus-grid,
  .home-project-grid {
    grid-template-columns: 1fr;
  }

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

  .publication-hero h1 {
    font-size: 3.55rem;
  }

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

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

  .case-panel,
  .portrait {
    position: relative;
    top: auto;
  }

  .portrait img {
    min-height: 420px;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 48px, 320px);
    margin: 40px auto 0;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-h: 66px;
  }

  .topbar {
    top: 8px;
    width: min(100% - 16px, 1240px);
    padding: 10px;
    gap: 12px;
  }

  .brand em {
    display: none;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .section-shell {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding-top: 118px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.58) 42%, rgba(5, 6, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.42));
  }

  .hero-model {
    width: 100%;
    height: 56%;
    top: 0;
    opacity: 0.58;
  }

  .hero-content {
    padding-top: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-sub,
  .prose p,
  .prose li,
  .section-heading p,
  .case-lede {
    font-size: 1rem;
  }

  .hero-meta,
  .stat-grid,
  .cap-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .work-link,
  .model-slice {
    grid-template-columns: 1fr;
  }

  .work-link p {
    grid-column: auto;
    margin: 0;
  }

  .telemetry-strip {
    justify-content: flex-start;
  }

  .intro-band,
  .case-section,
  .page-section,
  .press-section,
  .about-section,
  .contact-section {
    padding: 86px 0;
  }

  .publication-hero {
    min-height: auto;
    padding: 128px 0 86px;
  }

  .vargix-hero {
    min-height: auto;
    padding: 128px 0 82px;
  }

  .vargix-hero::before {
    inset: 102px 12px 52px;
    border-radius: 22px;
  }

  .vargix-hero h1 {
    font-size: 3.25rem;
  }

  .brand-stage {
    min-height: 390px;
  }

  .signal-stack {
    grid-template-columns: 1fr;
  }

  .home-marquee {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 32px, var(--max));
    margin: 24px auto 0;
    overflow: hidden;
  }

  .brand-focus-section,
  .home-proof-section,
  .home-work-section,
  .home-method-section,
  .home-brand-section,
  .home-contact-section {
    padding: 86px 0;
  }

  .publication-hero h1 {
    font-size: 2.95rem;
  }

  .proof-visual {
    min-height: 440px;
  }

  .track-grid,
  .roadmap-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer {
    width: min(100% - 32px, var(--max));
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar {
    align-items: flex-start;
    height: auto;
    flex-direction: column;
  }

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

  .nav-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    gap: 4px;
    overflow: visible;
  }

  .nav-links a {
    min-width: 0;
    padding: 8px 5px;
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.08;
    white-space: normal;
  }

  .hero {
    padding-top: 150px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .publication-hero {
    padding-top: 168px;
  }

  .vargix-hero {
    padding-top: 168px;
  }

  .vargix-hero h1 {
    font-size: 2.82rem;
  }

  .vargix-hero .hero-sub {
    font-size: 1rem;
  }

  .brand-stage {
    min-height: 310px;
    border-radius: 20px;
  }

  .brand-stage .brand-stage-mark {
    width: 48%;
  }

  .brand-stage strong {
    font-size: 3.15rem;
  }

  .home-marquee {
    justify-content: flex-start;
    white-space: nowrap;
  }

  .home-focus-card,
  .home-project-card,
  .home-method-step {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .home-method-rail {
    grid-template-columns: 1fr;
  }

  .home-stat-card strong {
    font-size: 2.6rem;
  }

  .home-project-card dl div {
    grid-template-columns: 1fr;
  }

  .home-contact-card {
    min-height: 360px;
    padding: 34px 22px;
  }

  .home-contact-card .contact-links {
    width: 100%;
  }

  .home-contact-card .button {
    width: 100%;
  }

  .publication-hero h1 {
    font-size: 2.42rem;
  }

  .proof-visual {
    min-height: 390px;
    padding: 18px;
  }

  .proof-code {
    padding: 18px;
    font-size: 0.78rem;
  }

  .proof-chain {
    left: 26px;
    right: 26px;
    bottom: 70px;
    gap: 8px;
  }

  .proof-chain i {
    height: 40px;
  }

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

  .verification-card {
    padding: 26px;
  }

  .hero-meta,
  .about-meta,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .stat-card strong {
    font-size: 2.65rem;
  }

  .model-loader,
  .model-fail {
    left: 16px;
    right: 16px;
    bottom: 24px;
  }
}

/* FINAL VARGIX SYSTEM PASS */
@view-transition {
  navigation: auto;
}

.final-site .final-topbar,
.project-page .final-topbar,
.final-topbar {
  width: min(100% - 40px, 1280px);
  height: 74px;
  top: 18px;
  padding: 10px 12px 10px 14px;
  border-radius: 18px;
}

.vargix-home .final-topbar {
  border-color: rgba(26, 11, 46, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 255, 0.76));
  box-shadow: 0 22px 70px rgba(62, 25, 118, 0.12);
}

.vargix-home .final-topbar.scrolled {
  border-color: rgba(26, 11, 46, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 246, 255, 0.84));
  box-shadow: 0 20px 60px rgba(62, 25, 118, 0.16);
}

.vargix-home .final-topbar .brand strong {
  color: var(--home-ink);
}

.vargix-home .final-topbar .brand em {
  color: var(--home-muted);
}

.vargix-home .final-topbar .home-nav a {
  color: var(--home-muted);
}

.vargix-home .final-topbar .home-nav a:hover,
.vargix-home .final-topbar .home-nav a.active {
  color: var(--home-ink);
  background: rgba(106, 44, 255, 0.07);
}

.vargix-home .final-topbar .home-nav .nav-pill {
  color: white;
  border-color: rgba(106, 44, 255, 0.22);
  background: linear-gradient(135deg, var(--home-purple), var(--home-violet));
}

.final-site .home-brand-mark,
.project-page .home-brand-mark {
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 28px rgba(106, 44, 255, 0.13);
}

.final-site .home-brand-mark img,
.project-page .home-brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: none;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(26, 11, 46, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-deep, var(--text));
  cursor: pointer;
  line-height: 1;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.final-site .home-nav a,
.project-page .home-nav a {
  position: relative;
  border-radius: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
}

.final-site .home-nav a:not(.nav-pill)::after,
.project-page .home-nav a:not(.nav-pill)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.final-site .home-nav a:hover::after,
.final-site .home-nav a.active::after,
.project-page .home-nav a:hover::after,
.project-page .home-nav a.active::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.tilt-card {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 35%), rgba(255, 255, 255, 0.36), transparent 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.tilt-card:hover::after {
  opacity: 1;
}

.final-hero {
  padding-top: 146px;
}

.final-hero::before {
  inset: 114px 4.8% 68px;
  border-radius: 34px;
}

.final-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: 76px;
  align-items: center;
}

.final-hero-copy {
  max-width: 760px;
}

.hero-orbital {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 11, 46, 0.09);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(230, 217, 255, 0.78), transparent 26%),
    radial-gradient(circle at 74% 20%, rgba(165, 107, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 255, 0.78));
  box-shadow: 0 34px 110px rgba(62, 25, 118, 0.16);
}

.orbital-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 14px;
}

.orbital-core img {
  width: 214px;
  height: 214px;
  filter: drop-shadow(0 24px 40px rgba(106, 44, 255, 0.18));
}

.orbital-core strong {
  color: var(--home-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.65rem;
  font-weight: 500;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(106, 44, 255, 0.12);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.orbit-one {
  width: 72%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 50%;
  aspect-ratio: 1;
  animation-duration: 15s;
  animation-direction: reverse;
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-violet);
  box-shadow: 0 0 28px rgba(106, 44, 255, 0.5);
}

.dot-a {
  top: 22%;
  right: 28%;
  animation: float-y 4s ease-in-out infinite;
}

.dot-b {
  left: 25%;
  bottom: 26%;
  animation: float-y 5s ease-in-out infinite reverse;
}

.orbit-label {
  position: absolute;
  z-index: 5;
  min-width: 148px;
  padding: 11px 14px;
  border: 1px solid rgba(26, 11, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--home-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(14px);
}

.label-a { top: 15%; left: 10%; }
.label-b { right: 8%; top: 48%; }
.label-c { bottom: 14%; left: 16%; }

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

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

.home-brand-system-section {
  position: relative;
  z-index: 7;
  padding: 118px 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.brand-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: 52px;
  align-items: center;
}

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

.palette-grid div {
  position: relative;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(26, 11, 46, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(62, 25, 118, 0.09);
}

.palette-grid i {
  display: block;
  height: 110px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.48), transparent 32%),
    var(--swatch);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.palette-grid span,
.palette-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.palette-grid span {
  color: var(--home-violet);
  font-size: 0.8rem;
  font-weight: 800;
}

.palette-grid strong {
  color: var(--home-ink);
  font-size: 1rem;
}

/* Vargix project pages */
.project-hero {
  position: relative;
  z-index: 7;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 28%, rgba(116, 183, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%);
}

.project-page .topbar {
  width: min(100% - 40px, 1280px);
}

.project-page .final-topbar {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 12, 0.76);
}

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

.project-page .home-brand em {
  color: var(--muted);
}

.project-page .home-nav a {
  color: var(--muted);
}

.project-page .home-nav a:hover,
.project-page .home-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.project-page .home-nav .nav-pill {
  color: white;
  border-color: rgba(166, 107, 255, 0.38);
  background: linear-gradient(135deg, #a56bff, #6a2cff);
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 64px;
  align-items: center;
}

.project-hero h1 {
  max-width: 820px;
}

.project-visual {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(116, 183, 255, 0.16), transparent 36%),
    rgba(10, 13, 18, 0.72);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.26);
}

.project-visual #aircraft-stage,
.project-visual .hero-model {
  position: relative;
  width: 100%;
  min-height: 520px;
  inset: auto;
}

.project-visual #aircraft-stage canvas {
  width: 100% !important;
  height: 100% !important;
}

.project-blueprint {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--accent-2, var(--blue));
}

.project-blueprint::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(116, 183, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(116, 183, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(116, 183, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.blueprint-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
}

.blueprint-stack span {
  padding: 16px;
  border: 1px solid rgba(116, 183, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

@media (max-width: 1060px) {
  .final-hero-grid,
  .brand-system-grid,
  .project-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbital {
    min-height: 440px;
  }

  .orbital-core img {
    width: 174px;
    height: 174px;
  }

  .orbital-core strong {
    font-size: 3.6rem;
  }
}

@media (max-width: 760px) {
  .final-topbar {
    height: auto;
    min-height: 68px;
    align-items: center;
    justify-content: flex-start;
  }

  .final-topbar .brand {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    flex-direction: column;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .final-topbar .nav-links {
    position: fixed;
    z-index: -1;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(26, 11, 46, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 80px rgba(62, 25, 118, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(24px);
  }

  .nav-open .final-topbar .nav-links {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .final-topbar .nav-links a {
    width: 100%;
    padding: 13px 14px;
    text-align: left;
    color: var(--home-deep, var(--text));
    background: rgba(106, 44, 255, 0.045);
  }

  .final-topbar .nav-links .nav-pill {
    color: white;
    text-align: center;
  }

  .final-hero {
    padding-top: 144px;
  }

  .final-hero::before {
    inset: 112px 10px 44px;
  }

  .vargix-hero h1 {
    font-size: 3.05rem;
  }

  .hero-orbital {
    min-height: 360px;
    border-radius: 24px;
  }

  .orbital-core img {
    width: 136px;
    height: 136px;
  }

  .orbital-core strong {
    font-size: 2.85rem;
  }

  .orbit-label {
    display: none;
  }

  .palette-grid,
  .home-method-rail {
    grid-template-columns: 1fr;
  }

  .project-hero {
    padding-top: 144px;
  }
}

@media (max-width: 560px) {
  .final-topbar {
    width: min(100% - 16px, 1280px);
    top: 8px;
  }

  .final-topbar .brand em {
    display: none;
  }

  .home-brand-mark {
    width: 40px;
    height: 40px;
  }

  .vargix-hero h1 {
    font-size: 2.72rem;
  }

  .home-marquee {
    width: min(100% - 28px, var(--max));
  }

  .project-visual,
  .project-visual #aircraft-stage,
  .project-visual .hero-model,
  .project-blueprint {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-scale,
  .reveal-slide-l,
  .reveal-slide-r,
  .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .signal-canvas,
  .cursor-field {
    display: none;
  }
}
