/* ============================================================
   Lucas Couto: personal landing page
   Concept: computer-vision annotation tool
   ============================================================ */

/* ---------- Self-hosted variable fonts (latin subset) ---------- */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/space-grotesk-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("../assets/fonts/jetbrains-mono-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0e14;
  --bg-raised: #0f141d;
  --bg-chip: rgba(34, 197, 94, 0.08);
  --grid-line: rgba(139, 152, 169, 0.06);
  --border: #1c2534;
  --text: #e6edf3;
  --text-dim: #8b98a9;
  --accent: #22c55e;
  --accent-bright: #4ade80;
  --accent-dim: rgba(34, 197, 94, 0.12);

  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-body: "Inter", sans-serif;

  --maxw: 1080px;
  --pad-x: 24px;
  --section-gap: clamp(96px, 12vw, 160px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

a { color: var(--accent-bright); }

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--accent); color: var(--bg); }

.mono { font-family: var(--font-mono); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Shared pieces ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.section {
  max-width: var(--maxw);
  margin: var(--section-gap) auto 0;
  padding: 0 var(--pad-x);
}

/* Corner brackets around section titles */
.section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  padding: 10px 18px;
  margin-bottom: 40px;
}
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--accent);
}
.section-title::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.section-title::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn:hover { border-color: var(--accent); color: var(--accent-bright); }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--bg);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 16px;
}
.chips li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-bright);
  background: var(--bg-chip);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 3px;
  padding: 3px 10px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.brand::before { content: "["; color: var(--accent); }
.brand::after  { content: "]"; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent-bright); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-actions .btn { padding: 6px 14px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 4px 2px;
  font: inherit;
  color: var(--text-dim);
  cursor: pointer;
}
.lang-toggle button:hover { color: var(--accent-bright); }
.lang-toggle button[aria-pressed="true"] {
  color: var(--accent);
  font-weight: 600;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--pad-x) 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 10px 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .lang-toggle { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px var(--pad-x) 40px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-name {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-role {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--accent-bright);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 34em;
  margin-bottom: 32px;
}

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

/* Photo + bounding boxes */
.hero-photo {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 380px;
  justify-self: end;
}
.hero-photo img {
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(1.02);
}

.bbox {
  position: absolute;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.15);
  opacity: 0;
  transform: scale(1.06);
  animation: bbox-draw 0.45s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
.bbox::before, .bbox::after,
.bbox .bbox-label::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 2.5px solid var(--accent-bright);
}
.bbox::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.bbox::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.bbox-1 { top: 4%;  left: 6%;  width: 88%; height: 92%; animation-delay: 0.4s; }
.bbox-2 { top: 8%;  left: 26%; width: 48%; height: 34%; animation-delay: 1.1s; }
.bbox-3 { top: 46%; left: 24%; width: 52%; height: 24%; animation-delay: 1.8s; }

.bbox-label {
  position: absolute;
  top: 0;
  left: -1.5px;
  transform: translateY(-100%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 2px 8px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  animation: label-type 0.5s steps(14, end) forwards;
}
.bbox-label b { font-weight: 400; opacity: 0.75; }
.bbox-1 .bbox-label { animation-delay: 0.75s; }
.bbox-2 .bbox-label { animation-delay: 1.45s; }
.bbox-3 .bbox-label { animation-delay: 2.15s; }
.bbox-label::before { display: none; }

@keyframes bbox-draw {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes label-type {
  from { max-width: 0; }
  to   { max-width: 20ch; }
}

/* Hero text entrance */
.hero-text > * {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.55s ease forwards;
}
.hero-text .eyebrow    { animation-delay: 0.05s; }
.hero-text .hero-name  { animation-delay: 0.15s; }
.hero-text .hero-role  { animation-delay: 0.28s; }
.hero-text .hero-sub   { animation-delay: 0.4s; }
.hero-text .hero-ctas  { animation-delay: 0.55s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Crosshair (desktop only, JS-driven) */
.hero-crosshair { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; }
.hero:hover .hero-crosshair { opacity: 1; }
.hero-crosshair .ch-x,
.hero-crosshair .ch-y {
  position: absolute;
  background: rgba(34, 197, 94, 0.14);
}
.hero-crosshair .ch-x { left: 0; right: 0; height: 1px; top: 0; }
.hero-crosshair .ch-y { top: 0; bottom: 0; width: 1px; left: 0; }
@media (hover: none) { .hero-crosshair { display: none; } }

/* ---------- About ---------- */
.about {
  max-width: var(--maxw);
  margin: var(--section-gap) auto 0;
  padding: 0 var(--pad-x);
}
.about-body {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.6;
  max-width: 44em;
  color: var(--text);
}

/* ---------- Highlights (HUD) ---------- */
.highlights {
  max-width: var(--maxw);
  margin: var(--section-gap) auto 0;
  padding: 0 var(--pad-x);
}
.hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
}
.hud-item {
  background: var(--bg-raised);
  padding: 28px 24px;
}
.hud-item dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.hud-item dt {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- Experience timeline ---------- */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 11px; height: 11px;
  border: 2px solid var(--accent);
  background: var(--bg);
}

.job-head h3 { font-size: 1.25rem; margin-bottom: 4px; }
.job-company { color: var(--text-dim); font-weight: 500; }
.job-period {
  font-size: 0.8rem;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.job-bullets {
  list-style: none;
  color: var(--text-dim);
}
.job-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.job-bullets li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8em;
  top: 0.25em;
}

/* ---------- Research ---------- */
.research-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.research-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}
.research-card p { color: var(--text-dim); }
.research-card strong { color: var(--text); font-weight: 600; }

.degree-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
}
.degree-level {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.degree-name {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.degree-period {
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.degree-school {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.degree-advisor {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0;
}
.degree-details {
  border-left: 1px solid var(--border);
  padding-left: 32px;
}
.degree-details .kicker:first-child { margin-top: 0; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin: 28px 0 8px;
}

.research-project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.research-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.research-link:hover { border-bottom-color: var(--accent-bright); }

.academic-list {
  list-style: none;
  counter-reset: none;
}
.academic-list li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.academic-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.academic-head h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.academic-period {
  font-size: 0.72rem;
  color: var(--accent-bright);
  margin-bottom: 8px;
}
.academic-list p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 0;
}
.academic-list p.academic-advisor {
  font-size: 0.78rem;
  margin-top: 8px;
  font-style: italic;
}

.research-interests {
  margin-top: 24px;
}
.research-interests .chips { margin-top: 12px; }

.mono-heading {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.mono-heading::before { content: "▸ "; }

.track-list {
  list-style: none;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.track-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.track-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8em;
  top: 0.25em;
}

/* ---------- Projects ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card h3 { font-size: 1.1rem; margin: 18px 0 4px; }
.card-context {
  font-size: 0.75rem;
  color: var(--accent-bright);
  margin-bottom: 10px;
}
.card-body { color: var(--text-dim); font-size: 0.95rem; flex-grow: 1; }
.card .chips { margin-top: auto; padding-top: 8px; }

/* Annotation-style card cover */
.card-cover {
  position: relative;
  height: 150px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: rgba(10, 14, 20, 0.6);
  overflow: hidden;
}
.cover-box {
  position: absolute;
  top: var(--y); left: var(--x);
  width: var(--w); height: var(--h);
  border: 1.5px solid var(--accent);
}
.cover-box::before, .cover-box::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border: 2px solid var(--accent-bright);
}
.cover-box::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.cover-box::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.cover-box i {
  position: absolute;
  top: 0; left: -1.5px;
  transform: translateY(-100%);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  padding: 1px 6px;
  white-space: nowrap;
}

/* ---------- Publications ---------- */
.pub-list {
  display: grid;
  gap: 24px;
}
.pub-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 24px 28px;
}
.pub-venue {
  font-size: 0.78rem;
  color: var(--accent-bright);
  margin-bottom: 10px;
}
.pub-card h3 { font-size: 1.15rem; }
.pub-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.pub-card h3 a:hover { color: var(--accent-bright); }
.pub-authors { color: var(--text-dim); font-size: 0.88rem; }
.pub-summary { color: var(--text-dim); font-size: 0.95rem; }
.pub-doi { font-size: 0.75rem; color: var(--text-dim); margin: 0; }

/* ---------- Contact ---------- */
.contact { text-align: center; padding-bottom: var(--section-gap); }
.contact .section-title { margin-left: auto; margin-right: auto; }
.contact-lead { color: var(--text-dim); }
.contact-email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 3.4vw, 1.9rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin: 16px 0 28px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-email:hover { color: var(--accent-bright); border-bottom-color: var(--accent-bright); }
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-location { font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px var(--pad-x);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-footer p { margin: 0; font-size: 0.8rem; color: var(--text-dim); }

/* ---------- Scroll reveals (enabled only when JS runs) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .degree-card { grid-template-columns: 1fr; gap: 16px; }
  .degree-details {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: 100px; min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { justify-self: start; max-width: 320px; }

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

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 420px) {
  .hud { grid-template-columns: 1fr 1fr; }
  .hud-item { padding: 20px 16px; }
  .site-footer { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
  .bbox, .bbox-label, .hero-text > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    max-width: none !important;
  }
  .bbox { transform: scale(1) !important; }
  .bbox-label { max-width: 20ch !important; }
  html.js .reveal { opacity: 1; transform: none; }
  .hero-crosshair { display: none; }
}
