:root {
  --black: #000000;
  --elevated: #050816;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --white: #f5f5f5;
  --text: #cbd5e1;
  --muted: #64748b;
  --cyan: #00e5ff;
  --green: #7cff7c;
  --violet: #8b5cf6;
  --pink: #ff3df2;
  --acid: #dfff3f;
  --blue: #4f7cff;
  --ink: #070711;
  --amber: #facc15;
  --red: #ef4444;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --scroll-progress: 0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 229, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 82% 6%, rgba(139, 92, 246, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--black), #030405 38%, var(--black));
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.018), rgba(255,255,255,0.018) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: screen;
  opacity: 0.24;
  z-index: -1;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.boot-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-shell {
  width: min(520px, calc(100vw - 40px));
  border: 1px solid var(--line);
  background: rgba(5, 8, 22, 0.78);
  padding: 28px;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.16);
}

.boot-mark {
  width: 74px; 
  margin-bottom: 28px;
  color: var(--cyan);                                   
}

.boot-log {
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green);
}

.boot-log span {
  opacity: 0;
  animation: boot-line 0.25s ease forwards;
}

.boot-log span:nth-child(2) { animation-delay: 0.35s; }
.boot-log span:nth-child(3) { animation-delay: 0.7s; }
.boot-log span:nth-child(4) { animation-delay: 1.05s; color: var(--cyan); }

.boot-meter {
  height: 3px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.boot-meter span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  animation: boot-meter 1.8s 0.2s ease forwards;
}

@keyframes boot-line {
  to { opacity: 1; }
}

@keyframes boot-meter {
  to { width: 100%; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 38px;
  background: rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--white);
}

.brandmark {
  width: 38px;
  height: 38px;
  display: grid;      
}

.desktop-nav {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--cyan);
}

.header-action {
  justify-self: end;
  text-decoration: none;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 229, 255, 0.55);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(0, 229, 255, 0.06);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.mobile-nav {
  position: fixed;
  inset: 76px 16px auto;
  z-index: 9;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
}

.mobile-nav.open {
  display: grid;
  gap: 16px;
}

.drop-ticker {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 8;
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, var(--pink), var(--acid), var(--cyan), var(--blue));
  color: #070711;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.drop-ticker span {
  flex: 0 0 auto;
  padding-inline: 18px;
  animation: ticker-slide 18s linear infinite;
}

.scroll-progress {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  z-index: 8;
  height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--cyan), var(--pink));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
}

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-340px); }
}

.mobile-nav a {
  font-family: var(--mono);
  color: var(--text);
  padding: 10px;
  border: 1px solid var(--line);
}

.section-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 132px 0 58px;
  position: relative;
}

.hero-backdrop {
  position: absolute;
  inset: 88px -80px 56px;
  border: 1px solid rgba(0, 229, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent 34%),
    linear-gradient(315deg, rgba(139, 92, 246, 0.07), transparent 32%);
  clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 8% 100%, 0 91%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(124, 255, 124, 0.7);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(40px, 5.65vw, 72px);
  font-weight: 820;
}

.hero-lede {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: clamp(15px, 1.35vw, 18px);
}

.role-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 20px;
}

.role-stack span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
}

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

.button {
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0 22px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid var(--line-strong);
}

.button.primary {
  color: #001014;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.button:focus-visible,
.header-action:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.contact-links a:focus-visible,
#terminal-input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.signal-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.signal-grid div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.signal-grid strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.recruiter-pass {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: start;
  max-width: 760px;
  margin-top: 14px;
  padding: 15px 16px;
  border-left: 2px solid var(--cyan);
  background: rgba(0, 229, 255, 0.055);
}

.recruiter-pass span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.recruiter-pass p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: center;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.32);
  background: var(--surface);
  box-shadow: var(--shadow), 0 0 45px rgba(0, 229, 255, 0.11);
  clip-path: polygon(0 0, 88% 0, 100% 10%, 100% 100%, 12% 100%, 0 90%);
}

.portrait-frame img {
  width: 100%;
  height: min(58vh, 540px);
  min-height: 390px;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.18), transparent);
  height: 26%;
  animation: scan 4.2s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  35%, 60% { opacity: 1; }
  80% { transform: translateY(390%); opacity: 0; }
}

.system-panel {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(310px, 82%);
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
}

.panel-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.system-panel dl {
  margin: 0;
  padding: 12px 14px 16px;
  display: grid;
  gap: 10px;
}

.system-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.system-panel dt,
.system-panel dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
}

.system-panel dt {
  color: var(--muted);
}

.system-panel dd {
  color: var(--white);
  text-align: right;
}

.brand-strip {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.08), rgba(139, 92, 246, 0.06), rgba(255, 255, 255, 0.03));
  font-family: var(--mono);
  color: var(--text);
}

.brand-strip span {
  color: var(--cyan);
  font-size: 12px;
  white-space: nowrap;
}

.brand-strip img {
  width: 112px;
}

.systems,
.proof,
.projects,
.research,
.contact {
  padding: 94px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 760;
}

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

.system-card,
.proof-row,
.project-card,
.research-card,
.contact-card,
.terminal {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.system-card {
  min-height: 278px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.system-card::before,
.project-card::before,
.research-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.11), transparent 38%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.system-card:hover::before,
.project-card:hover::before,
.research-card:hover::before {
  opacity: 1;
}

.card-index {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
}

.system-card h3,
.proof-row h3,
.project-card h3,
.research-card h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

.system-card h3 {
  font-size: 21px;
}

.system-card p,
.proof-row p,
.project-card p,
.research-card p,
.contact-card p {
  color: var(--text);
}

.system-card p {
  margin: 14px 0 0;
  font-size: 14px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.proof-image {
  position: sticky;
  top: 98px;
  height: fit-content;
  overflow: hidden;
  border: 1px solid var(--line);
}

.proof-image img {
  width: 100%;
  height: 690px;
  object-fit: cover;
}

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

.signal-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -10px 0 24px;
}

.signal-matrix div {
  padding: 16px;
  border: 1px solid rgba(0, 229, 255, 0.16);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.signal-matrix span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.signal-matrix strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.proof-row {
  padding: 26px;
}

.proof-row span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-row h3 {
  font-size: clamp(22px, 2.6vw, 34px);
}

.proof-row p {
  margin: 14px 0 0;
}

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

.project-proofbar {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 12px;
  margin: -14px 0 24px;
}

.project-proofbar div {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.project-proofbar span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.project-proofbar strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.3;
}

.project-note {
  max-width: 780px;
  margin: -8px 0 24px;
  color: var(--text);
  font-size: 14px;
}

.project-card {
  min-height: 404px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-card.featured {
  grid-column: span 2;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.project-meta span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.045);
  font-family: var(--mono);
  font-size: 11px;
}

.project-card h3 {
  font-size: clamp(24px, 3vw, 40px);
}

.build-map {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.build-map span {
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.build-map i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--acid));
  position: relative;
}

.build-map i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--acid);
  border-right: 2px solid var(--acid);
  transform: translateY(-50%) rotate(45deg);
}

.project-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.project-kpis span {
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
}

.project-card p {
  margin: 14px 0 0;
}

.impact-line {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(124, 255, 124, 0.18);
  background: rgba(124, 255, 124, 0.045);
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.impact-line strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.project-card ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.project-card li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.project-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: var(--cyan);
}

.project-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}

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

.project-actions a {
  margin-top: 0;
  padding-top: 0;
}

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

.research-card {
  position: relative;
  padding: 30px;
  min-height: 336px;
  border-color: rgba(139, 92, 246, 0.26);
}

.research-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 12px;
}

.research-card h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.research-card p {
  margin: 18px 0 0;
}

.visual-band {
  width: min(1180px, calc(100vw - 40px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 12px;
}

.visual-band img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.82) contrast(1.08);
}

.visual-band img:first-child {
  object-position: center top;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.terminal {
  min-height: 390px;
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid var(--line);
}

.terminal-top span {
  width: 10px;
  height: 10px;
}

.terminal-top span:nth-child(1) { background: var(--red); }
.terminal-top span:nth-child(2) { background: var(--amber); }
.terminal-top span:nth-child(3) { background: var(--green); }

.terminal-top strong {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
}

.terminal-body {
  padding: 22px;
  font-family: var(--mono);
  color: var(--text);
  font-size: 13px;
}

.terminal-body p {
  margin: 0 0 10px;
}

.terminal-body b {
  color: var(--cyan);
  font-weight: 500;
}

.terminal-output {
  color: var(--green);
}

#terminal-input {
  width: min(360px, 54vw);
  color: var(--green);
  background: transparent;
  border: 0;
  outline: 0;
  caret-color: var(--green);
}

.contact-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.contactmk        {
  width: 82px; 
  margin-bottom: 22px;
}

.contact-card p {
  margin: 0 0 24px;
  font-size: 18px;
}

.contact-links {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  border-color: rgba(0, 229, 255, 0.62);
  color: var(--cyan);
}

.footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

@media (hover: hover) {
  .button,
  .header-action,
  .project-card,
  .system-card,
  .contact-links a {
    transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
  }

  .button:hover,
  .header-action:hover,
  .contact-links a:hover {
    transform: translateY(-2px);
  }

  .project-card:hover,
  .system-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.36);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 112px;
  }

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

  .portrait-frame img {
    height: 560px;
  }

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

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

  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .proof-image {
    position: relative;
    top: auto;
  }

  .proof-image img {
    height: 520px;
    object-position: center 28%;
  }

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

@media (max-width: 720px) {
  .section-shell,
  .brand-strip,
  .visual-band,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-backdrop {
    inset: 88px -14px 42px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .signal-grid,
  .systems-grid,
  .project-grid,
  .research-grid,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-column: auto;
  }

  .signal-grid div {
    min-height: 88px;
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .brand-strip span {
    white-space: normal;
  }

  .brand-strip img {
    width: 96px;
  }

  .portrait-frame img {
    height: 470px;
    min-height: 0;
  }

  .system-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .systems,
  .proof,
  .projects,
  .research,
  .contact {
    padding: 66px 0;
  }

  .proof-image img,
  .visual-band img {
    height: 340px;
  }

  .footer {
    flex-direction: column;
  }

  .recruiter-pass {
    grid-template-columns: 1fr;
  }
}

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

.brandmark,
.contactmk,
.boot-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.48);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(139, 92, 246, 0.08));
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 700;
  clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.14);
}

.brandmark {
  font-size: 12px;
  letter-spacing: 0;
}

.contactmk {
  height: 82px;
}

.boot-mark {
  height: 74px;
  font-size: 24px;
}

.availability-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: center;
  width: min(680px, 100%);
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(124, 255, 124, 0.28);
  background: linear-gradient(90deg, rgba(124, 255, 124, 0.08), rgba(0, 229, 255, 0.05));
  box-shadow: 0 0 28px rgba(124, 255, 124, 0.08);
}

.availability-card span {
  width: 9px;
  height: 9px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.availability-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.availability-card em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -12px 0 24px;
}

.evidence-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.032);
}

.evidence-strip strong {
  display: block;
  color: var(--cyan);
  font-size: 28px;
  line-height: 1;
}

.evidence-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.proof-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 229, 255, 0.045);
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
}

.project-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-card.featured {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.035) 42%, rgba(139, 92, 246, 0.055));
}

.hero h1 {
  max-width: 790px;
}

.button.primary {
  font-weight: 700;
}

@media (max-width: 720px) {
  .availability-card {
    grid-template-columns: auto 1fr;
    margin-top: 18px;
    padding: 12px 13px;
  }

  .availability-card strong {
    font-size: 12px;
  }

  .availability-card em {
    font-size: 10px;
  }

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

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.6vw, 42px);
  }

  .hero-lede {
    font-size: 14px;
    line-height: 1.62;
  }

  .signal-grid {
    margin-top: 18px;
  }

  .portrait-frame img {
    height: 410px;
  }
}

/* Gen Z visual layer */
.pointer-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 360px at var(--pointer-x) var(--pointer-y), rgba(255, 61, 242, 0.18), transparent 58%),
    radial-gradient(circle 250px at calc(var(--pointer-x) + 90px) calc(var(--pointer-y) + 60px), rgba(0, 229, 255, 0.12), transparent 62%);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

body {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 74px),
    linear-gradient(128deg, rgba(255, 61, 242, 0.18) 0 9%, transparent 9% 31%, rgba(223, 255, 63, 0.11) 31% 39%, transparent 39%),
    linear-gradient(214deg, transparent 0 52%, rgba(0, 229, 255, 0.13) 52% 62%, transparent 62%),
    linear-gradient(180deg, #05050b 0%, #090811 42%, #020204 100%);
}

body::before {
  background-image:
    linear-gradient(135deg, rgba(255, 61, 242, 0.14) 0 1px, transparent 1px 34px),
    linear-gradient(45deg, rgba(223, 255, 63, 0.08) 0 1px, transparent 1px 42px);
  background-size: 180px 180px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.boot-shell,
.site-header,
.mobile-nav,
.system-card,
.proof-row,
.project-card,
.research-card,
.contact-card,
.terminal,
.signal-grid div,
.signal-matrix div,
.mood-card {
  border-radius: 8px;
}

.site-header {
  height: 76px;
  background: rgba(5, 5, 11, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand {
  font-weight: 800;
  color: #ffffff;
}

.brandmark,
.contactmk,
.boot-mark {
  border: 2px solid #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--cyan) 52%, var(--acid));
  color: #080812;
  clip-path: none;
  box-shadow: 5px 5px 0 var(--pink), -4px -4px 0 rgba(223, 255, 63, 0.85);
}

.desktop-nav {
  gap: 10px;
}

.desktop-nav a {
  padding: 8px 11px;
  border: 1px solid transparent;
  color: #f7f7fb;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--acid);
}

.header-action,
.button {
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.25);
  font-weight: 800;
}

.header-action,
.button.primary {
  color: #080812;
  background: var(--acid);
  border-color: #ffffff;
  box-shadow: 5px 5px 0 var(--pink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.hero-backdrop {
  inset: 104px -44px 34px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(120deg, rgba(255, 61, 242, 0.12), transparent 28%),
    linear-gradient(290deg, rgba(223, 255, 63, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.018);
  clip-path: polygon(0 0, 97% 0, 100% 4%, 100% 100%, 3% 100%, 0 96%);
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  color: var(--acid);
}

.eyebrow span {
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 61, 242, 0.8);
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 38%, var(--acid) 56%, var(--cyan) 78%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 780px;
  color: #dde6f5;
}

.role-stack span,
.project-meta span,
.proof-tags span {
  border-color: rgba(255, 255, 255, 0.22);
  background: #10111c;
  color: #f8fbff;
  box-shadow: 3px 3px 0 rgba(255, 61, 242, 0.3);
}

.role-stack span:nth-child(2n),
.proof-tags span:nth-child(2n) {
  box-shadow: 3px 3px 0 rgba(0, 229, 255, 0.32);
}

.availability-card,
.recruiter-pass {
  border-radius: 8px;
  border: 1px solid rgba(223, 255, 63, 0.48);
  background: linear-gradient(90deg, rgba(223, 255, 63, 0.13), rgba(0, 229, 255, 0.06));
  box-shadow: 6px 6px 0 rgba(223, 255, 63, 0.12);
}

.recruiter-pass {
  border-left: 4px solid var(--pink);
}

.portrait-frame {
  border: 2px solid #ffffff;
  clip-path: none;
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--pink), -10px -10px 0 rgba(223, 255, 63, 0.78), var(--shadow);
  transform: rotate(1.2deg);
}

.portrait-frame img {
  filter: saturate(1.12) contrast(1.04);
}

.orbit-field {
  position: absolute;
  inset: 36px -10px 28px;
  z-index: 2;
  pointer-events: none;
  animation: orbit-tilt 9s ease-in-out infinite;
}

.orbit-field span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(7, 7, 17, 0.82);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(223, 255, 63, 0.2);
}

.orbit-field span:nth-child(1) {
  top: 8%;
  left: 4%;
  color: var(--acid);
}

.orbit-field span:nth-child(2) {
  top: 4%;
  right: 8%;
  color: var(--cyan);
}

.orbit-field span:nth-child(3) {
  right: 0;
  bottom: 23%;
  color: var(--pink);
}

.orbit-field span:nth-child(4) {
  left: 7%;
  bottom: 9%;
  color: var(--green);
}

@keyframes orbit-tilt {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50% { transform: rotate(1.4deg) translateY(-8px); }
}

.scan-line {
  opacity: 0.55;
  mix-blend-mode: screen;
}

.sticker-card {
  position: absolute;
  z-index: 3;
  max-width: 180px;
  padding: 10px 12px;
  border: 2px solid #070711;
  border-radius: 8px;
  background: var(--acid);
  color: #070711;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--pink);
}

.top-sticker {
  top: 28px;
  right: 18px;
  transform: rotate(5deg);
}

.side-sticker {
  left: -18px;
  bottom: 106px;
  background: var(--cyan);
  box-shadow: 6px 6px 0 var(--blue);
  transform: rotate(-4deg);
}

.system-panel {
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 17, 0.9);
}

.brand-strip {
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(255, 61, 242, 0.18), rgba(0, 229, 255, 0.1), rgba(223, 255, 63, 0.12));
}

.brand-strip span {
  color: var(--acid);
}

.signal-deck {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.signal-card {
  min-height: 180px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 12% 14%, rgba(255, 61, 242, 0.25), transparent 42%);
  box-shadow: 8px 8px 0 rgba(0, 229, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--acid), var(--cyan));
}

.signal-card:nth-child(2) {
  transform: translateY(22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 80% 12%, rgba(0, 229, 255, 0.26), transparent 42%);
}

.signal-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 18% 86%, rgba(223, 255, 63, 0.2), transparent 42%);
}

.signal-card:nth-child(4) {
  transform: translateY(22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 78% 82%, rgba(139, 92, 246, 0.25), transparent 42%);
}

.signal-card span {
  display: block;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 36px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.06;
}

.mood-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.mood-card {
  min-height: 128px;
  padding: 22px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.mood-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 61, 242, 0.2), rgba(255, 255, 255, 0.045));
}

.mood-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(255, 255, 255, 0.045));
}

.mood-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(223, 255, 63, 0.16), rgba(255, 255, 255, 0.045));
}

.mood-card span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.mood-card strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.system-card,
.proof-row,
.project-card,
.research-card,
.contact-card,
.terminal,
.signal-grid div,
.signal-matrix div,
.project-proofbar div {
  border: 2px solid rgba(255, 255, 255, 0.13);
  background: rgba(9, 9, 20, 0.78);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.system-card:nth-child(1),
.project-card:nth-child(2),
.research-card:nth-child(1) {
  border-color: rgba(255, 61, 242, 0.34);
}

.system-card:nth-child(2),
.project-card:nth-child(3),
.research-card:nth-child(2) {
  border-color: rgba(0, 229, 255, 0.34);
}

.system-card:nth-child(3),
.project-card:nth-child(4) {
  border-color: rgba(223, 255, 63, 0.34);
}

.card-index {
  margin-bottom: 42px;
  color: var(--acid);
  font-weight: 900;
}

.section-heading h2 {
  max-width: 920px;
  font-size: clamp(34px, 5.2vw, 66px);
}

.evidence-strip div {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.evidence-strip strong {
  color: var(--acid);
  font-size: clamp(34px, 5vw, 56px);
}

.signal-matrix div {
  min-height: 112px;
}

.project-proofbar div {
  min-height: 96px;
  border-radius: 8px;
}

.project-proofbar div:nth-child(1) {
  border-color: rgba(255, 61, 242, 0.34);
  background: linear-gradient(135deg, rgba(255, 61, 242, 0.15), rgba(9, 9, 20, 0.8));
}

.project-proofbar div:nth-child(2) {
  border-color: rgba(0, 229, 255, 0.34);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.13), rgba(9, 9, 20, 0.8));
}

.project-proofbar div:nth-child(3) {
  border-color: rgba(223, 255, 63, 0.34);
  background: linear-gradient(135deg, rgba(223, 255, 63, 0.12), rgba(9, 9, 20, 0.8));
}

.project-proofbar strong {
  color: #ffffff;
}

.project-note {
  padding: 14px 16px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.055);
}

.proof-image {
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(0, 229, 255, 0.22);
}

.proof-image img,
.visual-band img {
  filter: saturate(1.12) contrast(1.05);
}

.project-card {
  min-height: 440px;
  counter-increment: build-card;
  overflow: hidden;
}

.project-grid {
  counter-reset: build-card;
}

.project-card::after {
  content: "BUILD_" counter(build-card, decimal-leading-zero);
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--mono);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-kpis span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 3px 3px 0 rgba(223, 255, 63, 0.16);
}

.build-map {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 242, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.04);
}

.project-card.featured {
  background: linear-gradient(135deg, rgba(255, 61, 242, 0.17), rgba(0, 229, 255, 0.1) 48%, rgba(223, 255, 63, 0.13));
}

.project-card h3,
.research-card h3,
.proof-row h3 {
  color: #ffffff;
}

.impact-line {
  border-color: rgba(223, 255, 63, 0.34);
  background: rgba(223, 255, 63, 0.075);
}

.impact-line strong {
  color: var(--acid);
}

.project-card a,
.project-actions a {
  margin-top: auto;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #070711;
  background: var(--cyan);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--blue);
}

.project-actions a:nth-child(2) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 4px 4px 0 rgba(255, 61, 242, 0.7);
}

.project-actions a {
  margin-top: 0;
}

.visual-band {
  grid-template-columns: 1.1fr 0.8fr 1fr 0.8fr;
  gap: 14px;
  padding-block: 10px;
}

.visual-band img {
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.visual-band img:nth-child(2) {
  transform: translateY(28px);
}

.visual-band img:nth-child(3) {
  transform: translateY(-18px);
}

.terminal-top {
  background: linear-gradient(90deg, rgba(255, 61, 242, 0.18), rgba(0, 229, 255, 0.09));
}

.contact-links a {
  border-radius: 8px;
}

@media (hover: hover) {
  .button:hover,
  .header-action:hover,
  .contact-links a:hover,
  .project-card a:hover {
    transform: translate(-2px, -2px);
  }

  .project-card:hover,
  .system-card:hover,
  .mood-card:hover {
    transform: translateY(-5px) rotate(-0.4deg);
    border-color: rgba(223, 255, 63, 0.58);
  }
}

@media (max-width: 1040px) {
  .drop-ticker {
    top: 76px;
  }

  .scroll-progress {
    top: 110px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .mood-board {
    grid-template-columns: 1fr;
  }

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

  .signal-card,
  .signal-card:nth-child(2),
  .signal-card:nth-child(4) {
    transform: none;
  }

  .project-proofbar {
    grid-template-columns: 1fr;
  }

  .top-sticker {
    top: 14px;
    right: 10px;
  }

  .side-sticker {
    left: 12px;
    bottom: 120px;
  }
}

@media (max-width: 720px) {
  .drop-ticker {
    font-size: 10px;
  }

  .hero {
    padding-top: 126px;
    overflow: hidden;
  }

  .hero-backdrop {
    inset: 88px 0 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.4vw, 56px);
  }

  .build-map {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .build-map i {
    display: none;
  }

  .portrait-frame {
    transform: none;
    box-shadow: 7px 7px 0 var(--pink), -6px -6px 0 rgba(223, 255, 63, 0.76);
  }

  .sticker-card {
    position: relative;
    inset: auto;
    width: fit-content;
    margin-bottom: 12px;
    transform: none;
  }

  .side-sticker {
    margin-top: 12px;
    margin-bottom: 0;
  }

  .orbit-field {
    display: none;
  }

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

  .evidence-strip {
    grid-template-columns: 1fr;
  }

  .visual-band img:nth-child(2),
  .visual-band img:nth-child(3) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pointer-glow {
    display: none;
  }

  .drop-ticker span {
    animation: none;
  }

  .orbit-field {
    animation: none;
  }
}
