:root {
  color-scheme: dark;
  --bg: oklch(0.16 0.018 75);
  --surface: oklch(0.205 0.024 75);
  --surface-raised: oklch(0.245 0.03 75);
  --surface-soft: oklch(0.285 0.035 75);
  --text: oklch(0.94 0.025 90);
  --muted: oklch(0.72 0.03 80);
  --faint: oklch(0.62 0.025 80);
  --line: oklch(1 0 0 / 0.12);
  --line-strong: oklch(1 0 0 / 0.2);
  --accent: oklch(0.8 0.15 72);
  --accent-strong: oklch(0.72 0.18 48);
  --green: oklch(0.78 0.16 145);
  --shadow: 0 24px 60px oklch(0 0 0 / 0.24), 0 3px 10px oklch(0 0 0 / 0.2);
  --shadow-soft: 0 14px 34px oklch(0 0 0 / 0.16), 0 2px 6px oklch(0 0 0 / 0.14);
  font-family: "SF Pro Display", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 11% 2%, oklch(0.31 0.055 66 / 0.28), transparent 28rem),
    radial-gradient(circle at 92% 26%, oklch(0.3 0.045 178 / 0.12), transparent 26rem),
    var(--bg);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: var(--bg);
  background: var(--accent);
}

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

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

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

svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-shell {
  width: min(100% - 3rem, 1380px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--bg);
  background: var(--accent);
  border-radius: 0.65rem;
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  box-shadow: 0 5px 14px oklch(0.8 0.15 72 / 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav > a:not(.nav-cta),
.text-link,
.arrow-link,
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  transition-property: color, opacity, transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.site-nav > a:not(.nav-cta):hover,
.text-link:hover,
.arrow-link:hover,
.back-to-top:hover {
  color: var(--accent);
}

.site-nav svg,
.text-link svg,
.arrow-link svg,
.back-to-top svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 180ms ease-out;
}

.site-nav a:hover svg,
.text-link:hover svg,
.arrow-link:hover svg,
.back-to-top:hover svg {
  transform: translate(2px, -2px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition-property: transform, background-color, color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.nav-cta {
  margin-inline-start: 0.55rem;
  color: var(--bg);
  background: var(--text);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--accent);
  box-shadow: 0 8px 22px oklch(0.8 0.15 72 / 0.18);
}

.nav-cta:active,
.button:active {
  transform: scale(0.96);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  min-height: min(48rem, calc(100vh - 5rem));
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(6rem, 12vw, 10rem);
}

.hero-copy,
.signal-card,
.section > *,
.featured-project,
.about-section {
  animation: rise-in 700ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.signal-card {
  animation-delay: 100ms;
}

.section > * {
  animation-delay: 200ms;
}

.featured-project {
  animation-delay: 300ms;
}

.about-section {
  animation-delay: 400ms;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
}

.eyebrow-dot,
.status-pill > span,
.project-status > span {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem oklch(0.78 0.16 145 / 0.1), 0 0 1rem oklch(0.78 0.16 145 / 0.35);
}

.hero h1 {
  max-width: 9.5ch;
  margin: 1.5rem 0 1.75rem;
  color: var(--text);
  font-size: clamp(3.6rem, 8.1vw, 7.8rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-wrap: balance;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero h1 em,
.about-copy h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero-intro {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-actions,
.about-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.button-primary {
  color: var(--bg);
  background: var(--text);
  box-shadow: var(--shadow-soft);
}

.button-primary svg,
.button-secondary svg {
  transition: transform 180ms ease-out;
}

.button-primary:hover svg,
.button-secondary:hover svg {
  transform: translateX(3px);
}

.text-link {
  color: var(--muted);
  font-weight: 600;
}

.signal-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  isolation: isolate;
  background:
    linear-gradient(145deg, oklch(0.27 0.04 74 / 0.94), oklch(0.19 0.025 75 / 0.98)),
    var(--surface);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.signal-card::before,
.signal-card::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.signal-card::before {
  top: -11rem;
  right: -9rem;
  width: 30rem;
  height: 30rem;
  background: oklch(0.8 0.15 72 / 0.1);
  filter: blur(2px);
}

.signal-card::after {
  bottom: -10rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  background: oklch(0.65 0.12 178 / 0.08);
  filter: blur(18px);
}

.signal-card-top,
.project-kicker,
.repo-card-top,
.site-footer,
.repo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-pill,
.project-status,
.now-stamp,
.list-state,
.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-number {
  color: var(--faint);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.signal-orbit {
  position: relative;
  display: grid;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  margin: clamp(1rem, 4vw, 2.5rem) auto 0;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.orbit-one {
  width: 72%;
  height: 30%;
}

.orbit-two {
  width: 88%;
  height: 42%;
  transform: rotate(55deg);
  border-color: oklch(0.8 0.15 72 / 0.22);
}

.orbit-core {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  color: var(--bg);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0.8rem oklch(0.8 0.15 72 / 0.07), 0 14px 34px oklch(0.8 0.15 72 / 0.17);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.orbit-spark {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.orbit-spark-one {
  top: 26%;
  right: 13%;
  background: var(--green);
  box-shadow: 0 0 1rem oklch(0.78 0.16 145 / 0.7);
}

.orbit-spark-two {
  bottom: 24%;
  left: 13%;
  background: var(--accent-strong);
  box-shadow: 0 0 1rem oklch(0.72 0.18 48 / 0.7);
}

.signal-card-copy {
  position: absolute;
  right: clamp(1.4rem, 3vw, 2.25rem);
  bottom: clamp(1.4rem, 3vw, 2.25rem);
  left: clamp(1.4rem, 3vw, 2.25rem);
}

.signal-card-copy h2 {
  margin: 0.65rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

.signal-card-copy h2 span {
  color: var(--accent);
}

.signal-card-copy p:last-child {
  max-width: 25ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-wrap: pretty;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 oklch(0 0 0 / 0.16), inset 0 -1px 0 oklch(1 0 0 / 0.02);
}

.ticker-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: max-content;
  padding: 1rem 0;
  color: var(--faint);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker b {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 400;
}

.section {
  padding: clamp(6rem, 12vw, 11rem) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-intro {
  max-width: 48ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  text-wrap: pretty;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(240px, 0.94fr);
  min-height: 25rem;
  overflow: hidden;
  background: var(--surface);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.featured-project-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 4.25rem);
}

.project-kicker {
  width: 100%;
  gap: 1rem;
}

.project-tag {
  color: var(--accent);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-status {
  color: var(--green);
  font-size: 0.62rem;
}

.featured-project-main h3 {
  margin: auto 0 0.75rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.featured-project-main > p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.arrow-link {
  margin-top: 1.6rem;
  padding-inline: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
}

.featured-project-art {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, oklch(0.31 0.08 54 / 0.8), oklch(0.24 0.08 42 / 0.96)),
    var(--accent-strong);
  isolation: isolate;
}

.featured-project-art::before {
  position: absolute;
  inset: 1.6rem;
  border: 1px solid oklch(1 0 0 / 0.25);
  border-radius: 1.1rem;
  content: "";
}

.art-label {
  position: absolute;
  top: 2.25rem;
  left: 2.25rem;
  color: oklch(1 0 0 / 0.7);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.art-line {
  position: absolute;
  display: block;
  height: 1px;
  background: oklch(1 0 0 / 0.55);
  transform: rotate(-36deg);
}

.art-line-one {
  top: 44%;
  right: -8%;
  width: 85%;
}

.art-line-two {
  top: 64%;
  left: -14%;
  width: 76%;
  transform: rotate(31deg);
  background: oklch(0.16 0.018 75 / 0.65);
}

.art-circle {
  position: absolute;
  top: 38%;
  left: 43%;
  width: 7rem;
  height: 7rem;
  border: 1px solid oklch(1 0 0 / 0.65);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5rem oklch(1 0 0 / 0.04), 0 0 0 3rem oklch(1 0 0 / 0.035);
}

.art-word {
  position: absolute;
  right: -0.5rem;
  bottom: 1.4rem;
  color: oklch(1 0 0 / 0.13);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.repo-heading {
  margin: clamp(4rem, 8vw, 7rem) 0 1.5rem;
  gap: 1rem;
}

.repo-heading h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.75rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.count-badge {
  justify-content: center;
  min-width: 1.8rem;
  min-height: 1.4rem;
  padding: 0.2rem 0.4rem;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0;
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.repo-card,
.repo-skeleton {
  min-height: 15rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.repo-card {
  display: flex;
  flex-direction: column;
  transition-property: transform, background-color, box-shadow;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
}

.repo-card:hover {
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.repo-card-top {
  gap: 0.75rem;
}

.repo-language {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--faint);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.language-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}

.repo-card time,
.repo-stars {
  color: var(--faint);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.repo-card h4 {
  margin: 2rem 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.repo-card h4 a:hover {
  color: var(--accent);
}

.repo-card-description {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-wrap: pretty;
}

.repo-card-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.repo-note {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--faint);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.67rem;
}

.repo-skeleton {
  background: linear-gradient(110deg, var(--surface) 30%, var(--surface-raised) 45%, var(--surface) 60%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

.now-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.now-intro {
  align-self: start;
}

.now-stamp {
  padding: 0.6rem 0.8rem;
  color: var(--accent);
  background: oklch(0.8 0.15 72 / 0.08);
  border-radius: 999px;
  font-size: 0.6rem;
}

.now-intro p {
  max-width: 32ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

.now-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.now-list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.now-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.list-index {
  color: var(--accent);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
}

.now-list h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.now-list p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-wrap: pretty;
}

.list-state {
  justify-self: end;
  color: var(--faint);
  font-size: 0.58rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1.4fr);
  gap: 3rem;
  margin-top: clamp(6rem, 12vw, 11rem);
  padding: clamp(2.5rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 82% 12%, oklch(0.8 0.15 72 / 0.16), transparent 18rem),
    var(--surface);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.about-mark {
  color: var(--accent);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.7;
}

.about-copy h2 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 580;
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-wrap: balance;
}

.about-copy > p {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  text-wrap: pretty;
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.site-footer {
  gap: 1rem;
  min-height: 8rem;
  margin-top: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
}

.footer-brand {
  color: var(--text);
  font-size: 0.82rem;
}

.footer-brand .brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  font-size: 0.55rem;
}

.site-footer p {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.back-to-top {
  padding-inline: 0;
  color: var(--muted);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
    min-height: 0;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .signal-card {
    width: min(100%, 38rem);
    min-height: 27rem;
    margin-inline: auto;
  }

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

  .featured-project-main {
    min-height: 23rem;
  }

  .featured-project-art {
    min-height: 18rem;
  }

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

  .about-section {
    grid-template-columns: minmax(80px, 0.3fr) minmax(0, 1.7fr);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 2rem, 1380px);
  }

  .site-header {
    min-height: 4.5rem;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    margin-inline-start: 0;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero h1 {
    margin-top: 1.2rem;
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

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

  .button-primary {
    width: 100%;
  }

  .signal-card {
    min-height: 25rem;
    border-radius: 1.5rem;
  }

  .signal-orbit {
    width: min(100%, 20rem);
  }

  .ticker-track {
    justify-content: flex-start;
    gap: 1.4rem;
  }

  .section-heading,
  .now-grid,
  .about-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading {
    margin-bottom: 2.2rem;
  }

  .section-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .featured-project,
  .about-section {
    border-radius: 1.5rem;
  }

  .featured-project-main {
    min-height: 22rem;
    padding: 1.75rem;
  }

  .featured-project-art {
    min-height: 15rem;
  }

  .featured-project-art::before {
    inset: 1rem;
  }

  .art-label {
    top: 1.5rem;
    left: 1.5rem;
  }

  .repo-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .now-list li {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .list-state {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.25rem;
  }

  .about-section {
    padding: 2rem 1.5rem 2.5rem;
  }

  .about-mark {
    font-size: 4rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.5rem 0;
  }

  .site-footer p {
    order: 3;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
