
:root {
  --bg: #06080c;
  --panel: #0c1017;
  --panel-strong: #111722;
  --panel-soft: #0f141e;
  --text: #f4f7fb;
  --muted: #9aa6b6;
  --muted-strong: #c5cfdb;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #77f2c8;
  --accent-2: #8ba7ff;
  --danger: #ffb0b8;
  --max: 1240px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% -10%, rgba(119, 242, 200, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

canvas {
  display: block;
}

::selection {
  background: var(--accent);
  color: #04100c;
}

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

.skipLink {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 90;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--panel-strong);
  color: var(--text);
  border: 1px solid var(--line-strong);
  transition: top 0.2s ease;
}

.skipLink:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 8, 12, 0.66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease;
}

.nav.scrolled {
  border-color: var(--line);
  background: rgba(6, 8, 12, 0.88);
}

.navin {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mark {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(119, 242, 200, 0.6);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 32px rgba(119, 242, 200, 0.15);
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
}

.mark::before {
  width: 5px;
  height: 5px;
  top: 5px;
  left: 12px;
}

.mark::after {
  width: 4px;
  height: 4px;
  bottom: 6px;
  right: 5px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

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

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.navcta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
}

.navcta:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.menu {
  display: none;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 24px;
  padding: 6px 4px;
}

.mobileNav {
  display: none;
}

.mobileNav.open {
  display: flex;
  position: fixed;
  z-index: 49;
  top: 74px;
  left: 0;
  right: 0;
  background: rgba(6, 8, 12, 0.97);
  padding: 18px 20px 22px;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.mobileNav a {
  padding: 12px 0;
  color: var(--muted);
}

.mobileNav a:hover,
.mobileNav a[aria-current="page"] {
  color: var(--text);
}

.mobileNav a[aria-current="location"] {
  color: var(--text);
}

.noscriptNote {
  margin-top: 96px;
  border: 1px solid rgba(255, 176, 184, 0.28);
  border-radius: 18px;
  padding: 14px 18px;
  color: var(--danger);
  background: rgba(255, 176, 184, 0.06);
  font-size: 14px;
}

.hero {
  min-height: min(92svh, 920px);
  display: grid;
  align-items: center;
  position: relative;
  padding: 126px 0 56px;
}

.heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  mask-image: linear-gradient(to bottom, black 60%, transparent);
}

.heroContent {
  position: relative;
  z-index: 2;
  max-width: 910px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 24px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(119, 242, 200, 0.09);
}

h1 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.93;
  letter-spacing: -0.065em;
  margin: 0 0 24px;
  font-weight: 680;
}

.gradient {
  background: linear-gradient(110deg, #fff 20%, #a8b6ca 65%, #77f2c8);
  -webkit-background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(18px, 2vw, 24px);
  color: #b9c3d1;
  max-width: 730px;
  line-height: 1.48;
  margin: 0;
}

.heroActions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 650;
  font-size: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--text);
  color: #080b10;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.heroMeta {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}

.heroMeta strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 3px;
}

.section {
  padding: 96px 0;
}

.sectionHead {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  margin-bottom: 44px;
  align-items: start;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.section h2,
.subhero h1 + .lede {
  max-width: 16ch;
}

.section h2 {
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 12px 0 0;
}

.sectionIntro {
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
  margin: 0;
}

.flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: stretch;
}

.flowItem {
  min-height: 178px;
  padding: 22px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
  position: relative;
  overflow: hidden;
}

.flowItem::after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 50%;
  z-index: 2;
  color: var(--accent);
  font-size: 22px;
}

.flowItem:last-child::after {
  display: none;
}

.flowN {
  color: var(--accent);
  font: 600 11px ui-monospace, monospace;
}

.flowT {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 700;
}

.flowS {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}

.formulaBand,
.tableWrap,
.status {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(119, 242, 200, 0.035), rgba(139, 167, 255, 0.025));
}

.formulaBand {
  margin-top: 24px;
  padding: 28px 32px;
  overflow-x: auto;
}

.formulaBand .math {
  font-size: clamp(16px, 2vw, 25px);
  white-space: nowrap;
}

.timeline {
  position: relative;
  padding-left: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(255, 255, 255, 0.08), transparent);
}

.titem {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 24px;
  padding: 0 0 46px;
  position: relative;
}

.titem::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(119, 242, 200, 0.05);
}

.date {
  font: 600 12px ui-monospace, monospace;
  color: var(--accent);
  padding-top: 2px;
}

.tcard {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.tcard h3 {
  font-size: 25px;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.tcard p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  grid-column: span 4;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: radial-gradient(circle at 90% 0%, rgba(119, 242, 200, 0.07), transparent 30%), var(--panel);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.card.wide {
  grid-column: span 6;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(119, 242, 200, 0.26);
  box-shadow: var(--shadow);
}

.tag {
  font: 700 10px ui-monospace, monospace;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.card h3 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 18px 0 12px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card .eq {
  margin-top: auto;
  padding-top: 24px;
  font-family: "STIX Two Text", Georgia, serif;
  font-size: 20px;
  color: #dfe9f7;
}

.cardFoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.arrow {
  color: var(--accent);
  font-size: 20px;
}

.tableWrap {
  overflow-x: auto;
  padding: 12px;
  background: var(--panel);
}

.compareTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compareTable th,
.compareTable td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.compareTable thead th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.compareTable tbody th {
  font-size: 16px;
  font-weight: 650;
  color: var(--text);
}

.compareTable tbody td {
  color: var(--muted-strong);
}

.compareTable tbody tr:last-child th,
.compareTable tbody tr:last-child td {
  border-bottom: 0;
}

.audit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.auditGraph {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auditStep {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 7px 0;
  position: relative;
}

.auditStep:not(:last-child)::after {
  content: "↓";
  position: absolute;
  bottom: -22px;
  left: 50%;
  color: var(--accent);
  z-index: 2;
  transform: translateX(-50%);
}

.auditText ul {
  padding-left: 20px;
  color: var(--muted);
}

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

.paper {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.012);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.paper:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

.paperTitle {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.3;
  margin: 0;
}

.paperMeta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}

.paperLinks {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 96px;
}

.paperLink {
  white-space: nowrap;
  color: var(--accent);
  font-size: 12px;
}

.status {
  padding: 26px 30px;
  color: #bcc8dc;
  background: rgba(139, 167, 255, 0.055);
  border-color: rgba(139, 167, 255, 0.22);
}

.status strong {
  color: #eaf0ff;
}

.status a {
  color: var(--accent);
}

.footer {
  padding: 48px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footerGrid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footerGrid strong,
.footerGrid a {
  color: var(--muted-strong);
}

.footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footerLinks a:hover {
  color: var(--accent);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.subhero {
  padding: 126px 0 56px;
  border-bottom: 1px solid var(--line);
}

.subhero h1 {
  font-size: clamp(48px, 7vw, 92px);
  margin-bottom: 18px;
}

.crumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

.crumb a {
  color: var(--muted-strong);
}

.resultGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.prose {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #c7d0dd;
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1.15em;
}

.prose h2,
.prose h3 {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.prose h2 {
  font-size: 34px;
  margin: 56px 0 14px;
}

.prose h3 {
  font-size: 24px;
  margin: 34px 0 12px;
}

.prose .equation {
  font-family: Georgia, serif;
  font-size: 24px;
  padding: 18px 0 14px;
  color: #edf3fb;
  overflow-x: auto;
}

.prose a {
  color: var(--accent);
}

.side {
  position: sticky;
  top: 96px;
  height: max-content;
}

.sideBox {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: var(--panel);
  margin-bottom: 15px;
}

.sideHeading {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.sideBox a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  padding: 6px 0;
}

.sideBox a:hover {
  color: var(--accent);
}

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

.pageLinks a:first-child {
  border-top: 0;
  padding-top: 0;
}

.statBig {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}

.statusCopy {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.metaList {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.metaRow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.metaRow strong {
  color: var(--muted-strong);
  font-weight: 600;
}

.metaRow a {
  color: var(--accent);
}

.citationBox {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.018);
  margin-top: 34px;
}

.citationBox h2,
.citationBox h3 {
  margin-top: 0;
}

.citationBox h2 {
  font-size: 28px;
}

.citationGrid {
  display: grid;
  gap: 18px;
}

.citationCard {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.citationCard:first-child {
  border-top: 0;
  padding-top: 0;
}

.citationLabel {
  font: 700 11px ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.citationValue {
  color: var(--muted-strong);
  margin: 0;
  word-break: break-word;
}

.citationActions,
.paperActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.copyButton,
.inlineButton,
.paperLinkButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
}

.copyButton:hover,
.inlineButton:hover,
.paperLinkButton:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.copyStatus {
  min-height: 1.2em;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.subtleLink {
  color: var(--accent);
}

.pageGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: var(--panel);
}

.panel h2:first-child,
.panel h3:first-child {
  margin-top: 0;
}

.keyList {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyList li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.keyList li:first-child {
  border-top: 0;
  padding-top: 0;
}

.keyList strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.miniCards {
  display: grid;
  gap: 14px;
}

.paperCatalog {
  display: grid;
  gap: 16px;
}

.paperCatalogItem {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.012);
}

.paperCatalogHeader {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.paperCatalogHeader h2,
.paperCatalogHeader h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.paperRole {
  color: var(--accent);
  font: 700 11px ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.paperSummary {
  color: var(--muted);
  margin: 12px 0 0;
}

.paperMetaGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 18px;
}

.paperMetaGrid div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.paperMetaGrid strong {
  display: block;
  color: var(--muted-strong);
  margin-bottom: 4px;
}

.bibtex {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  color: #dde6f3;
  font: 13px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--muted-strong);
}

.ledeCompact {
  max-width: 58rem;
}

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

.twoColText p {
  margin: 0;
}

.resourceList {
  display: grid;
  gap: 12px;
}

.resourceList a {
  color: var(--accent);
}

.manifestNote {
  color: var(--muted);
  font-size: 14px;
}

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

mjx-container[jax="SVG"] {
  max-width: 100%;
}

.equation mjx-container[jax="SVG"],
.formulaBand mjx-container[jax="SVG"],
.statBig mjx-container[jax="SVG"] {
  overflow-x: auto;
  overflow-y: hidden;
}

@media (max-width: 980px) {
  .navlinks {
    display: none;
  }

  .menu {
    display: block;
  }

  .sectionHead,
  .audit,
  .resultGrid,
  .pageGrid,
  .twoColText {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .flowItem::after {
    display: none;
  }

  .cards .card,
  .card.wide {
    grid-column: span 12;
  }

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

  .side {
    position: static;
  }

  .titem {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .heroMeta {
    gap: 18px 28px;
  }

  .footerGrid {
    flex-direction: column;
  }

  .paperCatalogHeader,
  .metaRow {
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .section {
    padding: 78px 0;
  }

  .subhero {
    padding: 106px 0 44px;
  }

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

  .paper {
    flex-direction: column;
  }

  .paperLinks {
    align-items: flex-start;
  }

  .compareTable {
    min-width: 560px;
  }

  .citationBox,
  .panel,
  .paperCatalogItem {
    padding: 20px;
  }
}

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

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

  .card,
  .btn,
  .nav,
  .heroCanvas {
    transition: none;
  }

  .heroCanvas {
    display: none;
  }
}
