:root {
  --ink: #11110f;
  --ink-soft: #1a1a17;
  --paper: #ece9df;
  --paper-bright: #f5f2e9;
  --paper-deep: #d8d4c8;
  --orange: #ff4d18;
  --orange-dark: #d53a0d;
  --muted: #8d8a80;
  --line: rgba(17, 17, 15, 0.18);
  --line-light: rgba(236, 233, 223, 0.18);
  --display: "Syne", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  cursor: none;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body.modal-open,
body.modal-open a,
body.modal-open button {
  cursor: auto;
}

body.modal-open .cursor {
  display: none;
}

::selection {
  background: var(--orange);
  color: var(--paper-bright);
}

a,
button {
  color: inherit;
  cursor: none;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

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

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
}

.cursor {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 77, 24, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  mix-blend-mode: difference;
}

.cursor span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 64px;
  height: 64px;
  background: rgba(255, 77, 24, 0.25);
}

.boot-screen {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
  transition: transform 0.9s var(--ease), visibility 0.9s;
  animation: boot-away 0.9s 1.15s var(--ease) forwards;
}

.boot-screen.done {
  transform: translateY(-105%);
  visibility: hidden;
}

.boot-mark {
  font: 800 clamp(3rem, 8vw, 7rem) / 1 var(--display);
  letter-spacing: -0.08em;
}

.boot-mark span {
  margin-left: 0.18em;
  font: 400 0.18em var(--mono);
  letter-spacing: 0;
  color: var(--orange);
  vertical-align: top;
}

.boot-track {
  width: min(280px, 70vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.boot-track span {
  display: block;
  width: 0;
  height: 100%;
  animation: boot 1s 0.1s var(--ease) forwards;
  background: var(--orange);
}

.boot-screen p {
  margin: 0;
  font: 400 0.62rem var(--mono);
  letter-spacing: 0.17em;
  color: var(--muted);
}

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

@keyframes boot-away {
  to { transform: translateY(-105%); visibility: hidden; }
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 3.2vw;
  color: var(--paper);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.25s, transform 0.35s var(--ease);
}

.site-header.fixed {
  position: fixed;
  background: rgba(17, 17, 15, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.hidden {
  transform: translateY(-105%);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mark-box {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--orange);
  font: 800 0.86rem var(--display);
  letter-spacing: -0.06em;
}

.wordmark-text {
  font: 700 0.7rem/0.94 var(--display);
  letter-spacing: 0.055em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.desktop-nav a,
.theme-toggle {
  position: relative;
  font: 400 0.66rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.theme-icon {
  font-size: 1.1rem;
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--line-light);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 0.25s;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: 120px 7vw 40px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-105%);
  transition: transform 0.6s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 5px;
}

.mobile-menu a {
  padding: 16px 0;
  font: 700 clamp(2.2rem, 10vw, 4rem)/1 var(--display);
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu a span {
  margin-right: 12px;
  font: 400 0.62rem var(--mono);
  color: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 26vw);
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 7vh) 3.2vw 7vh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-art {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(17, 17, 15, 0.8) 38%, rgba(17, 17, 15, 0.1) 100%),
    url("assets/forensic-map.png") right center / cover no-repeat;
  transform: scale(1.035);
  transition: transform 0.2s linear;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(var(--line-light) 1px, transparent 1px), linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.scanline {
  position: absolute;
  z-index: 1;
  top: -10%;
  left: 0;
  width: 100%;
  height: 18%;
  opacity: 0.09;
  background: linear-gradient(transparent, var(--orange), transparent);
  animation: scan 7s linear infinite;
}

@keyframes scan {
  to { top: 110%; }
}

.hero-copy,
.hero-meta,
.scroll-cue {
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  padding-top: 2vh;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4vh;
  font: 400 0.66rem var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #b9b6ad;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 77, 24, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(255, 77, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 24, 0); }
}

.slash { color: var(--orange); }

.hero h1 {
  margin: 0 0 4vh;
  font: 800 clamp(5rem, 11.4vw, 11.5rem)/0.72 var(--display);
  letter-spacing: -0.09em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: 0.08em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 480px) 1fr;
  align-items: end;
  gap: 3vw;
  max-width: 72vw;
}

.hero-intro {
  margin: 0;
  color: #aaa79e;
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.hero-intro strong {
  color: var(--paper-bright);
  font-weight: 600;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 170px;
  padding: 15px 18px;
  border: 1px solid transparent;
  font: 500 0.67rem var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.25s, background 0.25s, border 0.25s;
}

.button span,
.text-link span {
  margin-left: 20px;
  font-size: 1rem;
}

.button-primary {
  color: var(--paper-bright);
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border-color: var(--line-light);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-meta {
  align-self: center;
  justify-self: end;
  width: min(310px, 100%);
}

.hero-card {
  padding: 10px;
  border: 1px solid var(--line-light);
  background: rgba(18, 18, 16, 0.62);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  padding: 4px 2px 10px;
  font: 400 0.53rem var(--mono);
  letter-spacing: 0.1em;
  color: #a7a49c;
}

.status-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59d986;
  box-shadow: 0 0 8px #59d986;
}

.avatar-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #22221f;
}

.avatar-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(16, 16, 15, 0.85)), repeating-linear-gradient(transparent 0 3px, rgba(0, 0, 0, 0.08) 3px 4px);
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.avatar-target {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 52%;
  border: 1px solid rgba(255, 77, 24, 0.45);
  transform: translate(-50%, -50%);
}

.avatar-target::before,
.avatar-target::after {
  position: absolute;
  content: "";
  background: var(--orange);
}

.avatar-target::before {
  top: 50%;
  left: -15%;
  width: 130%;
  height: 1px;
}

.avatar-target::after {
  top: -15%;
  left: 50%;
  width: 1px;
  height: 130%;
}

.identity-lines {
  display: grid;
  gap: 4px;
  padding: 12px 3px 4px;
  font: 400 0.53rem var(--mono);
  letter-spacing: 0.08em;
  color: #a7a49c;
}

.identity-lines strong {
  color: var(--paper);
  font: 600 0.72rem var(--body);
  letter-spacing: 0.03em;
}

.hero-coordinates {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font: 400 0.52rem var(--mono);
  color: #89867f;
}

.scroll-cue {
  position: absolute;
  bottom: 2.4vh;
  left: 3.2vw;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 400 0.52rem var(--mono);
  letter-spacing: 0.14em;
  color: #77746e;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--orange) 0 50%, rgba(255, 255, 255, 0.2) 50%);
}

.signal-strip {
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--orange);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font: 700 0.8rem var(--display);
  letter-spacing: 0.11em;
}

.ticker-track i {
  margin: 0 30px;
  font-style: normal;
  color: var(--ink);
}

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

.section-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-right: 5vw;
  padding-left: 5vw;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
  padding-top: clamp(100px, 14vw, 200px);
  padding-bottom: clamp(110px, 15vw, 220px);
}

.section-index,
.eyebrow {
  margin: 0;
  font: 400 0.62rem var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index {
  padding-top: 12px;
  color: #78756c;
}

.manifesto-copy > p:first-child {
  max-width: 1020px;
  margin: 0;
  font: 600 clamp(2.45rem, 5.3vw, 5.6rem)/1.01 var(--display);
  letter-spacing: -0.055em;
}

.highlight {
  color: var(--orange);
}

.manifesto-note {
  max-width: 560px;
  margin: 60px 0 0 auto;
  padding-left: 26px;
  color: #646159;
  font-size: 0.92rem;
  line-height: 1.65;
  border-left: 1px solid var(--orange);
}

.work,
.experience {
  padding-bottom: clamp(110px, 14vw, 200px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  margin-bottom: 22px;
  color: var(--orange);
}

.section-heading h2 {
  margin: 0;
  font: 700 clamp(3rem, 6.5vw, 6.3rem)/0.92 var(--display);
  letter-spacing: -0.065em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 3px auto;
  color: #68655e;
  font-size: 0.88rem;
  line-height: 1.65;
}

.feature-project {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(35px, 6vw, 90px);
  padding: clamp(70px, 9vw, 130px) 0 100px;
}

.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
  padding: 9%;
  overflow: hidden;
  background: var(--ink-soft);
}

.feature-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background: url("assets/forensic-map.png") center / cover;
  filter: grayscale(1);
}

.feature-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 62% 43%, rgba(255, 77, 24, 0.15), transparent 35%), linear-gradient(120deg, rgba(17, 17, 15, 0.2), rgba(17, 17, 15, 0.82));
}

.project-number {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 6px;
  color: rgba(255, 255, 255, 0.07);
  font: 800 9rem var(--display);
  letter-spacing: -0.1em;
}

.forensic-window {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
  color: #cac8c0;
  background: rgba(19, 20, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 13px;
  font: 400 0.5rem var(--mono);
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-bar span { display: flex; gap: 5px; }
.window-bar i { width: 6px; height: 6px; border-radius: 50%; background: #504e48; }
.window-bar i:first-child { background: var(--orange); }
.window-bar em { color: #57d984; font-style: normal; }

.window-content {
  display: grid;
  grid-template-columns: 125px 1fr;
  min-height: 330px;
}

.window-content aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 23px 12px;
  font: 400 0.51rem var(--mono);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.window-content aside .active { color: var(--orange); }

.case-map {
  position: relative;
  overflow: hidden;
  background-color: #181916;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-lines {
  position: absolute;
  inset: 10% 8%;
  opacity: 0.3;
  background: radial-gradient(ellipse at center, transparent 38%, var(--orange) 39% 39.4%, transparent 40%), radial-gradient(ellipse at 30% 45%, transparent 28%, #969187 29% 29.5%, transparent 31%);
  transform: rotate(-12deg) scale(1.3);
}

.map-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--orange);
}

.map-node::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: rotate(25deg);
  transform-origin: left;
}

.n1 { top: 25%; left: 32%; }
.n2 { top: 62%; left: 58%; }
.n3 { top: 41%; left: 78%; }
.n4 { top: 72%; left: 22%; }

.case-readout {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  padding: 13px;
  font: 400 0.5rem var(--mono);
  background: rgba(11, 11, 10, 0.88);
  border-left: 2px solid var(--orange);
}

.case-readout strong { margin: 2px 0; color: var(--paper); font-size: 1.4rem; }
.case-readout i { color: #57d984; font-style: normal; }

.feature-copy {
  align-self: center;
}

.project-tags,
.project-stack,
.timeline-detail div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span,
.project-stack span,
.timeline-detail span {
  padding: 6px 8px;
  font: 400 0.52rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.project-tags span:first-child {
  border-color: var(--orange);
  color: var(--orange);
}

.feature-copy h3 {
  margin: 27px 0 8px;
  font: 700 clamp(3rem, 5.2vw, 5.5rem)/1 var(--display);
  letter-spacing: -0.07em;
}

.feature-copy p {
  max-width: 470px;
  color: #66635c;
  font-size: 0.88rem;
  line-height: 1.7;
}

.feature-copy .feature-lede {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.4;
}

.project-stack { margin: 28px 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 7px;
  font: 500 0.67rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}

.text-link:hover { color: var(--orange); border-color: var(--orange); }

.repo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.repo-filters { display: flex; gap: 5px; }

.repo-filter {
  padding: 9px 13px;
  border: 1px solid transparent;
  color: #706d65;
  background: transparent;
  font: 400 0.6rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.repo-filter.active {
  color: var(--paper-bright);
  background: var(--ink);
}

.api-state {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 400 0.52rem var(--mono);
  letter-spacing: 0.07em;
  color: #747169;
}

.api-state span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dba338;
  box-shadow: 0 0 8px currentColor;
}

.api-state.online span { background: #32b966; }
.api-state.offline span { background: var(--orange); }

.repo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.repo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
}

.repo-card::after {
  position: absolute;
  right: -20%;
  bottom: -60%;
  width: 220px;
  height: 220px;
  content: "";
  opacity: 0;
  border: 1px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 28px transparent, 0 0 0 29px rgba(255, 77, 24, 0.5), 0 0 0 58px transparent, 0 0 0 59px rgba(255, 77, 24, 0.3);
  transform: scale(0.7);
  transition: opacity 0.35s, transform 0.5s var(--ease);
}

.repo-card:hover {
  color: var(--paper);
  background: var(--ink-soft);
}

.repo-card:hover::after { opacity: 1; transform: scale(1); }

.repo-card.hidden { display: none; }

.repo-top,
.repo-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font: 400 0.53rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.repo-top span:first-child { color: var(--orange); }
.repo-arrow { font-size: 1.2rem; transition: transform 0.25s; }
.repo-card:hover .repo-arrow { transform: translate(4px, -4px); }

.repo-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 14px;
  font: 700 clamp(1.6rem, 2.5vw, 2.5rem)/1 var(--display);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.repo-card > p {
  position: relative;
  z-index: 1;
  min-height: 46px;
  margin: 0 0 24px;
  color: #6d6a63;
  font-size: 0.76rem;
  line-height: 1.5;
}

.repo-card:hover > p { color: #aaa79f; }

.repo-meta { justify-content: flex-start; gap: 16px; color: #8c8980; }
.language-dot { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--orange); }

.repo-footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font: 400 0.56rem var(--mono);
  letter-spacing: 0.05em;
  color: #76736b;
}

.repo-footer a { color: var(--ink); }
.repo-footer a:hover { color: var(--orange); }

.expertise,
.credentials {
  padding: clamp(110px, 14vw, 190px) 0;
  color: var(--paper);
  background: var(--ink);
}

.section-heading.light { border-color: var(--line-light); }
.section-heading.light > p { color: #918e85; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line-light);
}

.expertise-card {
  position: relative;
  min-height: 640px;
  padding: clamp(25px, 3.5vw, 55px);
  border-right: 1px solid var(--line-light);
  transition: background 0.35s;
}

.expertise-card:hover { background: #171714; }
.card-index { color: var(--orange); font: 400 0.58rem var(--mono); }

.expertise-card h3 {
  margin: 110px 0 30px;
  font: 700 clamp(2.25rem, 3.6vw, 4rem)/0.93 var(--display);
  letter-spacing: -0.06em;
}

.expertise-card > p:not(.card-index) {
  max-width: 310px;
  color: #949189;
  font-size: 0.83rem;
  line-height: 1.65;
}

.expertise-card ul {
  position: absolute;
  right: clamp(25px, 3.5vw, 55px);
  bottom: 44px;
  left: clamp(25px, 3.5vw, 55px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-card li {
  padding: 10px 0;
  color: #aaa79e;
  font: 400 0.6rem var(--mono);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.expertise-icon {
  position: absolute;
  top: 42px;
  right: 35px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 77, 24, 0.5);
  border-radius: 50%;
  transition: transform 0.7s var(--ease);
}

.expertise-card:hover .expertise-icon { transform: rotate(90deg); }

.expertise-icon::before,
.expertise-icon::after,
.expertise-icon span {
  position: absolute;
  content: "";
  background: var(--orange);
}

.expertise-icon::before { top: 50%; left: 10%; width: 80%; height: 1px; }
.expertise-icon::after { top: 10%; left: 50%; width: 1px; height: 80%; }
.expertise-icon span { width: 5px; height: 5px; border-radius: 50%; }
.expertise-icon span:nth-child(1) { top: 19%; left: 25%; }
.expertise-icon span:nth-child(2) { top: 59%; right: 14%; }
.expertise-icon span:nth-child(3) { bottom: 10%; left: 39%; }
.expertise-icon.radar { box-shadow: inset 0 0 0 14px transparent, inset 0 0 0 15px rgba(255, 77, 24, 0.25); }
.expertise-icon.nodes { border-radius: 4px; transform: rotate(45deg); }
.expertise-card:hover .expertise-icon.nodes { transform: rotate(135deg); }

.experience { padding-top: clamp(110px, 14vw, 190px); }

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

.timeline-row {
  display: grid;
  grid-template-columns: minmax(185px, 0.45fr) 0.8fr 1.3fr;
  min-height: 240px;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  position: relative;
  padding-right: 35px;
  font: 400 0.68rem var(--mono);
  color: var(--orange);
}

.timeline-date::before {
  position: absolute;
  top: 6px;
  right: 32px;
  left: auto;
  width: 22px;
  height: 1px;
  content: "";
  background: var(--line);
}

.timeline-date i {
  position: absolute;
  top: 2px;
  right: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--orange);
  background: var(--orange);
}

.timeline-role h3 {
  margin: 0 0 10px;
  font: 600 clamp(1.25rem, 2vw, 2rem)/1.15 var(--display);
  letter-spacing: -0.035em;
}

.timeline-role p,
.timeline-detail p {
  color: #716e66;
  font-size: 0.78rem;
}

.timeline-detail p {
  max-width: 550px;
  margin: 0 0 25px;
  line-height: 1.7;
}

.timeline-detail span { color: #77746d; }

.career-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 35px;
  color: var(--paper);
  background: var(--ink);
}

.career-notes > div {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line-light);
}

.career-notes span,
.career-notes a { font: 400 0.57rem var(--mono); letter-spacing: 0.07em; }
.career-notes span { margin-bottom: 25px; color: var(--orange); }
.career-notes p { margin: 0 0 8px; font-size: 0.82rem; font-weight: 600; }
.career-notes a { margin-top: auto; color: var(--orange); }

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.credential-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
  padding: 35px;
  color: inherit;
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.credential-card:hover { color: var(--ink); background: var(--orange); }
.credential-card.featured { background: #1a1a17; }
.credential-card.featured:hover { background: var(--orange); }
.credential-year { font: 400 0.57rem var(--mono); color: var(--orange); }
.credential-card:hover .credential-year { color: var(--ink); }

.credential-seal {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 77, 24, 0.55);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}

.credential-seal::before { position: absolute; inset: 6px; content: ""; border: 1px dashed rgba(255, 77, 24, 0.45); border-radius: 50%; }
.credential-seal i { font: 500 0.72rem var(--mono); font-style: normal; color: var(--orange); }
.credential-card:hover .credential-seal { transform: rotate(25deg); border-color: var(--ink); }
.credential-card:hover .credential-seal::before { border-color: var(--ink); }
.credential-card:hover .credential-seal i { color: var(--ink); }

.credential-card strong {
  max-width: 280px;
  margin-top: auto;
  font: 600 clamp(1.25rem, 1.8vw, 1.8rem)/1.15 var(--display);
}

.credential-card em {
  margin-top: 10px;
  color: #908d85;
  font-size: 0.74rem;
  font-style: normal;
}

.credential-card:hover em { color: rgba(17, 17, 15, 0.7); }
.inspect { margin-top: 30px; font: 400 0.55rem var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }

.credential-modal {
  width: min(650px, calc(100% - 32px));
  padding: clamp(35px, 6vw, 75px);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.credential-modal::backdrop { background: rgba(5, 5, 5, 0.78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.modal-close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; color: var(--paper); border: 1px solid var(--line-light); background: transparent; font-size: 1.5rem; }
.modal-code { font: 400 0.54rem var(--mono); letter-spacing: 0.1em; color: #7b7871; }
.modal-seal { display: grid; place-items: center; width: 110px; height: 110px; margin: 45px 0; border: 1px solid var(--orange); border-radius: 50%; box-shadow: inset 0 0 0 10px var(--ink), inset 0 0 0 11px rgba(255, 77, 24, 0.35); color: var(--orange); font: 500 1.1rem var(--mono); }
.credential-modal .eyebrow { color: var(--orange); }
.credential-modal h2 { margin: 12px 0 18px; font: 700 clamp(2rem, 5vw, 4rem)/0.98 var(--display); letter-spacing: -0.06em; }
.credential-modal > p:not(.eyebrow) { max-width: 500px; color: #aaa79f; font-size: 0.86rem; line-height: 1.65; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0 35px; }
.modal-meta span { padding: 7px 9px; border: 1px solid var(--line-light); font: 400 0.55rem var(--mono); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(90px, 11vw, 150px);
}

.metric {
  min-height: 185px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.metric:first-child { border-left: 1px solid var(--line); }
.metric-value { display: block; font: 700 clamp(3.4rem, 6vw, 6.5rem)/1 var(--display); letter-spacing: -0.075em; }
.metric-value::after { content: "."; color: var(--orange); }
.metric p { max-width: 140px; margin: 25px 0 0; color: #747169; font: 400 0.58rem/1.5 var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }

.activity {
  padding-bottom: clamp(110px, 14vw, 200px);
}

.activity-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  font: 400 0.56rem var(--mono);
  letter-spacing: 0.05em;
  color: #76736b;
  border-bottom: 1px solid var(--line);
}

.activity-log {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-top: 0;
}

.activity-entry {
  border-bottom: 1px solid var(--line);
}

.activity-entry:last-child {
  border-bottom: 0;
}

.activity-entry > a,
.activity-entry > div {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(150px, 0.55fr) minmax(150px, 0.45fr) 2fr 28px;
  align-items: start;
  gap: 0 clamp(14px, 2vw, 30px);
  padding: 24px clamp(16px, 2.4vw, 32px);
  overflow: hidden;
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
}

.activity-entry > a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}

.activity-entry > a:hover {
  color: var(--paper);
  background: var(--ink-soft);
}

.activity-entry > a:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.activity-index,
.activity-time,
.activity-type {
  font: 400 0.53rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.activity-index {
  padding-top: 5px;
  color: var(--orange);
}

.activity-time {
  display: grid;
  gap: 6px;
  padding-top: 5px;
}

.activity-time time {
  color: var(--ink);
  font-size: 0.6rem;
}

.activity-entry > a:hover .activity-time time {
  color: var(--paper);
}

.activity-time span {
  color: #8c8980;
}

.activity-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  padding: 6px 9px;
  border: 1px solid var(--line);
  transition: border-color 0.35s, color 0.35s;
}

.activity-type i {
  font-style: normal;
  font-size: 0.72rem;
  line-height: 1;
  color: var(--orange);
}

.activity-entry > a:hover .activity-type {
  border-color: rgba(236, 233, 223, 0.3);
}

.activity-body {
  min-width: 0;
}

.activity-body strong {
  display: block;
  margin-bottom: 7px;
  font: 700 clamp(1.05rem, 1.5vw, 1.4rem)/1.1 var(--display);
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.activity-body strong small {
  color: #8c8980;
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: -0.02em;
}

.activity-body p {
  margin: 0;
  color: #6d6a63;
  font-size: 0.78rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: color 0.35s;
}

.activity-entry > a:hover .activity-body p {
  color: #aaa79f;
}

.activity-arrow {
  justify-self: end;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s;
}

.activity-entry > a:hover .activity-arrow {
  transform: translate(4px, -4px);
}

.activity-empty > div {
  grid-template-columns: 36px 1fr;
}

.activity-empty .activity-body {
  grid-column: 2;
}

.activity-empty .activity-body strong {
  color: #8c8980;
}

.contact {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--paper);
  background: #151512;
}

.contact-map {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background: linear-gradient(90deg, rgba(17, 17, 15, 0.9) 0%, rgba(17, 17, 15, 0.15) 100%), url("assets/forensic-map.png") center / cover;
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image: linear-gradient(var(--line-light) 1px, transparent 1px), linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 72px 72px;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 760px;
}

.contact .eyebrow { color: var(--orange); }
.contact h2 { margin: 28px 0; font: 700 clamp(3.4rem, 8.2vw, 8.5rem)/0.86 var(--display); letter-spacing: -0.08em; }
.contact h2 em { color: var(--orange); font-style: normal; }
.contact-copy { max-width: 520px; margin: 0 0 36px; color: #a5a299; font-size: 0.9rem; line-height: 1.65; }
.button-outline { color: var(--paper); border-color: var(--line-light); }

.contact-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 9vw;
  width: min(33vw, 450px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 77, 24, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: orbit 18s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after { position: absolute; inset: 12%; content: ""; border: 1px solid rgba(255, 77, 24, 0.25); border-radius: 50%; }
.contact-orbit::after { inset: 33%; }
.contact-orbit span { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 25px var(--orange); }
.contact-orbit i { position: absolute; top: 9%; left: 29%; width: 5px; height: 5px; border-radius: 50%; background: var(--paper); }

@keyframes orbit {
  to { transform: translateY(-50%) rotate(360deg); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 35px 3.2vw 25px;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.footer-identity { display: flex; align-items: center; gap: 13px; }
.footer-identity p { margin: 0; font: 600 0.74rem var(--display); letter-spacing: 0.03em; }
.footer-identity small { color: #77746d; font: 400 0.52rem var(--mono); }
.footer-status { display: flex; align-items: center; gap: 8px; font: 400 0.52rem var(--mono); color: #77746d; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; font: 400 0.55rem var(--mono); }
.footer-links a:hover { color: var(--orange); }
.copyright { grid-column: 1 / -1; margin: 18px 0 0; padding-top: 20px; color: #5f5d57; text-align: center; font: 400 0.48rem var(--mono); letter-spacing: 0.1em; border-top: 1px solid rgba(255, 255, 255, 0.06); }

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Light theme. The ink sections are inverted with their hues rotated back, so orange stays
   orange and the paper sections are untouched. Photos are counter-inverted to render normally. */
body.light-mode .boot-screen,
body.light-mode .site-header,
body.light-mode .mobile-menu,
body.light-mode .hero,
body.light-mode .expertise,
body.light-mode .credentials,
body.light-mode .contact,
body.light-mode .site-footer,
body.light-mode .credential-modal {
  /* sepia + brightness warm the inverted ink (#11110f) to sit next to the paper tone. */
  filter: invert(1) hue-rotate(180deg) sepia(0.12) brightness(0.97);
}

body.light-mode .site-header.fixed {
  background: rgba(17, 17, 15, 0.96);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.light-mode .avatar-wrap img {
  filter: grayscale(1) contrast(1.08) invert(1) hue-rotate(180deg);
}

body.light-mode .credential-modal::backdrop {
  background: rgba(236, 233, 223, 0.82);
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1fr) 240px; }
  .hero h1 { font-size: clamp(4.8rem, 11.6vw, 9rem); }
  .hero-bottom { grid-template-columns: 1fr; max-width: 66vw; }
  .feature-project { grid-template-columns: 1.15fr 0.85fr; }
  .feature-visual { min-height: 480px; padding: 5%; }
  .expertise-card { min-height: 590px; }
  .expertise-card h3 { margin-top: 120px; }
}

@media (max-width: 820px) {
  body, a, button { cursor: auto; }
  .cursor { display: none; }
  .desktop-nav, .theme-label { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .hero { display: block; min-height: auto; padding: 150px 6vw 85px; }
  .hero-art { opacity: 0.52; background-position: 60% center; }
  .hero-copy { padding: 0; }
  .hero h1 { margin-top: 40px; font-size: clamp(4rem, 18vw, 8.5rem); }
  .hero h1 span:last-child { margin-left: 0; }
  .hero-bottom { max-width: none; }
  .hero-meta { width: min(290px, 68vw); margin: 80px 0 20px auto; }
  .scroll-cue { display: none; }
  .manifesto { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { margin-left: 0; }
  .feature-project { grid-template-columns: 1fr; }
  .feature-copy { order: -1; }
  .repo-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 500px; border-bottom: 1px solid var(--line-light); }
  .expertise-card h3 { margin-top: 80px; }
  .timeline-row { grid-template-columns: minmax(165px, 0.48fr) 1fr; }
  .timeline-detail { grid-column: 2; margin-top: 25px; }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 1px solid var(--line); }
  .activity-entry > a, .activity-entry > div { grid-template-columns: 36px 1fr 24px; gap: 12px clamp(14px, 2vw, 30px); }
  .activity-index { grid-row: 1 / span 3; }
  .activity-time { grid-column: 2; grid-template-columns: auto auto; justify-content: start; gap: 14px; padding-top: 0; }
  .activity-type { grid-column: 2; }
  .activity-body { grid-column: 2; }
  .activity-arrow { grid-column: 3; grid-row: 1; }
  .activity-empty > div { grid-template-columns: 36px 1fr; }
  .contact-orbit { opacity: 0.45; right: -15vw; width: 65vw; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-status { justify-self: end; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 560px) {
  :root { --header-height: 72px; }
  .site-header { padding: 0 5vw; }
  .hero { padding: 120px 5vw 75px; }
  .hero-kicker .slash, .hero-kicker span:last-child { display: none; }
  .hero h1 { font-size: 14vw; line-height: 0.8; letter-spacing: -0.1em; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-meta { width: 80vw; }
  .section-shell { padding-right: 5vw; padding-left: 5vw; }
  .manifesto-copy > p:first-child { font-size: 2.35rem; }
  .section-heading h2 { font-size: 2.8rem; }
  .feature-visual { min-height: 355px; padding: 20px; }
  .window-content { grid-template-columns: 84px 1fr; min-height: 240px; }
  .window-content aside { gap: 13px; padding: 17px 8px; font-size: 0.4rem; }
  .window-bar em { display: none; }
  .case-readout { right: 9px; bottom: 9px; }
  .repo-toolbar { align-items: flex-start; gap: 20px; flex-direction: column; }
  .repo-filters { width: 100%; overflow-x: auto; }
  .api-state { padding-left: 10px; }
  .repo-grid { grid-template-columns: 1fr; }
  .repo-card { min-height: 270px; }
  .repo-footer { flex-direction: column; gap: 12px; }
  .timeline-row { grid-template-columns: 1fr; gap: 20px; }
  .timeline-date { padding-right: 0; }
  .timeline-date::before { right: 0; left: 150px; width: auto; }
  .timeline-date i { right: 0; }
  .timeline-detail { grid-column: auto; margin-top: 0; }
  .career-notes { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card { min-height: 310px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 160px; padding: 18px 12px; }
  .metric-value { font-size: 3rem; }
  .activity-toolbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .activity-entry > a, .activity-entry > div { grid-template-columns: 1fr 24px; padding: 20px 14px; }
  .activity-index { display: none; }
  .activity-time { grid-template-columns: 1fr; gap: 4px; }
  .activity-time, .activity-type, .activity-body { grid-column: 1; }
  .activity-arrow { grid-column: 2; }
  .activity-empty > div { grid-template-columns: 1fr; }
  .activity-empty .activity-body { grid-column: 1; }
  .modal-actions { flex-direction: column; }
  .contact, .contact-inner { min-height: 670px; }
  .contact h2 { font-size: 13vw; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-status { justify-self: start; }
  .footer-links { grid-column: 1; flex-wrap: wrap; }
}

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