:root {
  color-scheme: dark;
  --bg: #08090b;
  --paper: #111214;
  --panel: #141518;
  --panel-strong: #181a1e;
  --ink: #f5f5f3;
  --muted: #a0a0a0;
  --faint: #707070;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.07);
  --signal: #7cc7ff;
  --signal-soft: rgba(124, 199, 255, 0.12);
  --signal-ink: #08131d;
  --green: #a2c98f;
  --amber: #d9a85f;
  --grid-line: rgba(255, 255, 255, 0.026);
  --glow-a: rgba(124, 199, 255, 0.075);
  --glow-b: rgba(124, 199, 255, 0.045);
  --header-bg: rgba(8, 9, 11, 0.74);
  --header-bg-scrolled: rgba(8, 9, 11, 0.95);
  --hover-bg: rgba(255, 255, 255, 0.06);
  --quiet-bg: rgba(255, 255, 255, 0.035);
  --quiet-hover: rgba(255, 255, 255, 0.07);
  --project-hover: rgba(255, 255, 255, 0.04);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --maxw: 1060px;
  --radius: 10px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f4f1;
  --paper: #ffffff;
  --panel: #fafafa;
  --panel-strong: #eeeeee;
  --ink: #141414;
  --muted: #555555;
  --faint: #858585;
  --line: rgba(20, 20, 20, 0.14);
  --line-soft: rgba(20, 20, 20, 0.08);
  --signal: #0969da;
  --signal-soft: rgba(9, 105, 218, 0.1);
  --signal-ink: #ffffff;
  --green: #4f8a3f;
  --amber: #a97528;
  --grid-line: rgba(20, 20, 20, 0.035);
  --glow-a: rgba(9, 105, 218, 0.06);
  --glow-b: rgba(9, 105, 218, 0.035);
  --header-bg: rgba(244, 244, 241, 0.8);
  --header-bg-scrolled: rgba(244, 244, 241, 0.96);
  --hover-bg: rgba(20, 20, 20, 0.05);
  --quiet-bg: rgba(20, 20, 20, 0.03);
  --quiet-hover: rgba(20, 20, 20, 0.07);
  --project-hover: rgba(20, 20, 20, 0.035);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

body::after {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(820px 380px at 12% -6%, var(--glow-a), transparent 68%),
    radial-gradient(680px 360px at 94% 14%, var(--glow-b), transparent 72%);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 0 max(20px, calc((100% - var(--maxw)) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--header-bg-scrolled);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font: 700 0.88rem/1.2 var(--font-mono);
}

.brand img {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

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

.site-nav a,
.header-link {
  padding: 7px 11px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="true"] {
  background: var(--hover-bg);
  color: var(--ink);
}

.header-link {
  border: 1px solid var(--line);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 700 0.68rem/1.2 var(--font-mono);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--line);
  background: var(--hover-bg);
  color: var(--ink);
}

.header-link:hover,
.header-link:focus-visible {
  border-color: var(--line);
  background: var(--hover-bg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.8fr);
  gap: 44px 44px;
  align-items: center;
  width: min(var(--maxw), calc(100% - 40px));
  min-height: calc(100svh - 64px);
  margin-right: auto;
  margin-left: auto;
  padding: 76px 0 58px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--signal);
  font: 700 0.7rem/1.2 var(--font-mono);
  letter-spacing: 0.09em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8.5vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 720;
}

h1 span {
  color: var(--signal);
}

.role {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 52ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 680;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--signal-ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #8fd0ff;
}

.button-quiet {
  background: var(--quiet-bg);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--line);
  background: var(--quiet-hover);
}

.hero-orbit {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin: 0 auto;
  --radius-a: 132px;
  --radius-b: 196px;
  --duration-a: 30s;
  --duration-b: 46s;
}

.hero-ring,
.tech-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-ring-a,
.tech-ring-a {
  width: calc(var(--radius-a) * 2);
  height: calc(var(--radius-a) * 2);
}

.hero-ring-b,
.tech-ring-b {
  width: calc(var(--radius-b) * 2);
  height: calc(var(--radius-b) * 2);
}

.hero-core,
.tech-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero-core {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(124, 199, 255, 0.46);
  background: #10151a;
  box-shadow: 0 0 0 14px rgba(124, 199, 255, 0.035);
}

.hero-core img {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  opacity: 0.82;
}

.hero-core span {
  position: relative;
  z-index: 1;
  color: var(--signal);
  font: 760 1.15rem/1 var(--font-mono);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-orbit-group,
.tech-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  animation: orbit-spin var(--duration) linear infinite;
}

.hero-orbit-group-a,
.tech-orbit-a {
  --duration: var(--duration-a);
  --radius: var(--radius-a);
}

.hero-orbit-group-b,
.tech-orbit-b {
  --duration: var(--duration-b);
  --radius: var(--radius-b);
  animation-direction: reverse;
}

.hero-node,
.tech-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  transform: rotate(var(--angle));
}

.hero-node > span {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(18, 19, 22, 0.9);
  color: var(--muted);
  font: 700 0.66rem/1 var(--font-mono);
  animation: orbit-counter var(--duration) linear infinite;
}

.hero-orbit-group-b .hero-node > span {
  animation-direction: reverse;
}

.node-disc {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel-strong);
  animation: orbit-counter var(--duration) linear infinite;
}

.tech-orbit-a .node-disc {
  width: 54px;
  height: 54px;
}

.tech-orbit-b .node-disc {
  width: 60px;
  height: 60px;
  animation-direction: reverse;
}

.node-disc img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.tech-orbit-b .node-disc img {
  width: 28px;
  height: 28px;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-counter {
  0% {
    transform: translate(-50%, -50%) translateX(var(--radius)) rotate(calc(0deg - var(--angle)));
  }

  100% {
    transform: translate(-50%, -50%) translateX(var(--radius)) rotate(calc(0deg - var(--angle) - 360deg));
  }
}

.paper {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.block {
  padding: 46px clamp(22px, 5vw, 54px);
  border-bottom: 1px solid var(--line-soft);
}

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

.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.block-index {
  color: var(--faint);
  font: 700 0.72rem/1 var(--font-mono);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.96fr);
  gap: 34px;
  align-items: center;
}

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

.about-copy {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--panel);
}

.mini-stats div {
  padding: 15px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.mini-stats div:nth-child(2n) {
  border-right: 0;
}

.mini-stats div:nth-child(n + 3) {
  border-bottom: 0;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  margin-bottom: 2px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.project-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 23px 0 25px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 160ms ease, background 160ms ease;
}

.project-row:hover,
.project-row:focus-within {
  padding-left: 9px;
  background: linear-gradient(90deg, var(--project-hover), transparent 72%);
}

.project-row-featured {
  margin-top: 14px;
  padding: 23px;
  border: 1px solid rgba(124, 199, 255, 0.24);
  border-radius: 7px;
  background:
    linear-gradient(118deg, rgba(124, 199, 255, 0.1), transparent 42%),
    var(--panel);
}

.project-row-featured:hover,
.project-row-featured:focus-within {
  padding-left: 23px;
}

.row-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 3px;
}

.row-index {
  color: var(--signal);
  font: 700 1.08rem/1 var(--font-mono);
}

.row-tag {
  width: max-content;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font: 700 0.63rem/1.1 var(--font-mono);
}

.row-body {
  min-width: 0;
}

.row-title-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font: 700 0.65rem/1.1 var(--font-mono);
}

.status-active {
  border-color: rgba(162, 201, 143, 0.3);
  background: rgba(162, 201, 143, 0.09);
  color: var(--green);
}

.status-wip {
  border-color: rgba(217, 168, 95, 0.3);
  color: var(--amber);
}

.row-body p {
  max-width: 66ch;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-row li {
  padding: 3px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  color: var(--muted);
  font: 700 0.67rem/1.1 var(--font-mono);
}

.row-link {
  align-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(124, 199, 255, 0.55);
  color: var(--signal);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.row-link:hover,
.row-link:focus-visible {
  border-color: var(--signal);
  color: #a9d9ff;
}

.archive {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 0 0;
  border-top: 1px dashed var(--line);
}

.archive .eyebrow {
  margin-bottom: 8px;
}

.archive h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.archive-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.archive-links a {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--quiet-bg);
  transition: border-color 160ms ease, background 160ms ease;
}

.archive-links a:hover,
.archive-links a:focus-visible {
  border-color: var(--line);
  background: var(--hover-bg);
}

.archive-links span,
.archive-links small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-links span {
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.archive-links small {
  color: var(--muted);
  font-size: 0.73rem;
}

.tech-card {
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(300px 300px at 50% 50%, rgba(124, 199, 255, 0.065), transparent 68%),
    var(--panel);
  --radius-a: 112px;
  --radius-b: 174px;
  --duration-a: 30s;
  --duration-b: 46s;
}

.hero .tech-card {
  height: clamp(390px, 48vw, 560px);
  --radius-a: 118px;
  --radius-b: 188px;
}

.tech-core {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(124, 199, 255, 0.5);
  background: var(--panel-strong);
  box-shadow: 0 0 0 10px rgba(124, 199, 255, 0.035);
}

.tech-core-avatar {
  padding: 6px;
  overflow: hidden;
}

.tech-core-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.tech-core span {
  color: var(--signal);
  font: 760 1.05rem/1 var(--font-mono);
}

.tech-core small {
  margin-top: 2px;
  color: var(--muted);
  font: 600 0.57rem/1.2 var(--font-mono);
}

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

.stack-note {
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--panel);
}

.stack-note:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.stack-index-number {
  display: block;
  margin-bottom: 9px;
  color: var(--signal);
  font: 700 0.7rem/1 var(--font-mono);
}

.stack-note h3 {
  margin-bottom: 7px;
}

.stack-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: start;
}

.contact-layout > p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.contact-list a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 160ms ease, color 160ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  padding-left: 8px;
  color: var(--signal);
}

.contact-list span {
  color: var(--faint);
  font: 700 0.65rem/1.2 var(--font-mono);
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
}

.site-footer span:nth-child(2) {
  text-align: center;
}

.site-footer a {
  justify-self: end;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@media (max-width: 1119px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-orbit {
    max-width: 440px;
  }

  .about-layout,
  .stack-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .project-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .row-link {
    grid-column: 2;
    align-self: start;
    margin-top: -8px;
  }

  .tech-card {
    height: 350px;
    --radius-a: 92px;
    --radius-b: 146px;
  }

  .hero .tech-card {
    --radius-a: 118px;
    --radius-b: 146px;
  }

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

  .archive-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 56px;
    padding: 0 12px;
  }

  .hero {
    width: calc(100% - 24px);
    padding: 62px 0 42px;
  }

  .paper {
    width: calc(100% - 24px);
    margin-bottom: 48px;
  }

  .site-footer {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 0.82rem;
  }

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

  .header-link {
    padding: 6px 9px;
    font-size: 0.8rem;
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle {
    padding: 5px 7px;
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .role {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-orbit {
    max-width: 100%;
    --radius-a: 92px;
    --radius-b: 140px;
  }

  .hero-core {
    width: 86px;
    height: 86px;
  }

  .hero-core img {
    width: 56px;
    height: 56px;
  }

  .hero-node > span {
    min-width: 40px;
    height: 26px;
    font-size: 0.59rem;
  }

  .block {
    padding: 34px 20px;
  }

  .block-head {
    margin-bottom: 24px;
  }

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

  .project-row,
  .project-row-featured {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0 22px;
  }

  .project-row-featured {
    padding: 20px;
  }

  .project-row:hover,
  .project-row:focus-within,
  .project-row-featured:hover,
  .project-row-featured:focus-within {
    padding-left: 20px;
  }

  .row-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .row-link {
    grid-column: auto;
    margin-top: 0;
  }

  .archive-links {
    grid-template-columns: 1fr;
  }

  .tech-card {
    height: 300px;
    --radius-a: 78px;
    --radius-b: 110px;
  }

  .hero .tech-card {
    height: 320px;
    --radius-a: 92px;
    --radius-b: 122px;
  }

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

  .tech-orbit-a .node-disc {
    width: 46px;
    height: 46px;
  }

  .tech-orbit-b .node-disc {
    width: 52px;
    height: 52px;
  }

  .node-disc img {
    width: 21px;
    height: 21px;
  }

  .tech-orbit-b .node-disc img {
    width: 24px;
    height: 24px;
  }

  .tech-core {
    width: 72px;
    height: 72px;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
  }

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

  .site-footer span:nth-child(2) {
    display: none;
  }
}

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

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

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