:root {
  --bg: #090a0b;
  --surface: #101214;
  --surface-2: #15181a;
  --ink: #f2f4ee;
  --muted: #92988f;
  --line: rgba(242, 244, 238, 0.16);
  --acid: #bcff2f;
  --blue: #94b8ff;
  --orange: #ff9f43;
  --max: 1420px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 9%, rgba(188, 255, 47, 0.075), transparent 24rem),
    var(--bg);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  color: #080a08;
  background: var(--acid);
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.035;
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  left: var(--x, 50%);
  top: var(--y, 20%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: rgba(188, 255, 47, 0.055);
  filter: blur(70px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 clamp(1.25rem, 3.5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 11, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--bg);
  background: var(--acid);
  font: 700 0.75rem/1 "SFMono-Regular", Consolas, monospace;
  transform: rotate(-3deg);
}

.brand-name span,
.footer-mark span {
  color: var(--acid);
}

nav {
  display: flex;
  gap: 1.45rem;
  font: 600 0.75rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a,
.site-footer a {
  color: var(--muted);
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--acid);
}

.status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font: 600 0.7rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.13em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(188, 255, 47, 0.1);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 8.5rem clamp(1.25rem, 6vw, 7.5rem) 3.2rem;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 76px 0 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 83%);
  opacity: 0.34;
}

.hero-meta,
.section-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font: 600 0.72rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.12em;
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 4.5rem 0 3.5rem;
  font-size: clamp(4.15rem, 11.6vw, 11.8rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 244, 238, 0.6);
  transform: translateX(4vw);
}

.hero-title .accent {
  display: inline;
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-bottom p {
  max-width: 580px;
  margin: 0;
  color: #c5c9c1;
  font-size: clamp(1.05rem, 1.5vw, 1.38rem);
  line-height: 1.45;
}

.round-link {
  display: grid;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  place-items: center;
  border: 1px solid rgba(188, 255, 47, 0.72);
  border-radius: 50%;
  color: var(--acid);
  font: 700 0.68rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.12em;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.round-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--bg);
  background: var(--acid);
  transform: rotate(-5deg);
}

.hero-rail {
  position: absolute;
  top: 42%;
  right: 1.4rem;
  display: grid;
  gap: 0.45rem;
  place-items: center;
  color: var(--muted);
  font: 600 0.58rem/1 "SFMono-Regular", Consolas, monospace;
}

.hero-rail div {
  width: 1px;
  height: 85px;
  background: linear-gradient(var(--acid) 35%, var(--line) 35%);
}

.section-shell {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.work,
.stack {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.section-kicker {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: 4rem;
  align-items: end;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.section-heading h2,
.stack-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.section-heading p,
.stack-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.skills {
  padding-block: clamp(5rem, 10vw, 10rem);
}

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

.skill-band {
  display: grid;
  grid-template-columns: minmax(130px, 0.27fr) 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 76px;
}

.skill-index,
.proof-label,
.proof-type,
.proof-item > a,
.skill-tools {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skill-index {
  color: var(--acid);
  font-size: 0.7rem;
}

.skill-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2.5rem, 5vw, 6rem);
}

.skill-lead h3 {
  margin: -0.12em 0 2.2rem;
  font-size: clamp(2.8rem, 4.7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.skill-lead h3 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 244, 238, 0.65);
}

.skill-lead > p {
  max-width: 420px;
  margin: 0;
  color: #c1c6bd;
  font-size: 1.04rem;
  line-height: 1.6;
}

.skill-tools {
  display: flex;
  gap: 0.6rem 1.1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.68rem;
}

.skill-tools span::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--acid);
}

.skill-proof {
  padding-left: clamp(1.4rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
}

.proof-label {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.66rem;
}

.proof-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 200ms ease, border-color 200ms ease;
}

.proof-item:hover {
  padding-left: 0.5rem;
  border-color: rgba(188, 255, 47, 0.5);
}

.proof-item h4 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.proof-item p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.proof-type,
.proof-item > a {
  margin-top: 0.25rem;
  white-space: nowrap;
  font-size: 0.62rem;
}

.proof-type {
  color: var(--muted);
}

.proof-item > a {
  padding: 0.25rem 0;
  color: var(--acid);
  transition: transform 180ms ease;
}

.proof-item > a:hover,
.proof-item > a:focus-visible {
  transform: translate(3px, -3px);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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

.project {
  position: relative;
  display: grid;
  min-height: 410px;
  grid-template-columns: 80px minmax(260px, 0.85fr) 1.15fr;
  gap: clamp(1rem, 3vw, 4rem);
  padding: clamp(1.35rem, 3.5vw, 3.7rem);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
  transition: background 260ms ease;
}

.project:hover,
.project:focus-within,
.project:focus {
  background: var(--surface);
  outline: none;
}

.project-index,
.project-label,
.project-copy li,
.visual-tag,
.rarity {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.project-index {
  color: var(--muted);
  font-size: 0.76rem;
}

.project-copy {
  z-index: 2;
  display: flex;
  padding: 0.4rem 0;
  flex-direction: column;
  justify-content: center;
}

.project-label {
  margin-bottom: 1.5rem;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.project-copy h3 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.project-copy p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.project-copy ul {
  display: flex;
  gap: 0.55rem;
  margin: 2.25rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.project-copy li {
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--line);
  color: #c7cbc4;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-visual {
  position: relative;
  min-height: 310px;
  background: var(--surface-2);
  overflow: hidden;
}

.arctic-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(148, 184, 255, 0.16), transparent 48%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(148, 184, 255, 0.035) 22px 23px),
    #0d1118;
}

.core {
  display: grid;
  width: 84px;
  height: 84px;
  z-index: 2;
  place-items: center;
  border: 1px solid var(--blue);
  color: var(--blue);
  font: 400 2rem/1 Georgia, serif;
  transform: rotate(45deg);
}

.core::first-letter {
  transform: rotate(-45deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(148, 184, 255, 0.34);
  border-radius: 50%;
}

.orbit-one {
  width: 220px;
  height: 220px;
}

.orbit-two {
  width: 330px;
  height: 140px;
  transform: rotate(-23deg);
}

.visual-tag {
  position: absolute;
  padding: 0.35rem 0.5rem;
  color: var(--blue);
  background: #0d1118;
  border: 1px solid rgba(148, 184, 255, 0.32);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.tag-a { top: 18%; left: 12%; }
.tag-b { top: 28%; right: 10%; }
.tag-c { bottom: 15%; left: 28%; }

.pirate-visual {
  background: #171008;
}

.pixel-sun {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 72px;
  height: 72px;
  background: var(--orange);
  box-shadow: 0 0 80px rgba(255, 159, 67, 0.25);
}

.pixel-ship {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 190px;
  height: 150px;
  transform: translate(-50%, -50%);
}

.mast {
  position: absolute;
  left: 91px;
  top: 8px;
  width: 7px;
  height: 102px;
  background: #efddbd;
}

.sail {
  position: absolute;
  left: 36px;
  top: 17px;
  width: 53px;
  height: 72px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.sail::after {
  position: absolute;
  left: 67px;
  width: 50px;
  height: 60px;
  content: "";
  background: #efddbd;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hull {
  position: absolute;
  left: 19px;
  bottom: 14px;
  width: 160px;
  height: 43px;
  background: #c5662e;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 20% 100%);
}

.waves {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 38px;
  background: repeating-linear-gradient(90deg, #1c75a7 0 44px, #63c4da 44px 88px);
  clip-path: polygon(0 45%, 8% 0, 16% 45%, 24% 0, 32% 45%, 40% 0, 48% 45%, 56% 0, 64% 45%, 72% 0, 80% 45%, 88% 0, 96% 45%, 100% 10%, 100% 100%, 0 100%);
}

.wave-a { bottom: 0; opacity: 0.78; }
.wave-b { bottom: 22px; opacity: 0.35; transform: translateX(35px); }

.rarity {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--orange);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.trade-visual {
  display: flex;
  gap: 1px;
  padding: clamp(1rem, 3vw, 2.5rem);
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(188, 255, 47, 0.035) 1px, transparent 1px),
    #0c110d;
  background-size: 100% 34px;
}

.terminal-line {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(188, 255, 47, 0.13);
  color: #a4aa9e;
  font: 500 0.72rem/1 "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.terminal-line b {
  color: var(--ink);
  font-weight: 500;
}

.terminal-line i {
  color: var(--acid);
  font-style: normal;
}

.terminal-line.active {
  color: var(--bg);
  background: var(--acid);
}

.terminal-line.active b,
.terminal-line.active i {
  color: var(--bg);
}

.chain-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
  color: rgba(188, 255, 47, 0.5);
  font: 600 0.62rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.15em;
}

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

.stack-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 7rem);
  background: var(--line);
}

.stack-intro,
.capability {
  min-height: 390px;
  padding: clamp(1.7rem, 3vw, 3rem);
  background: var(--bg);
}

.stack-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack-intro h2 {
  font-size: clamp(2.8rem, 4.3vw, 5rem);
}

.stack-intro p {
  max-width: 360px;
}

.capability {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: color 220ms ease, background 220ms ease;
}

.capability:hover {
  color: var(--bg);
  background: var(--acid);
}

.cap-number {
  color: var(--muted);
  font: 600 0.68rem/1 "SFMono-Regular", Consolas, monospace;
}

.capability h3 {
  margin: auto 0 1.2rem;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.capability:hover p,
.capability:hover .cap-number {
  color: rgba(9, 10, 11, 0.66);
}

.cap-line {
  width: 100%;
  height: 2px;
  margin-top: 2rem;
  transform-origin: left;
  background: var(--acid);
  transition: background 220ms ease, transform 220ms ease;
}

.capability:hover .cap-line {
  background: var(--bg);
  transform: scaleX(0.42);
}

.manifesto {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background: var(--acid);
  color: var(--bg);
  overflow: hidden;
}

.manifesto-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 10, 11, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 11, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
}

.manifesto-content {
  position: relative;
  z-index: 1;
  padding-block: 6rem;
}

.manifesto .section-kicker {
  color: rgba(9, 10, 11, 0.65);
  border-color: rgba(9, 10, 11, 0.25);
}

.manifesto h2 {
  margin: clamp(4rem, 9vw, 8rem) 0;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.manifesto h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(9, 10, 11, 0.58);
}

.manifesto-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.manifesto-bottom p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.5;
}

.principles {
  display: flex;
  gap: 1.4rem;
  justify-content: end;
  font: 700 0.7rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.1em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: end;
  min-height: 280px;
  padding: 4rem clamp(1.25rem, 4vw, 4rem);
  background: #050606;
}

.footer-mark {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font: 500 0.68rem/1.7 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.1em;
}

.site-footer a {
  justify-self: end;
  font: 600 0.68rem/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-title {
    font-size: clamp(4rem, 14vw, 8rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    max-width: 560px;
  }

  .skill-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skill-main {
    grid-template-columns: 1fr 1.2fr;
  }

  .project {
    grid-template-columns: 48px 1fr;
  }

  .project-visual {
    grid-column: 2;
    min-height: 270px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
  }

  .brand-name,
  .status span:last-child {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: 7.4rem;
  }

  .hero::before {
    top: 66px;
  }

  .hero-meta,
  .section-kicker {
    gap: 1rem;
    font-size: 0.6rem;
  }

  .hero-title {
    padding-block: 3rem;
    font-size: clamp(3.35rem, 18vw, 5.5rem);
    line-height: 0.84;
  }

  .hero-title .outline {
    transform: translateX(0);
  }

  .hero-bottom {
    align-items: center;
  }

  .hero-bottom p {
    font-size: 0.98rem;
  }

  .round-link {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .round-link span {
    display: none;
  }

  .hero-rail {
    display: none;
  }

  .section-shell {
    width: min(calc(100% - 2rem), var(--max));
  }

  .section-heading {
    gap: 2rem;
    padding-block: 3.5rem;
  }

  .skill-band {
    padding-block: 3.4rem;
    scroll-margin-top: 66px;
  }

  .skill-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .skill-lead h3 {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .skill-tools {
    margin-top: 2rem;
  }

  .skill-proof {
    padding-left: 0;
    border-left: 0;
  }

  .proof-item {
    gap: 0.4rem;
  }

  .proof-item h4 {
    font-size: 1.38rem;
  }

  .proof-item p {
    font-size: 0.88rem;
  }

  .proof-type,
  .proof-item > a {
    max-width: 84px;
    white-space: normal;
    text-align: right;
  }

  .project {
    display: block;
    min-height: 0;
    padding: 1.25rem;
  }

  .project-index {
    margin-bottom: 3rem;
  }

  .project-copy h3 {
    font-size: 2.6rem;
  }

  .project-visual {
    min-height: 230px;
    margin-top: 2.4rem;
  }

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

  .stack-intro,
  .capability {
    min-height: 320px;
  }

  .manifesto {
    min-height: 760px;
  }

  .manifesto h2 {
    font-size: clamp(3.35rem, 17vw, 5.7rem);
  }

  .manifesto-bottom {
    grid-template-columns: 1fr;
  }

  .principles {
    justify-content: start;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .site-footer {
    min-height: 220px;
    padding-block: 3rem;
  }

  .site-footer a {
    align-self: center;
  }
}

@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;
  }
}
