:root {
  --ink: #111820;
  --deep: #0b1117;
  --deep-soft: #151e27;
  --paper: #f3f6f8;
  --white: #ffffff;
  --line: #ccd4da;
  --muted: #5f6c77;
  --green: #087f5b;
  --green-light: #78e1bf;
  --blue: #1769e0;
  --cobalt: #2354a5;
  --amber: #b45f06;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

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

.shell {
  width: min(1200px, calc(100vw - 64px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  font-size: 15px;
}

.brand span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a {
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--blue);
}

.nav-resume {
  min-width: 82px;
  padding: 7px 11px;
  border: 1px solid var(--ink);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 660px;
  height: calc(100svh - var(--header-height));
  max-height: 760px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--blue);
}

.hero-portrait {
  position: absolute;
  right: max(0px, calc((100vw - 1340px) / 2));
  bottom: 0;
  width: min(49vw, 650px);
  height: 97%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.94) contrast(1.02);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100vw - 64px));
  margin: 0 auto;
  padding-top: 82px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 68px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.availability span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.overline,
.section-index,
.feature-topline,
.research-architecture span,
.education-strip span {
  margin: 0;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 10px 0 0;
  font-size: 66px;
  font-weight: 760;
  line-height: 1.02;
}

.hero-position {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 23px;
  font-weight: 680;
  line-height: 1.35;
}

.hero-summary {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.button-light {
  background: var(--white);
}

.button-light:hover {
  background: var(--paper);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1200px) / 2));
  bottom: 28px;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  padding: 10px 28px 0 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.hero-meta span + span {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.signal-band {
  background: var(--deep);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-grid > div {
  min-height: 132px;
  padding: 26px 26px 22px 0;
  border-right: 1px solid #35414c;
}

.signal-grid > div:not(:first-child) {
  padding-left: 26px;
}

.signal-grid > div:last-child {
  border-right: 0;
}

.signal-grid strong {
  display: block;
  color: var(--green-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 28px;
}

.signal-grid span {
  display: block;
  max-width: 200px;
  margin-top: 7px;
  color: #aab6c0;
  font-size: 11px;
  line-height: 1.45;
}

.work,
.library,
.practice,
.skills {
  padding: 102px 0;
}

.work,
.skills {
  background: var(--white);
}

.library,
.practice {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
  padding-bottom: 50px;
}

.section-head h2,
.research h2,
.experience h2,
.skills h2,
.contact h2 {
  margin: 8px 0 0;
  font-size: 44px;
  line-height: 1.14;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.compact-head {
  padding-bottom: 36px;
}

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

.feature-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 4px;
}

.feature-card[data-accent="blue"] {
  border-top-color: var(--blue);
}

.feature-card[data-accent="cobalt"] {
  border-top-color: var(--cobalt);
}

.feature-card[data-accent="amber"] {
  border-top-color: var(--amber);
}

.feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.terminal-media,
.landmark-media {
  background: var(--deep);
  color: #e8eef3;
}

.terminal-toolbar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid #34414c;
  color: #8f9ca7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.terminal-tabs {
  display: flex;
  border: 1px solid #46535d;
}

.terminal-tabs button,
.filter-bar button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.terminal-tabs button {
  min-height: 26px;
  padding: 0 9px;
  color: #91a0ab;
  font-size: 9px;
}

.terminal-tabs button + button {
  border-left: 1px solid #46535d;
}

.terminal-tabs button[aria-pressed="true"] {
  background: var(--green);
  color: var(--white);
}

.terminal-media pre {
  margin: 0;
  padding: 26px;
  overflow-x: auto;
  font-size: 12px;
  line-height: 1.8;
}

.terminal-media code > span {
  color: #7e8c96;
}

.terminal-media code > strong {
  color: var(--green-light);
}

.image-media {
  margin: 0;
  background: #e9eef2;
}

.image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-media img {
  object-position: top;
}

.calibration-media img {
  object-fit: contain;
  background: var(--white);
}

.landmark-media {
  margin: 0;
}

.landmark-media canvas {
  width: 100%;
  height: 100%;
}

.feature-media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(11, 17, 23, 0.88);
  color: #d5dde3;
  font-size: 9px;
}

.feature-copy {
  padding: 28px;
}

.feature-topline {
  display: flex;
  justify-content: space-between;
}

.feature-topline span:last-child {
  color: #9aa5ad;
}

.feature-copy h3 {
  margin: 10px 0 0;
  font-size: 27px;
  line-height: 1.2;
}

.feature-copy > p {
  min-height: 78px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-evidence div {
  padding: 12px 0;
}

.feature-evidence div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.feature-evidence dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-evidence dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 750;
}

.project-actions {
  display: flex;
  gap: 18px;
}

.project-link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.project-link:hover {
  color: var(--green);
}

.muted-link {
  color: var(--muted);
}

.research {
  padding: 104px 0;
  background: #16342f;
  color: var(--white);
}

.research-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.light-index {
  color: var(--green-light);
}

.research-copy > p:not(.section-index):not(.private-note) {
  margin: 20px 0 0;
  color: #c9d7d3;
  font-size: 15px;
}

.research-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #46605a;
}

.research-copy li {
  padding: 10px 0;
  border-bottom: 1px solid #46605a;
  color: #e0e9e6;
  font-size: 12px;
}

.private-note {
  margin: 22px 0 0;
  padding-left: 13px;
  border-left: 3px solid #e2a94f;
  color: #d8c59d;
  font-size: 10px;
}

.research-architecture {
  padding: 30px;
  border: 1px solid #59706a;
  background: #102722;
}

.research-architecture strong,
.research-architecture small {
  display: block;
}

.research-architecture strong {
  margin-top: 6px;
  font-size: 14px;
}

.research-architecture small {
  margin-top: 5px;
  color: #9db0aa;
  font-size: 9px;
}

.architecture-input,
.architecture-output {
  padding: 17px;
  border: 1px solid #59706a;
}

.architecture-branch,
.architecture-verify {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  position: relative;
}

.architecture-branch::before,
.architecture-verify::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 1px;
  height: 24px;
  background: #59706a;
}

.architecture-branch > div,
.architecture-verify > div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid #59706a;
}

.architecture-output {
  border-color: var(--green-light);
}

.filter-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-bar button {
  min-height: 34px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.filter-bar button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.filter-bar span {
  margin-left: auto;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

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

.library-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 45px 1.1fr 1.5fr 0.7fr 0.35fr;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

a.library-row:hover {
  background: var(--white);
}

.library-row[hidden] {
  display: none;
}

.row-id {
  color: #98a3aa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.library-row strong {
  font-size: 13px;
}

.library-row > span:not(.row-id) {
  color: var(--muted);
  font-size: 11px;
}

.library-row b {
  color: var(--green);
  font-size: 9px;
  text-transform: uppercase;
}

.library-row.private-row b {
  color: var(--amber);
}

.practice {
  border-top: 1px solid var(--line);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-grid article {
  min-height: 240px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-grid span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.practice-grid h3 {
  margin: 50px 0 0;
  font-size: 17px;
}

.practice-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.experience {
  padding: 104px 0;
  background: #152433;
  color: var(--white);
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.experience-heading {
  position: sticky;
  top: 108px;
  align-self: start;
}

.experience-heading > p:last-child {
  margin: 20px 0 0;
  color: #afbdc8;
  font-size: 13px;
}

.timeline {
  border-top: 1px solid #4a5966;
}

.timeline-row {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 34px;
  padding: 31px 0;
  border-bottom: 1px solid #4a5966;
}

.timeline-row span {
  color: var(--green-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.timeline-row > div:first-child strong {
  display: block;
  margin-top: 7px;
  color: #b8c5ce;
  font-size: 10px;
}

.timeline-row h3 {
  margin: 0;
  font-size: 17px;
}

.timeline-row p {
  margin: 10px 0 0;
  color: #b8c5ce;
  font-size: 12px;
}

.skills-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

.skills-heading h2 {
  max-width: 390px;
}

.skills-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.skills-matrix > div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skills-matrix h3 {
  margin: 0;
  font-size: 14px;
}

.skills-matrix p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.education-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: -36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.education-strip > div {
  min-height: 110px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.education-strip strong,
.education-strip small {
  display: block;
}

.education-strip strong {
  margin-top: 8px;
  font-size: 13px;
}

.education-strip small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.contact {
  padding: 96px 0;
  background: var(--blue);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact h2 {
  max-width: 600px;
  font-size: 46px;
}

.contact-layout > div:first-child > p:last-child {
  max-width: 570px;
  margin: 18px 0 0;
  color: #d9e7fb;
  font-size: 14px;
}

.contact-directory {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.contact-directory a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  text-decoration: none;
}

.contact-directory a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-directory span {
  color: #c8dcfa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-directory strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}

footer {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - 1200px) / 2));
  background: var(--deep);
  color: #82919c;
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .site-header nav a:nth-child(3) {
    display: none;
  }

  .hero-portrait {
    right: -80px;
    width: 56vw;
    opacity: 0.38;
  }

  .hero-copy {
    z-index: 3;
  }

  .research-layout,
  .experience-layout {
    gap: 52px;
  }

  .feature-copy > p {
    min-height: 100px;
  }
}

@media (max-width: 820px) {
  .site-header nav a:nth-child(2),
  .site-header nav a:nth-child(4) {
    display: none;
  }

  .hero-portrait {
    right: -30px;
    width: 65vw;
    opacity: 0.22;
  }

  .section-head,
  .research-layout,
  .experience-layout,
  .skills-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .feature-copy > p {
    min-height: 0;
  }

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

  .experience-heading {
    position: static;
  }

  .education-strip {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 60px;
  }

  .shell,
  .hero-copy {
    width: calc(100vw - 40px);
  }

  .site-header {
    padding: 0 20px;
  }

  .brand span,
  .site-header nav a:not(.nav-resume) {
    display: none;
  }

  .nav-resume {
    min-width: 72px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - var(--header-height));
    max-height: 740px;
  }

  .hero::before {
    width: 5px;
  }

  .hero-portrait {
    right: -52px;
    width: 94vw;
    height: 82%;
    opacity: 0.18;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .availability {
    margin-bottom: 72px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-position {
    font-size: 20px;
  }

  .hero-summary {
    font-size: 14px;
  }

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

  .button {
    min-height: 43px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero-meta {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  .hero-meta span {
    padding-right: 10px;
    font-size: 7px;
  }

  .hero-meta span + span {
    padding-left: 10px;
  }

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

  .signal-grid > div,
  .signal-grid > div:not(:first-child) {
    min-height: 112px;
    padding: 20px 14px;
    border-bottom: 1px solid #35414c;
  }

  .signal-grid > div:nth-child(odd) {
    padding-left: 0;
  }

  .signal-grid > div:nth-child(even) {
    border-right: 0;
  }

  .signal-grid strong {
    font-size: 23px;
  }

  .work,
  .library,
  .practice,
  .skills,
  .research,
  .experience,
  .contact {
    padding: 72px 0;
  }

  .section-head h2,
  .research h2,
  .experience h2,
  .skills h2,
  .contact h2 {
    font-size: 32px;
  }

  .section-head {
    padding-bottom: 34px;
  }

  .feature-media {
    aspect-ratio: 4 / 3;
  }

  .terminal-toolbar {
    height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .terminal-media pre {
    padding: 22px 15px;
    font-size: 9px;
  }

  .feature-copy {
    padding: 22px;
  }

  .feature-copy h3 {
    font-size: 24px;
  }

  .feature-evidence dd {
    font-size: 10px;
  }

  .research-architecture {
    padding: 18px;
  }

  .architecture-branch,
  .architecture-verify {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-wrap: wrap;
    gap: 3px;
    padding: 9px 0;
  }

  .filter-bar button {
    padding: 0 9px;
    font-size: 9px;
  }

  .filter-bar span {
    width: 100%;
    margin: 5px 0 0;
  }

  .library-row {
    min-height: 100px;
    grid-template-columns: 32px 1fr auto;
    gap: 5px 12px;
  }

  .library-row strong {
    grid-column: 2;
  }

  .library-row > span:not(.row-id) {
    grid-column: 2;
  }

  .library-row > span:nth-of-type(3) {
    display: none;
  }

  .library-row b {
    grid-column: 3;
    grid-row: 1;
  }

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

  .practice-grid article {
    min-height: 178px;
  }

  .practice-grid h3 {
    margin-top: 30px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .skills-matrix,
  .education-strip {
    grid-template-columns: 1fr;
  }

  .skills-matrix > div {
    min-height: 126px;
  }

  .contact-directory a {
    grid-template-columns: 0.35fr 1.65fr;
    gap: 10px;
  }

  footer {
    min-height: 88px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 16px 20px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
