:root {
  --background: #050505;
  --surface: #0b0b0b;
  --surface-raised: #101010;
  --text: #f2efe8;
  --muted: #878783;
  --line: rgba(255, 255, 255, 0.13);
  --line-bright: rgba(255, 255, 255, 0.28);
  --accent: #ff5c00;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Inter", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(7rem, 14vw, 13rem);
  --header-height: 5.5rem;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--background);
  background: var(--accent);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.05;
  /* Own compositor layer so the noise is rasterized once, not repainted per scroll frame. */
  transform: translateZ(0);
  will-change: transform;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 26rem;
  height: 26rem;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(255, 92, 0, 0.09),
    rgba(255, 92, 0, 0) 68%
  );
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  /* Own compositor layer keeps the backdrop-filter stable while content scrolls under it. */
  transform: translateZ(0);
  transition:
    background 300ms ease,
    border-color 300ms ease;
}

/* Always-visible sticky header; solidify once the page is scrolled. */
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: var(--line-bright);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line-bright);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: end;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0.8rem var(--accent);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 8.5rem var(--page-gutter) 4rem;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25vw 100%, 25vw 100%;
  opacity: 0.18;
}

.hero-index {
  position: absolute;
  top: 8rem;
  left: var(--page-gutter);
  display: flex;
  gap: 2.5rem;
}

.micro-label {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 1px;
  content: "";
  background: var(--accent);
}

.hero-title {
  max-width: 80rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 10.8vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.79;
}

.title-line {
  display: block;
}

.title-offset {
  padding-left: clamp(2rem, 10vw, 10rem);
}

.hero-title em,
.section-heading h2 em,
.large-statement em,
.contact h2 em {
  color: var(--accent);
  font-weight: 400;
}

.hero-bottom {
  display: flex;
  width: min(45rem, 60%);
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-top: clamp(3rem, 7vw, 6rem);
  margin-left: clamp(2rem, 10vw, 10rem);
}

.hero-description {
  max-width: 26rem;
  margin: 0;
  color: #b4b2ad;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.text-link {
  display: flex;
  min-width: 13rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-bright);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 250ms ease;
}

.text-link:hover {
  border-color: var(--accent);
}

.link-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 300ms var(--ease);
}

.text-link:hover .link-arrow {
  transform: translate(0.25rem, 0.25rem);
}

.hero-orbit {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  z-index: 1;
  width: clamp(28rem, 47vw, 48rem);
  aspect-ratio: 1;
  border-radius: 50%;
}

.orbit-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-ring-one {
  inset: 0;
  animation: orbit-spin 34s linear infinite;
}

.orbit-ring-one::before {
  position: absolute;
  top: 17%;
  left: 7%;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1.2rem var(--accent);
}

.orbit-ring-two {
  inset: 17%;
  border-style: dashed;
  animation: orbit-spin 22s linear infinite reverse;
}

.orbit-core {
  position: absolute;
  inset: 37%;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.2), transparent 70%);
}

.orbit-label {
  position: absolute;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--background);
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.13em;
}

.label-one {
  top: 25%;
  left: 4%;
}

.label-two {
  top: 15%;
  right: 15%;
}

.label-three {
  bottom: 28%;
  left: -1%;
}

.hero-scroll {
  position: absolute;
  right: var(--page-gutter);
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 3.5rem;
  overflow: hidden;
  background: var(--line-bright);
}

.scroll-line::after {
  display: block;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--accent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.section-shell {
  position: relative;
  padding: var(--section-space) var(--page-gutter);
  border-top: 1px solid var(--line);
}

.section-number {
  color: var(--accent);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) 4fr;
  gap: 4rem;
}

.manifesto-content {
  max-width: 72rem;
}

.large-statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.manifesto-note {
  display: flex;
  max-width: 30rem;
  gap: 1.4rem;
  margin-top: 5rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.manifesto-note p {
  margin: 0;
}

.accent-line {
  flex: 0 0 auto;
  width: 1px;
  background: var(--accent);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading h2,
.contact h2 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.section-intro {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1.4fr 1fr;
  gap: 2rem;
  min-height: 10rem;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition:
    background 350ms var(--ease),
    padding 350ms var(--ease);
}

.capability::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 350ms var(--ease);
}

.capability:hover {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  background: var(--surface);
}

.capability:hover::before {
  transform: scaleY(1);
}

.capability-number {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.capability-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
}

.capability-copy p {
  max-width: 30rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.technical-reveal {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateX(1.5rem);
  transition:
    opacity 350ms var(--ease),
    transform 350ms var(--ease);
}

.technical-reveal strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
}

.capability:hover .technical-reveal {
  opacity: 1;
  transform: translateX(0);
}

.systems {
  background: var(--surface);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1px;
  background: var(--line);
}

.project-card {
  position: relative;
  display: flex;
  min-height: 38rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--background);
  isolation: isolate;
}

.project-card-large {
  grid-row: span 2;
  min-height: 76rem;
}

.project-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.94) 88%);
}

.project-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition:
    transform 800ms var(--ease),
    filter 800ms var(--ease);
}

.project-card:hover .project-visual {
  filter: contrast(1.15);
  transform: scale(1.035);
}

.visual-mesh {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 92, 0, 0.17), transparent 28%),
    linear-gradient(145deg, #171717, #050505 68%);
}

.mesh-line {
  position: absolute;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-bright), transparent);
  transform-origin: center;
}

.mesh-line-one {
  top: 28%;
  transform: rotate(21deg);
}

.mesh-line-two {
  top: 44%;
  transform: rotate(-32deg);
}

.mesh-line-three {
  top: 38%;
  transform: rotate(68deg);
}

.mesh-node {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--background);
  box-shadow: 0 0 1rem rgba(255, 92, 0, 0.7);
}

.node-one {
  top: 25%;
  left: 25%;
}

.node-two {
  top: 34%;
  right: 24%;
}

.node-three {
  top: 48%;
  left: 48%;
}

.visual-pulse {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 92, 0, 0.12), transparent 48%),
    #080808;
}

.pulse {
  position: absolute;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  animation: pulse-ring 4s ease-out infinite;
}

.pulse-one {
  width: 8rem;
  height: 8rem;
}

.pulse-two {
  width: 15rem;
  height: 15rem;
  animation-delay: 1.2s;
}

.pulse-three {
  width: 23rem;
  height: 23rem;
  animation-delay: 2.4s;
}

.visual-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding-bottom: 8rem;
  background:
    linear-gradient(180deg, rgba(255, 92, 0, 0.08), transparent 65%),
    #080808;
}

.visual-bars span {
  width: 3%;
  height: var(--height);
  max-height: 12rem;
  background: linear-gradient(to top, var(--accent), rgba(255, 92, 0, 0.1));
  transform-origin: bottom;
  transition: transform 500ms var(--ease);
}

.project-card:hover .visual-bars span {
  transform: scaleY(1.16);
}

.project-meta {
  position: absolute;
  top: 2rem;
  right: 2rem;
  left: 2rem;
  display: flex;
  justify-content: space-between;
}

.project-copy h3 {
  max-width: 42rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.project-card-small .project-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.project-copy p {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: #aaa8a3;
  font-size: 0.73rem;
  line-height: 1.7;
}

.project-metrics {
  display: flex;
  gap: 3rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    max-height 600ms var(--ease),
    margin 600ms var(--ease),
    opacity 450ms ease,
    transform 600ms var(--ease);
}

.project-card:hover .project-metrics {
  max-height: 8rem;
  margin-top: 2.5rem;
  opacity: 1;
  transform: translateY(0);
}

.project-metrics div {
  display: grid;
  gap: 0.45rem;
}

.project-metrics span {
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-metrics strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 0.3fr 1.6fr 1fr;
  gap: 2rem;
  min-height: 10rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--accent);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}

.process-step p {
  max-width: 32rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.7;
}

.step-code {
  justify-self: end;
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-align: right;
}

.contact {
  min-height: 100svh;
  padding-bottom: 2rem;
  background:
    radial-gradient(circle at 72% 40%, rgba(255, 92, 0, 0.11), transparent 25%),
    var(--background);
}

.contact-data {
  display: flex;
  justify-content: space-between;
}

.contact-content {
  display: flex;
  min-height: 65vh;
  flex-direction: column;
  justify-content: center;
}

.contact h2 {
  font-size: clamp(4.2rem, 10vw, 10rem);
}

.contact-button {
  display: flex;
  width: min(100%, 28rem);
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    padding 350ms var(--ease),
    color 250ms ease,
    border-color 250ms ease;
}

.contact-button span:last-child {
  color: var(--accent);
  font-size: 1.3rem;
}

.contact-button:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  border-color: var(--accent);
  color: var(--accent);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer a {
  transition: color 250ms ease;
}

footer a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes status-pulse {
  50% {
    opacity: 0.45;
    box-shadow: 0 0 0.25rem var(--accent);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(210%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-status {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    place-content: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--text);
    transition: transform 300ms ease;
  }

  .menu-toggle.is-active span:first-child {
    transform: translateY(0.22rem) rotate(45deg);
  }

  .menu-toggle.is-active span:last-child {
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  /* Centered full-screen overlay. z-index stays below the sticky header (50)
     so its brand + close button remain visible and tappable on top. */
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    visibility: hidden;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 2.5rem);
    padding: 6rem 1.5rem 3rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #050505;
    opacity: 0;
    transition:
      opacity 300ms ease,
      visibility 300ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav a {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 9vw, 5rem);
    transition: color 250ms ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--accent);
  }

  .hero {
    align-items: flex-start;
    padding-top: 12rem;
  }

  .hero-title {
    font-size: clamp(4rem, 14vw, 8rem);
  }

  .hero-bottom {
    width: 80%;
    margin-left: 0;
  }

  .hero-orbit {
    right: -14rem;
    bottom: -10rem;
    opacity: 0.7;
  }

  .manifesto {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card-large {
    grid-row: auto;
    min-height: 44rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 4.5rem;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 52rem;
    padding-top: 9rem;
  }

  .hero-index {
    top: 6.5rem;
  }

  .title-offset {
    padding-left: 0;
  }

  .hero-bottom {
    display: grid;
    width: 100%;
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .hero-description {
    max-width: 21rem;
  }

  .text-link {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-orbit {
    right: -16rem;
    bottom: -7rem;
  }

  .manifesto-note {
    margin-top: 3rem;
  }

  .capability {
    grid-template-columns: 2.5rem 1fr;
    min-height: 12rem;
  }

  .technical-reveal {
    display: none;
  }

  .project-card,
  .project-card-large {
    min-height: 38rem;
  }

  .project-metrics {
    max-height: none;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 1;
    transform: none;
  }

  .process-step {
    grid-template-columns: 2.5rem 1fr;
    padding: 2rem 0;
  }

  .step-code {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}