@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --panel: #111;
  --text: #f3f3ef;
  --muted: #9a9a94;
  --line: #30302e;
  --acid: #dcff45;
  --cyan: #00c9f2;
  --orange: #ff6b00;
  --blue: #0878e8;
  --green: #15c330;
  --shell: min(94vw, 1440px);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.11;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--acid);
  color: #080808;
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.site-header {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  -webkit-mask-image: radial-gradient(
    circle at 52% 48%,
    #000 42%,
    rgba(0, 0, 0, 0.92) 58%,
    rgba(0, 0, 0, 0.38) 74%,
    transparent 94%
  );
  mask-image: radial-gradient(
    circle at 52% 48%,
    #000 42%,
    rgba(0, 0, 0, 0.92) 58%,
    rgba(0, 0, 0, 0.38) 74%,
    transparent 94%
  );
  object-fit: contain;
  mix-blend-mode: screen;
  transform: scale(1.22);
}

.site-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: clamp(1.3rem, 2.8vw, 3rem);
}

.split-link {
  position: relative;
  display: grid;
  height: 100%;
  overflow: hidden;
  place-items: center;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
}

.split-link span {
  grid-area: 1 / 1;
  transition: transform 220ms ease;
}

.split-link span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--acid);
  transform: translate(-50%, 400%);
}

.split-link:hover span:first-child,
.split-link:focus-visible span:first-child {
  transform: translateY(-150%);
}

.split-link:hover span:last-child,
.split-link:focus-visible span:last-child {
  transform: translate(-50%, -50%);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  align-self: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta svg,
.github-icon svg {
  width: 16px;
  fill: currentColor;
}

.nav-cta:hover {
  background: var(--acid);
  color: #080808;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  min-height: calc(100svh - 82px);
  overflow: clip;
  padding-block: clamp(3rem, 5vw, 5.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.hero h1,
.systems h2,
.section-heading h2,
.about h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(4.8rem, 7.2vw, 8.4rem);
}

h1 span,
h2 span {
  color: var(--acid);
}

.hero-copy > p {
  max-width: 650px;
  margin: 1.45rem 0 0;
  color: #c5c5bf;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.credentials {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
}

.credentials > span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 155px;
  padding: 0 1.2rem;
  border-left: 1px solid var(--line);
  color: #e3e3de;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.6;
}

.credentials > span:first-child {
  padding-left: 0;
  border-left: 0;
}

.credentials i {
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: normal;
}

.credentials .credential-car {
  display: grid;
  width: 58px;
  height: 30px;
  flex: 0 0 58px;
  place-items: center;
}

.credential-car svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.credential-car .vw-mark {
  fill: currentColor;
  stroke: none;
}

.credential-car .audi-rings {
  stroke-width: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  gap: 1rem;
  margin-top: 1.35rem;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 235px;
  min-height: 58px;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.action b {
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.action:hover b {
  transform: translateX(5px);
}

.action-primary {
  background: var(--acid);
  color: #080808;
}

.action-primary:hover {
  background: var(--text);
  border-color: var(--text);
}

.action-secondary {
  color: var(--acid);
}

.action-secondary:hover {
  background: var(--acid);
  color: #080808;
}

.action-dots {
  width: 24px;
  height: 24px;
  background-image: radial-gradient(currentColor 1.3px, transparent 1.3px);
  background-size: 8px 8px;
}

.hero-object {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 650px;
  isolation: isolate;
}

.hero-object::before {
  position: absolute;
  inset: 8% 2% 5%;
  z-index: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(
    ellipse at 52% 49%,
    rgba(0, 0, 0, 0.18) 0 38%,
    rgba(11, 11, 11, 0.74) 64%,
    var(--bg) 84%
  );
  filter: blur(24px);
}

.hero-object::after {
  position: absolute;
  right: 8%;
  bottom: 10%;
  left: 8%;
  height: 70px;
  content: "";
  background: linear-gradient(90deg, #057ef0, #ff6500, #ffd500, #08c732);
  filter: blur(45px);
  opacity: 0.35;
}

.hero-object img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(112%, 720px);
  -webkit-mask-image: radial-gradient(
    ellipse 62% 57% at 53% 50%,
    #000 43%,
    rgba(0, 0, 0, 0.92) 56%,
    rgba(0, 0, 0, 0.42) 72%,
    transparent 91%
  );
  mask-image: radial-gradient(
    ellipse 62% 57% at 53% 50%,
    #000 43%,
    rgba(0, 0, 0, 0.92) 56%,
    rgba(0, 0, 0, 0.42) 72%,
    transparent 91%
  );
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  animation: float 7s ease-in-out infinite;
}

.orbital {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbital::before,
.orbital::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--muted);
  content: "";
}

.orbital::before {
  top: 14%;
  left: 8%;
}

.orbital::after {
  right: 5%;
  bottom: 18%;
}

.orbital-one {
  width: 520px;
  height: 520px;
}

.orbital-two {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation: spin 28s linear infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.62rem;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--acid);
  animation: scroll 1.8s ease-in-out infinite;
}

.systems {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  min-height: 920px;
  padding-block: clamp(7rem, 11vw, 11rem);
  border-top: 1px solid var(--line);
}

.kicker {
  margin: 0 0 1.4rem;
  color: var(--acid) !important;
  font-family: monospace;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.systems h2 {
  font-size: clamp(4rem, 6.8vw, 7.6rem);
}

.systems-copy > p:last-child,
.about-copy > p:last-child {
  max-width: 620px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.systems-map {
  position: relative;
  aspect-ratio: 1.1;
  min-width: 0;
}

.systems-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #5b5b57;
  stroke-dasharray: 5 8;
  stroke-width: 1;
}

.systems-map .pulse-line {
  stroke: var(--acid);
}

.map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #090909;
  transform: translate(-50%, -50%) rotate(4deg);
}

.map-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.node {
  position: absolute;
  z-index: 3;
  min-width: 120px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--bg);
  color: #cecec8;
  font-family: monospace;
  font-size: 0.65rem;
  line-height: 1.45;
  text-align: center;
}

.node::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  box-shadow: 0 0 14px var(--acid);
}

.node-a { top: 1%; left: 5%; }
.node-b { top: 44%; left: 0; }
.node-c { bottom: 2%; left: 9%; }
.node-d { top: 1%; right: 5%; }
.node-e { top: 44%; right: 0; }
.node-f { right: 9%; bottom: 2%; }

.work {
  padding-block: clamp(7rem, 11vw, 11rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-heading h2,
.about h2 {
  font-size: clamp(4.2rem, 7.8vw, 9rem);
}

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

.project {
  display: grid;
  grid-template-columns: 70px minmax(210px, 0.7fr) minmax(310px, 1fr) 190px 70px;
  align-items: stretch;
  min-height: 210px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease;
}

.project:last-child {
  border-bottom: 0;
}

.project:hover {
  background: #10110d;
}

.project-number {
  display: grid;
  place-items: center;
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.5rem;
}

.project-visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #080909;
}

.project-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    ellipse at center,
    transparent 38%,
    rgba(8, 9, 9, 0.12) 58%,
    rgba(8, 9, 9, 0.72) 100%
  );
}

.project-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.12), transparent 45%, rgba(220, 255, 69, 0.08)),
    linear-gradient(180deg, transparent 45%, rgba(11, 11, 11, 0.82));
  box-shadow: inset 0 0 0 1px rgba(220, 255, 69, 0.08);
}

.project-visual img {
  width: 100%;
  height: 100%;
  -webkit-mask-image: radial-gradient(
    ellipse 78% 82% at center,
    #000 54%,
    rgba(0, 0, 0, 0.92) 70%,
    rgba(0, 0, 0, 0.42) 87%,
    transparent 106%
  );
  mask-image: radial-gradient(
    ellipse 78% 82% at center,
    #000 54%,
    rgba(0, 0, 0, 0.92) 70%,
    rgba(0, 0, 0, 0.42) 87%,
    transparent 106%
  );
  object-fit: cover;
  filter: saturate(0.55) contrast(1.14) brightness(0.72);
  transform: scale(1.03);
  transition: filter 300ms ease, transform 400ms ease;
}

.project:nth-child(1) .project-visual img {
  object-position: center 58%;
}

.project:nth-child(2) .project-visual img {
  object-position: center 52%;
}

.project:nth-child(3) .project-visual img {
  object-position: center 52%;
}

.project:hover .project-visual img {
  filter: saturate(0.9) contrast(1.08) brightness(0.9);
  transform: scale(1.075);
}

.image-code {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  z-index: 3;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(220, 255, 69, 0.65);
  background: rgba(11, 11, 11, 0.78);
  color: var(--acid);
  font-family: monospace;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 3vw, 3.5rem);
}

.project-copy strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.02em;
}

.project-copy > span {
  max-width: 620px;
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.55;
}

.project-stack {
  align-self: center;
  max-width: 150px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-family: monospace;
  font-size: 0.64rem;
  line-height: 1.5;
}

.project-arrow {
  display: grid;
  place-items: center;
  color: var(--acid);
  font-size: 2rem;
  transition: transform 180ms ease;
}

.project:hover .project-arrow {
  transform: translateX(6px);
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(4rem, 10vw, 12rem);
  align-items: center;
  min-height: 780px;
  padding-block: clamp(7rem, 11vw, 11rem);
  border-top: 1px solid var(--line);
}

.about-wireframe svg {
  width: 100%;
  fill: none;
  stroke: #686864;
  stroke-width: 1.1;
}

.about-wireframe circle {
  stroke: var(--acid);
}

.about-wireframe .wire-axis {
  opacity: 0.3;
  stroke-dasharray: 5 9;
}

.github-cta {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.github-cta a {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 120px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.github-cta a:hover {
  border-color: var(--acid);
  background: #10110d;
}

.github-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--acid);
  color: #080808;
}

.github-icon svg {
  width: 25px;
}

.github-cta strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: 0.08em;
}

.github-cta a > span:last-child {
  color: var(--acid);
  font-size: 2.5rem;
  transition: transform 180ms ease;
}

.github-cta a:hover > span:last-child {
  transform: translateX(8px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  min-height: 100px;
  border-top: 1px solid var(--line);
  color: #70706c;
  font-family: monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  padding-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-1.5deg); }
  50% { transform: translate(-50%, calc(-50% - 14px)) rotate(1.5deg); }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(220%); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero-object {
    min-height: 520px;
  }

  .orbital-one { width: 420px; height: 420px; }
  .orbital-two { width: 290px; height: 290px; }

  .project {
    grid-template-columns: 60px minmax(180px, 0.65fr) minmax(280px, 1fr) 150px 55px;
  }

  .project-stack {
    max-width: 130px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
  }

  .menu-icon {
    width: 24px;
    height: 12px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(11, 11, 11, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .split-link {
    display: block;
    height: auto;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .split-link span:last-child {
    display: none;
  }

  .nav-cta {
    align-self: stretch;
    justify-content: center;
    margin-top: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-bottom: 4rem;
  }

  .hero-copy,
  .hero-object,
  .hero-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-object {
    min-height: 520px;
    margin-top: -2rem;
  }

  .scroll-cue {
    display: none;
  }

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

  .systems-map {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .project {
    grid-template-columns: 56px 190px 1fr 55px;
  }

  .project-stack {
    display: none;
  }

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

  .about-wireframe {
    width: min(90%, 600px);
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: 90vw;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 19vw, 5.5rem);
  }

  .credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .credentials > span {
    min-width: 0;
    padding: 0 0.6rem;
    font-size: 0.54rem;
  }

  .credentials i {
    display: none;
  }

  .action {
    width: 100%;
  }

  .hero-object {
    min-height: 360px;
    margin-top: -0.5rem;
  }

  .hero-object img {
    top: 47%;
    width: min(104%, 365px);
  }

  .orbital-one { width: 330px; height: 330px; }
  .orbital-two { width: 235px; height: 235px; }

  .systems {
    min-height: auto;
  }

  .systems h2,
  .section-heading h2,
  .about h2 {
    font-size: clamp(3.6rem, 16vw, 5rem);
  }

  .section-heading {
    display: block;
  }

  .systems-map {
    aspect-ratio: 0.85;
  }

  .systems-map svg {
    top: 16%;
    height: 68%;
  }

  .map-core {
    width: 42%;
  }

  .node {
    min-width: 100px;
    padding: 0.6rem;
    font-size: 0.54rem;
  }

  .node-a { top: 3%; left: 0; }
  .node-b { top: 44%; left: -2%; }
  .node-c { bottom: 3%; left: 0; }
  .node-d { top: 3%; right: 0; }
  .node-e { top: 44%; right: -2%; }
  .node-f { right: 0; bottom: 3%; }

  .project-list {
    border-right: 0;
    border-left: 0;
  }

  .project {
    grid-template-columns: 46px 1fr 42px;
    min-height: auto;
    padding-block: 0;
  }

  .project-visual {
    display: block;
    grid-column: 2 / -1;
    grid-row: 1;
    height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-number {
    grid-row: 1 / 3;
  }

  .project-copy {
    grid-column: 2;
    grid-row: 2;
    padding: 1.5rem 1rem;
  }

  .project-arrow {
    grid-column: 3;
    grid-row: 2;
  }

  .project-copy strong {
    font-size: 2.2rem;
  }

  .project-copy > span {
    font-size: 0.87rem;
  }

  .github-cta a {
    grid-template-columns: 52px 1fr auto;
    gap: 1rem;
    padding: 1rem;
  }

  .github-icon {
    width: 44px;
    height: 44px;
  }

  .github-cta strong {
    font-size: 1.55rem;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
