:root {
  --bg: #050607;
  --bg-2: #0b0d10;
  --bg-3: #10131a;
  --ink: #f8fbff;
  --muted: #aeb8c9;
  --dim: #748095;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --glass: rgba(12, 16, 22, 0.78);
  --glass-2: rgba(18, 24, 32, 0.84);
  --paper: #f5f8f2;
  --cyan: #28e9ff;
  --rose: #ff4c91;
  --lime: #a6ff5f;
  --amber: #ffbf4d;
  --violet: #9d86ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --shadow-strong: 0 34px 110px rgba(0, 0, 0, 0.52);
  --scroll-progress: 0%;
  --pointer-x: 50vw;
  --pointer-y: 30vh;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.98), rgba(11, 13, 16, 0.98) 38%, rgba(5, 6, 7, 0.98)),
    linear-gradient(112deg, rgba(40, 233, 255, 0.12) 0, transparent 30%, rgba(166, 255, 95, 0.07) 48%, transparent 67%, rgba(255, 76, 145, 0.10)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 96px);
  color: var(--ink);
  font-family: "Noto Sans", Arial, sans-serif;
  letter-spacing: 0;
  margin: 0;
  min-width: 320px;
}

body::before {
  background:
    linear-gradient(100deg, transparent 0, rgba(40, 233, 255, 0.14) 23%, transparent 39%),
    linear-gradient(280deg, transparent 0, rgba(255, 191, 77, 0.13) 24%, transparent 41%);
  content: "";
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

body::after {
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0, rgba(255, 255, 255, 0.032) 1px, transparent 1px, transparent 7px);
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: fixed;
  z-index: 40;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

::selection {
  background: rgba(40, 233, 255, 0.28);
  color: #ffffff;
}

@keyframes scan-sweep {
  0% {
    transform: translateX(-32%);
  }

  100% {
    transform: translateX(32%);
  }
}

@keyframes console-scan {
  0%,
  12% {
    opacity: 0;
    transform: translateY(-115%);
  }

  30% {
    opacity: 0.6;
  }

  72% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    transform: translateY(125%);
  }
}

@keyframes image-switch {
  0% {
    opacity: 0.38;
    transform: scale(0.994);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes title-shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes radar-drift {
  0% {
    opacity: 0.18;
    transform: translate3d(-14%, 0, 0) skewX(-14deg);
  }

  50% {
    opacity: 0.42;
  }

  100% {
    opacity: 0.22;
    transform: translate3d(14%, 0, 0) skewX(-14deg);
  }
}

@keyframes rail-flow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 220px 0;
  }
}

@keyframes hud-blink {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 1;
  }
}

@keyframes stage-scan {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.topbar {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(16, 19, 26, 0.86)),
    rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  display: flex;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 30px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
}

.topbar::after {
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--rose));
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: var(--scroll-progress);
}

.topbar-brand {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  min-height: 36px;
  text-decoration: none;
}

.topbar-brand::before {
  color: var(--cyan);
  content: "<";
}

.topbar-brand::after {
  color: var(--rose);
  content: ">";
}

.topbar-links {
  display: flex;
  gap: 6px;
}

.topbar-links a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  min-height: 36px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.topbar-links a:hover,
.topbar-links a.is-active {
  background: rgba(40, 233, 255, 0.10);
  border-color: rgba(40, 233, 255, 0.42);
  color: #ffffff;
}

.container {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 28px;
  width: 100%;
}

.wide-container {
  max-width: 1320px;
}

.hero-section {
  min-height: 760px;
  overflow: hidden;
  padding: 88px 30px 72px;
  position: relative;
}

.scan-field {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.scan-field::before {
  background:
    linear-gradient(90deg, transparent 0, rgba(40, 233, 255, 0.26) 30%, transparent 62%),
    linear-gradient(90deg, transparent 0, rgba(255, 76, 145, 0.14) 52%, transparent 80%);
  clip-path: polygon(0 6%, 100% 0, 100% 74%, 0 100%);
  content: "";
  height: 64%;
  left: -14%;
  opacity: 0.34;
  position: absolute;
  top: 8%;
  width: 128%;
  animation: scan-sweep 18s ease-in-out infinite alternate;
}

.scan-field::after {
  background:
    repeating-linear-gradient(115deg, rgba(40, 233, 255, 0.18) 0, rgba(40, 233, 255, 0.18) 1px, transparent 1px, transparent 34px),
    repeating-linear-gradient(65deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 42px);
  content: "";
  inset: 0;
  opacity: 0.25;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1360px;
  min-height: 0;
  position: relative;
  z-index: 1;
}

.hero-copy {
  margin: 0 auto;
  max-width: 1320px;
  text-align: center;
}

.venue-label {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  gap: 9px;
  line-height: 1;
  margin: 0 0 22px;
  min-height: 42px;
  overflow: hidden;
  padding: 0 12px;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.venue-label strong {
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  color: #061014;
  display: inline-flex;
  line-height: 1;
  margin-right: -8px;
  min-height: 32px;
  padding: 9px 12px;
}

.hero-copy h1 {
  background: linear-gradient(95deg, #ffffff 0%, #28e9ff 34%, #a6ff5f 58%, #ffbf4d 76%, #ff4c91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 8.4rem;
  font-weight: 900;
  line-height: 0.82;
  margin: 0;
  text-shadow:
    0 0 22px rgba(40, 233, 255, 0.22),
    0 22px 70px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  color: #f7fbff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 26px 0 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-wrap: balance;
}

.subtitle-word {
  white-space: nowrap;
}

.acronym-letter {
  background: linear-gradient(135deg, var(--cyan), var(--lime) 48%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 1.16em;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(40, 233, 255, 0.28);
}

.hero-lede,
.section-lede {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  margin: 20px 0 0;
  max-width: 880px;
}

.hero-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.author-list {
  color: #e7eefb;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 28px auto 0;
  max-width: 1320px;
}

.author-list a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.author-list a:hover {
  color: var(--cyan);
}

.author-list sup {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  margin-left: 1px;
}

.author-nowrap {
  white-space: nowrap;
}

.affiliation-grid {
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  margin: 20px auto 0;
  max-width: 1180px;
  text-align: left;
}

.affiliation-grid span {
  color: #c6d1e1;
  font-size: 0.98rem;
  line-height: 1.4;
  white-space: nowrap;
}

.affiliation-grid sup {
  color: var(--amber);
  font-weight: 900;
  margin-right: 4px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.project-button {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(12, 16, 22, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  min-width: 108px;
  padding: 12px 15px;
  position: relative;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  backdrop-filter: blur(18px);
}

.project-button::before {
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--rose));
  content: "";
  height: 2px;
  left: 8px;
  opacity: 0;
  position: absolute;
  right: 8px;
  top: 0;
  transition: opacity 180ms ease;
}

.project-button:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08)),
    rgba(12, 16, 22, 0.88);
  border-color: rgba(40, 233, 255, 0.48);
  color: #ffffff;
  transform: translateY(-2px);
}

.project-button:hover::before {
  opacity: 1;
}

.icon,
.case-icon,
.arch-icon,
.release-mark {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.hero-console {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(8, 11, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 6px auto 0;
  max-width: 1180px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
  backdrop-filter: blur(24px);
  width: 100%;
}

.hero-console::before {
  background:
    linear-gradient(90deg, transparent, rgba(40, 233, 255, 0.34), transparent),
    linear-gradient(90deg, transparent, rgba(255, 76, 145, 0.22), transparent);
  content: "";
  height: 130px;
  left: 0;
  opacity: 0.44;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-120%);
  animation: console-scan 6.5s ease-in-out infinite;
}

.hero-console::after {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.console-header {
  align-items: center;
  color: #d8e4f7;
  display: flex;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  gap: 12px;
  justify-content: space-between;
  min-height: 32px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.console-header span {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.console-header span::before {
  background: var(--lime);
  content: "";
  height: 7px;
  width: 7px;
}

.console-overview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 233, 0.98)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  margin-top: 14px;
  overflow: hidden;
  padding: 8px;
  position: relative;
  z-index: 1;
}

.console-overview::before {
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--rose));
  content: "";
  height: 3px;
  left: 0;
  position: relative;
  display: block;
  margin: -8px -8px 8px;
  width: calc(100% + 16px);
}

.console-overview img {
  border-radius: 4px;
  width: 100%;
}

.signal-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.signal-strip article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 96px;
  padding: 15px;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.12;
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.32;
  margin-top: 8px;
}

.section-band {
  padding: 92px 0;
  position: relative;
}

.section-band::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 50%;
  max-width: 1240px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 56px);
}

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

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

.eyebrow {
  align-items: center;
  color: var(--lime);
  display: inline-flex;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 10px;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  background: currentColor;
  content: "";
  height: 2px;
  width: 22px;
}

.section-heading h2 {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 3.65rem;
  font-weight: 900;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

.use-case-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.use-case-grid article {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(14, 18, 25, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: grid;
  gap: 4px 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 92px;
  padding: 16px;
  backdrop-filter: blur(18px);
}

.case-icon {
  background: rgba(40, 233, 255, 0.12);
  border: 1px solid rgba(40, 233, 255, 0.28);
  border-radius: 8px;
  color: var(--cyan);
  grid-row: span 2;
  height: 42px;
  width: 42px;
}

.use-case-grid strong,
.use-case-grid span:not(.case-icon) {
  display: block;
}

.use-case-grid strong {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.16;
}

.use-case-grid span:not(.case-icon) {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.core-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 28px;
}

.concept-panel {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.motivation-panel {
  background:
    linear-gradient(145deg, rgba(40, 233, 255, 0.13), rgba(255, 255, 255, 0.045) 38%, rgba(166, 255, 95, 0.055)),
    rgba(10, 15, 20, 0.78);
  border: 1px solid rgba(40, 233, 255, 0.26);
}

.contribution-panel {
  background:
    linear-gradient(145deg, rgba(255, 76, 145, 0.13), rgba(255, 255, 255, 0.045) 38%, rgba(255, 191, 77, 0.065)),
    rgba(12, 13, 20, 0.80);
  border: 1px solid rgba(255, 76, 145, 0.26);
}

.concept-panel::before {
  background: linear-gradient(90deg, var(--cyan), transparent 48%, var(--rose));
  content: "";
  height: 2px;
  left: 24px;
  opacity: 0.68;
  position: absolute;
  right: 24px;
  top: 0;
}

.panel-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.panel-heading span {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--lime);
  display: inline-flex;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 42px;
}

.panel-heading h3 {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

.concept-list {
  display: grid;
  flex: 1;
  gap: 0;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.concept-list div,
.contribution-grid div {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 0;
}

.concept-list div:first-child,
.contribution-grid div:nth-child(-n + 2) {
  border-top: 0;
}

.concept-list strong,
.contribution-grid strong {
  color: #ffffff;
  display: block;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.contribution-grid strong {
  align-items: center;
  display: flex;
  gap: 9px;
}

.contribution-grid strong::before {
  display: none;
}

.contribution-icon {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(40, 233, 255, 0.22), rgba(166, 255, 95, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(40, 233, 255, 0.28);
  border-radius: 8px;
  color: var(--cyan);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.contribution-icon svg,
.contribution-icon i {
  display: block;
}

.contribution-grid div:nth-child(2) .contribution-icon {
  background:
    linear-gradient(135deg, rgba(166, 255, 95, 0.20), rgba(255, 191, 77, 0.12)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(166, 255, 95, 0.30);
  color: var(--lime);
}

.contribution-grid div:nth-child(3) .contribution-icon {
  background:
    linear-gradient(135deg, rgba(255, 191, 77, 0.22), rgba(255, 76, 145, 0.12)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 191, 77, 0.32);
  color: var(--amber);
}

.contribution-grid div:nth-child(4) .contribution-icon {
  background:
    linear-gradient(135deg, rgba(255, 76, 145, 0.20), rgba(40, 233, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 76, 145, 0.30);
  color: var(--rose);
}

.concept-list p,
.contribution-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 7px 0 0;
}

.contribution-grid {
  display: grid;
  flex: 1;
  gap: 0 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.method-band,
.quantitative-band,
.release-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 62%),
    rgba(255, 255, 255, 0.018);
}

.paper-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 233, 0.98)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  margin: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.paper-shell::before {
  background:
    linear-gradient(90deg, rgba(40, 233, 255, 0.64), rgba(166, 255, 95, 0.42), rgba(255, 191, 77, 0.48), rgba(255, 76, 145, 0.58));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.paper-shell img {
  border-radius: 4px;
  width: 100%;
}

.paper-shell figcaption {
  color: #30343b;
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 12px 6px 2px;
}

.workflow-shell {
  padding: 12px;
}

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

.pipeline-grid article,
.architecture-card,
.recognition-stats article,
.release-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(14, 18, 25, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(18px);
}

.pipeline-grid article {
  min-height: 178px;
  padding: 22px;
}

.pipeline-grid article::before,
.architecture-card::before,
.recognition-stats article::before,
.release-panel::before {
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--rose));
  content: "";
  height: 2px;
  left: 0;
  opacity: 0.72;
  position: absolute;
  right: 0;
  top: 0;
}

.pipeline-grid h3,
.architecture-card h3 {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.pipeline-grid p,
.architecture-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
  margin: 11px 0 0;
}

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

.architecture-card {
  min-height: 244px;
  padding: 22px;
}

.arch-icon,
.release-mark {
  background: rgba(40, 233, 255, 0.11);
  border: 1px solid rgba(40, 233, 255, 0.30);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 1.1rem;
  height: 46px;
  margin-bottom: 18px;
  width: 46px;
}

.gallery {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(8, 11, 16, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 14px;
  backdrop-filter: blur(24px);
}

.gallery-stage {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 238, 0.98)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  padding: 6px;
  position: relative;
}

.gallery-stage img {
  border-radius: 4px;
  width: 100%;
}

.gallery.is-switching .gallery-stage img {
  animation: image-switch 320ms ease both;
}

.gallery-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #10141b;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  height: 42px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 42px;
  z-index: 2;
  backdrop-filter: blur(14px);
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.78);
  color: #000000;
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-info {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 4px 4px;
}

.gallery-kicker {
  color: var(--lime);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.gallery-info h3 {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

.gallery-info p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 8px 0 0;
  max-width: 680px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.gallery-tabs button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  min-height: 38px;
  padding: 10px 12px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gallery-tabs button:hover,
.gallery-tabs button.is-active {
  background: rgba(40, 233, 255, 0.13);
  border-color: rgba(40, 233, 255, 0.42);
  color: #ffffff;
}

.metrics-layout {
  display: block;
}

.metrics-table {
  align-self: start;
}

.recognition-stats span {
  color: var(--lime);
  display: block;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.recognition-stats strong {
  color: #ffffff;
  display: block;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.05;
}

.recognition-stats p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 10px 0 0;
}

.recognition-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 270px;
}

.recognition-table {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.recognition-table img {
  flex: 1;
  object-fit: contain;
}

.recognition-stats {
  display: grid;
  gap: 12px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.recognition-stats article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 22px;
}

.recognition-stats strong {
  font-size: 3rem;
}

.release-panel {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  padding: 26px;
}

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

.release-copy h3 {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.12;
  margin: 0;
}

.release-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
  margin: 14px 0 0;
  max-width: 620px;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.release-actions a {
  align-items: center;
  border: 1px solid rgba(40, 233, 255, 0.34);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
  line-height: 1;
  min-height: 40px;
  padding: 11px 13px;
  text-decoration: none;
}

.release-actions a:hover {
  background: rgba(40, 233, 255, 0.12);
}

.release-terminal {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.terminal-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--lime);
  display: flex;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 900;
  justify-content: space-between;
  line-height: 1;
  min-height: 42px;
  padding: 0 14px;
  text-transform: uppercase;
}

.terminal-header span:last-child {
  color: var(--muted);
}

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

.weight-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(12, 16, 22, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 128px;
  padding: 15px;
}

.weight-grid span,
.weight-grid strong,
.weight-grid p {
  display: block;
}

.weight-grid span {
  color: var(--lime);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.weight-grid strong {
  color: #ffffff;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 18px;
}

.weight-grid p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
  margin: 8px 0 0;
}

.release-note {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--muted);
  display: flex;
  font-size: 0.84rem;
  gap: 10px;
  line-height: 1.45;
  padding: 13px 14px;
}

.release-note .icon {
  color: var(--cyan);
  flex: 0 0 auto;
}

.citation-box {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(8, 11, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1040px;
  padding: 18px;
  backdrop-filter: blur(22px);
}

.citation-box button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Google Sans", "Noto Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 8px;
  line-height: 1;
  min-height: 40px;
  padding: 11px 13px;
  transition: background 180ms ease, border-color 180ms ease;
}

.citation-box button:hover,
.citation-box button.is-copied {
  background: rgba(40, 233, 255, 0.12);
  border-color: rgba(40, 233, 255, 0.42);
}

.citation-box pre {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #dff9ff;
  font-size: 0.86rem;
  line-height: 1.62;
  margin: 14px 0 0;
  overflow-x: auto;
  padding: 16px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

main {
  position: relative;
}

main::before {
  background:
    linear-gradient(90deg, transparent calc(var(--pointer-x) - 1px), rgba(40, 233, 255, 0.13) var(--pointer-x), transparent calc(var(--pointer-x) + 1px)),
    linear-gradient(180deg, transparent calc(var(--pointer-y) - 1px), rgba(255, 76, 145, 0.10) var(--pointer-y), transparent calc(var(--pointer-y) + 1px)),
    repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(166, 255, 95, 0.045) 120px, transparent 121px),
    repeating-linear-gradient(0deg, transparent 0, transparent 119px, rgba(40, 233, 255, 0.040) 120px, transparent 121px);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

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

.topbar {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(13, 18, 26, 0.88) 48%, rgba(5, 6, 7, 0.94)),
    rgba(5, 6, 7, 0.90);
  height: 68px;
}

.topbar-brand {
  font-size: 1.05rem;
  gap: 1px;
  text-shadow: 0 0 18px rgba(40, 233, 255, 0.32);
}

.topbar-links a {
  overflow: hidden;
  position: relative;
}

.topbar-links a::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  bottom: 0;
  content: "";
  height: 100%;
  left: -80%;
  position: absolute;
  top: 0;
  transform: skewX(-24deg);
  transition: left 260ms ease;
  width: 50%;
}

.topbar-links a:hover::after,
.topbar-links a.is-active::after {
  left: 130%;
}

.hero-section {
  isolation: isolate;
  min-height: 0;
  padding-bottom: 82px;
}

.hero-section::before {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.20), rgba(5, 6, 7, 0.88) 78%),
    linear-gradient(90deg, rgba(40, 233, 255, 0.24), transparent 26%, rgba(255, 76, 145, 0.18) 78%, transparent),
    url("../images/IVF2.png") center 24% / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 0 92%);
  content: "";
  inset: 0 0 auto;
  height: 540px;
  opacity: 0.30;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero-section::after {
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(40, 233, 255, 0.34) 40.1%, transparent 40.45% 66%, rgba(255, 191, 77, 0.24) 66.1%, transparent 66.45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0, rgba(255, 255, 255, 0.10) 1px, transparent 1px, transparent 42px);
  content: "";
  inset: 70px 0 auto;
  height: 360px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-radar {
  inset: 84px 0 auto;
  height: 420px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-radar span {
  background:
    repeating-linear-gradient(90deg, rgba(40, 233, 255, 0.0) 0, rgba(40, 233, 255, 0.0) 30px, rgba(40, 233, 255, 0.12) 31px, rgba(40, 233, 255, 0.0) 34px),
    linear-gradient(90deg, transparent, rgba(40, 233, 255, 0.16), rgba(255, 76, 145, 0.12), transparent);
  border-top: 1px solid rgba(40, 233, 255, 0.26);
  height: 86px;
  left: -12%;
  opacity: 0.28;
  position: absolute;
  right: -12%;
  transform: skewX(-14deg);
  animation: radar-drift 12s ease-in-out infinite alternate;
}

.hero-radar span:nth-child(1) {
  top: 18px;
}

.hero-radar span:nth-child(2) {
  top: 168px;
  animation-delay: -4s;
  border-color: rgba(166, 255, 95, 0.22);
}

.hero-radar span:nth-child(3) {
  top: 304px;
  animation-delay: -8s;
  border-color: rgba(255, 191, 77, 0.22);
}

.venue-label {
  box-shadow:
    0 0 0 1px rgba(40, 233, 255, 0.08),
    0 18px 52px rgba(0, 0, 0, 0.24);
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.hero-copy h1 {
  background-size: 260% 100%;
  display: inline-block;
  font-size: 9.2rem;
  letter-spacing: 0;
  position: relative;
  animation: title-shimmer 9s ease-in-out infinite alternate;
}

.hero-copy h1::after {
  -webkit-text-stroke: 1px rgba(40, 233, 255, 0.42);
  color: transparent;
  content: "EMMA";
  inset: 0;
  opacity: 0.42;
  position: absolute;
  text-shadow: 0 0 28px rgba(255, 76, 145, 0.28);
  transform: translate(9px, 7px);
}

.hero-subtitle {
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.12);
}

.hero-lede {
  color: #d3dcea;
}

.project-button {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.project-button::after {
  background: linear-gradient(100deg, transparent, rgba(40, 233, 255, 0.20), rgba(255, 255, 255, 0.12), transparent);
  content: "";
  inset: 0;
  left: -120%;
  position: absolute;
  transform: skewX(-20deg);
  transition: left 300ms ease;
  width: 80%;
}

.project-button .icon,
.project-button span:last-child {
  position: relative;
  z-index: 1;
}

.project-button:hover::after {
  left: 135%;
}

.hero-console {
  border-color: rgba(40, 233, 255, 0.26);
  box-shadow:
    var(--shadow-strong),
    0 0 0 1px rgba(40, 233, 255, 0.08),
    0 0 80px rgba(40, 233, 255, 0.10);
  max-width: 1260px;
}

.console-hud {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.console-hud span {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #dce8f8;
  display: inline-flex;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 8px;
  line-height: 1;
  min-height: 40px;
  padding: 11px 12px;
  text-transform: uppercase;
}

.console-hud span svg {
  color: var(--cyan);
  animation: hud-blink 2.6s ease-in-out infinite;
}

.console-hud span:nth-child(2) svg {
  color: var(--lime);
  animation-delay: -0.8s;
}

.console-hud span:nth-child(3) svg {
  color: var(--amber);
  animation-delay: -1.6s;
}

.console-overview {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.console-overview::after {
  background: linear-gradient(90deg, transparent, rgba(40, 233, 255, 0.32), rgba(255, 191, 77, 0.18), transparent);
  content: "";
  height: 100%;
  left: -80%;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 44%;
  animation: stage-scan 5.2s ease-in-out infinite;
}

.signal-strip article,
.use-case-grid article,
.concept-panel,
.pipeline-grid article,
.architecture-card,
.gallery,
.paper-shell,
.recognition-stats article,
.release-panel,
.citation-box {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.signal-strip article:hover,
.use-case-grid article:hover,
.concept-panel:hover,
.pipeline-grid article:hover,
.architecture-card:hover,
.gallery:hover,
.paper-shell:hover,
.recognition-stats article:hover,
.release-panel:hover,
.citation-box:hover {
  border-color: rgba(40, 233, 255, 0.36);
  box-shadow:
    var(--shadow-strong),
    0 0 0 1px rgba(40, 233, 255, 0.08);
  transform: translateY(-4px);
}

.section-band {
  overflow: hidden;
}

.section-band::after {
  background:
    linear-gradient(90deg, transparent, rgba(40, 233, 255, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.0) 0, rgba(255, 255, 255, 0.0) 31px, rgba(255, 255, 255, 0.055) 32px, rgba(255, 255, 255, 0.0) 33px);
  bottom: auto;
  content: "";
  height: 1px;
  left: 50%;
  max-width: 1180px;
  opacity: 0.46;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 56px);
}

.section-heading h2 {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.paper-shell {
  border-color: rgba(255, 255, 255, 0.46);
}

.paper-shell img,
.console-overview img,
.gallery-stage img {
  filter: saturate(1.05) contrast(1.03);
}

.pipeline-grid article::after,
.architecture-card::after,
.recognition-stats article::after {
  background: linear-gradient(135deg, rgba(40, 233, 255, 0.12), transparent 34%, rgba(255, 76, 145, 0.08));
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease;
}

.pipeline-grid article:hover::after,
.architecture-card:hover::after,
.recognition-stats article:hover::after {
  opacity: 1;
}

.gallery {
  border-color: rgba(40, 233, 255, 0.24);
  padding: 16px;
  position: relative;
}

.gallery::before {
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--rose));
  content: "";
  height: 3px;
  left: 16px;
  opacity: 0.78;
  position: absolute;
  right: 16px;
  top: 0;
}

.gallery-stage {
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.34);
  min-height: 340px;
}

.gallery-stage::before {
  background:
    linear-gradient(90deg, transparent, rgba(40, 233, 255, 0.20), rgba(255, 255, 255, 0.16), transparent);
  content: "";
  height: 100%;
  left: -70%;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 46%;
  z-index: 1;
  animation: stage-scan 6.2s ease-in-out infinite;
}

.gallery-arrow {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.gallery-tabs button {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.gallery-tabs button.is-active {
  box-shadow:
    inset 0 0 0 1px rgba(40, 233, 255, 0.16),
    0 10px 26px rgba(40, 233, 255, 0.08);
}

.recognition-stats strong {
  background: linear-gradient(90deg, #ffffff, var(--cyan) 38%, var(--lime) 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.release-actions a {
  background: rgba(40, 233, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.release-actions a:hover {
  border-color: rgba(166, 255, 95, 0.38);
  transform: translateY(-2px);
}

.citation-box pre {
  box-shadow: inset 0 0 0 1px rgba(40, 233, 255, 0.04);
}

@media (max-width: 1180px) {
  .hero-copy {
    max-width: 900px;
  }

  .hero-copy h1 {
    font-size: 8rem;
  }

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

  .release-panel {
    grid-template-columns: 1fr;
  }

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

  .recognition-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    height: auto;
    padding: 12px 16px;
  }

  .topbar-links {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-section {
    min-height: 0;
    padding: 54px 18px 54px;
  }

  .hero-section::before {
    height: 390px;
    opacity: 0.22;
  }

  .hero-section::after {
    opacity: 0.12;
  }

  .hero-radar {
    display: none;
  }

  main::before {
    opacity: 0.24;
  }

  .container {
    padding: 0 18px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: 5.6rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .console-hud {
    grid-template-columns: 1fr;
  }

  .affiliation-grid,
  .core-grid,
  .use-case-grid,
  .pipeline-grid,
  .architecture-grid {
    grid-template-columns: 1fr;
  }

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

  .contribution-grid div:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .section-band {
    padding: 64px 0;
  }

  .section-heading h2 {
    font-size: 2.45rem;
  }

  .hero-console {
    min-height: 0;
  }

  .affiliation-grid {
    text-align: left;
  }

  .affiliation-grid span {
    white-space: normal;
  }

  .signal-strip,
  .recognition-stats {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-info {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    min-height: 220px;
  }

  .gallery-tabs {
    justify-content: flex-start;
  }

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

@media (max-width: 540px) {
  .topbar-links a {
    font-size: 0.78rem;
    min-height: 34px;
    padding: 9px 10px;
  }

  .hero-copy h1 {
    font-size: 4.35rem;
  }

  .hero-subtitle {
    font-size: 1.42rem;
  }

  .hero-copy h1::after {
    transform: translate(5px, 4px);
  }

  .hero-lede,
  .section-lede {
    font-size: 0.98rem;
  }

  .console-hud span {
    font-size: 0.68rem;
    min-height: 36px;
    padding: 9px 10px;
  }

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

  .project-button {
    min-width: 0;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .gallery-stage {
    min-height: 150px;
  }

  .gallery-arrow {
    height: 36px;
    width: 36px;
  }

  .paper-shell {
    padding: 6px;
  }

  .paper-shell figcaption {
    font-size: 0.82rem;
  }
}

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

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