:root {
  color-scheme: dark;
  --bg: #070b12;
  --panel: rgba(13, 19, 29, 0.84);
  --panel-strong: #0f1621;
  --panel-border: rgba(148, 163, 184, 0.16);
  --text: #f4f7fb;
  --muted: #8d9bad;
  --muted-2: #5f6b7a;
  --accent: #6ee7c7;
  --accent-strong: #37d9aa;
  --accent-soft: rgba(110, 231, 199, 0.12);
  --blue: #72a5ff;
  --warning: #f7c66a;
  --danger: #ff756f;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 18%, rgba(72, 114, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(55, 217, 170, 0.07), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
  pointer-events: none;
}

.profile-image-slot img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
}

.ambient {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.11;
  z-index: -2;
  pointer-events: none;
}

.ambient-a {
  top: 8%;
  right: -10rem;
  background: var(--accent-strong);
}

.ambient-b {
  bottom: 5%;
  left: -12rem;
  background: #4b70ff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 48px));
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.94), rgba(7, 11, 18, 0.74));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(110, 231, 199, 0.35);
  border-radius: 9px;
  color: var(--accent);
  background: var(--accent-soft);
  letter-spacing: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #aab5c4;
  font-size: 13px;
}

.nav a,
.site-footer a,
.profile-list a,
.text-link {
  transition: color 180ms ease;
}

.nav a:hover,
.site-footer a:hover,
.profile-list a:hover,
.text-link:hover {
  color: var(--text);
}

.status-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(110, 231, 199, 0.16);
  border-radius: 999px;
  background: rgba(110, 231, 199, 0.05);
  color: #b9c7c5;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.status-dot,
.online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(55, 217, 170, 0.1), 0 0 14px rgba(55, 217, 170, 0.55);
}

.section-pager {
  position: fixed;
  top: 50%;
  right: max(22px, calc((100vw - 1360px) / 2));
  z-index: 20;
  transform: translateY(-50%);
  display: grid;
  gap: 13px;
}

.pager-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: #455164;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  transition: color 180ms ease;
}

.pager-link i {
  display: block;
  width: 18px;
  height: 1px;
  background: #344052;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.pager-link.is-active {
  color: var(--accent);
}

.pager-link.is-active i {
  width: 34px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(110, 231, 199, 0.4);
}

.page-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-section::after {
  content: attr(data-page);
  position: absolute;
  right: 5vw;
  bottom: 2.2vw;
  color: rgba(255, 255, 255, 0.018);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(90px, 14vw, 210px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.section-inner {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 84px;
}

.section-kicker,
.role,
.label,
.window-title,
.window-live,
.step-state,
.controller-footer,
.timeline-meta,
.stack-flow,
.profile-panel,
.section-pager,
.site-footer {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* 01 — INTRO */
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.62fr);
  gap: 94px;
  align-items: center;
}

.role {
  margin: 0;
  color: #8090a3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 20px 0 0;
  max-width: 780px;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.06em;
  font-weight: 730;
}

h1 span {
  display: block;
  margin-top: 16px;
  color: #8996a9;
  font-size: 0.42em;
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 560;
}

.intro-description {
  max-width: 680px;
  margin: 32px 0 0;
  color: #a5b0c0;
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #07110e;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button-primary:hover {
  background: #8bf0d5;
}

.button-secondary {
  color: #d4dbe5;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.profile-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 24, 36, 0.94), rgba(9, 14, 22, 0.93));
  box-shadow: var(--shadow);
}

.profile-panel::after,
.automation-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(110, 231, 199, 0.05), transparent 26%, transparent 70%, rgba(114, 165, 255, 0.045));
  pointer-events: none;
}

.panel-head {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #6e7a8d;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7f8c9f;
}

.online i {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 10px rgba(55, 217, 170, 0.6);
}

.profile-list {
  margin: 0;
  padding: 8px 22px 12px;
}

.profile-list > div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.profile-list > div:last-child {
  border-bottom: 0;
}

.profile-list dt {
  color: #576477;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.profile-list dd {
  margin: 0;
  color: #c4cdd9;
  font-size: 12px;
  line-height: 1.6;
}

.profile-footer {
  min-height: 54px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #5f6d80;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.profile-footer i {
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 231, 199, 0.15), rgba(255, 255, 255, 0.04));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #596679;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.scroll-cue i {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* 02 — STACK */
.stack-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 22%, transparent 76%, rgba(255, 255, 255, 0.01));
}

.stack-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(620px, 1fr);
  gap: 72px;
  align-items: center;
}

.stack-copy {
  align-self: center;
}

.stack-copy h2,
.experience-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.stack-copy > p:not(.section-kicker),
.experience-heading > p:not(.section-kicker) {
  max-width: 440px;
  margin: 26px 0 0;
  color: #8693a6;
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.stack-flow {
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px 14px;
  align-items: center;
  color: #687689;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.stack-flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 231, 199, 0.25), transparent);
}

.stack-flow i:last-of-type {
  display: block;
}

.automation-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 24, 36, 0.97), rgba(9, 14, 22, 0.95));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(22px);
}

.window-bar {
  min-height: 56px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3d4654;
}

.window-dots span:first-child { background: var(--danger); }
.window-dots span:nth-child(2) { background: var(--warning); }
.window-dots span:nth-child(3) { background: var(--accent-strong); }

.window-title {
  color: #718095;
  font-size: 12px;
}

.window-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #687588;
  font-size: 12px;
}

.window-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 10px rgba(55, 217, 170, 0.65);
}

.controller-head {
  padding: 24px 26px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label {
  margin: 0 0 5px;
  color: #667286;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.controller-head strong {
  font-size: 15px;
  letter-spacing: 0.03em;
}

.rerun-button {
  color: #8491a3;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 9px 12px;
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rerun-button:hover {
  color: var(--text);
  border-color: rgba(110, 231, 199, 0.24);
  background: rgba(110, 231, 199, 0.05);
}

.run-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 26px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.018);
}

.run-status {
  display: flex;
  align-items: center;
  gap: 13px;
}

.pulse-ring {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(114, 165, 255, 0.08), 0 0 18px rgba(114, 165, 255, 0.34);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.is-complete .pulse-ring {
  background: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(55, 217, 170, 0.08), 0 0 18px rgba(55, 217, 170, 0.34);
}

.run-status .label {
  display: block;
  margin-bottom: 3px;
}

.run-status strong,
.run-progress-text {
  font-size: 14px;
}

.run-progress-text {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.progress-track {
  height: 3px;
  margin: 14px 26px 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  box-shadow: 0 0 14px rgba(110, 231, 199, 0.3);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pipeline {
  position: relative;
  padding: 7px 26px 6px;
}

.pipeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 32px;
  left: 43px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(114, 165, 255, 0.16), rgba(110, 231, 199, 0.11));
}

.pipeline-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding: 12px 0;
  opacity: 0.4;
  transition: opacity 300ms ease, transform 300ms ease;
}

.pipeline-row.is-running,
.pipeline-row.is-done {
  opacity: 1;
}

.pipeline-row.is-running {
  transform: translateX(4px);
}

.step-indicator {
  display: flex;
  justify-content: center;
  padding-top: 1px;
}

.step-indicator span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #0c121b;
  color: #5a6679;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  transition: border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pipeline-row.is-running .step-indicator span {
  color: var(--blue);
  border-color: rgba(114, 165, 255, 0.45);
  background: rgba(114, 165, 255, 0.07);
  box-shadow: 0 0 18px rgba(114, 165, 255, 0.08);
}

.pipeline-row.is-done .step-indicator span {
  color: var(--accent);
  border-color: rgba(110, 231, 199, 0.38);
  background: rgba(110, 231, 199, 0.06);
}

.step-heading {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-heading strong {
  color: #d2d9e4;
  font-size: 14px;
  font-weight: 650;
}

.step-state {
  color: #5c6879;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pipeline-row.is-running .step-state { color: var(--blue); }
.pipeline-row.is-done .step-state { color: var(--accent); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tags span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
  color: #7f8b9d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10.5px;
  opacity: 0;
  transform: translateY(5px);
}

.pipeline-row.is-running .tags span,
.pipeline-row.is-done .tags span {
  animation: tag-in 360ms ease forwards;
}

.pipeline-row .tags span:nth-child(2) { animation-delay: 70ms; }
.pipeline-row .tags span:nth-child(3) { animation-delay: 140ms; }
.pipeline-row .tags span:nth-child(4) { animation-delay: 210ms; }
.pipeline-row .tags span:nth-child(5) { animation-delay: 280ms; }
.pipeline-row .tags span:nth-child(6) { animation-delay: 350ms; }

.pipeline-row.is-running .tags span {
  color: #a8b7ca;
  border-color: rgba(114, 165, 255, 0.13);
}

.pipeline-row.is-done .tags span {
  color: #899894;
}

@keyframes tag-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.controller-footer {
  min-height: 52px;
  margin-top: 6px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  color: #6a788b;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 11px;
}

.cursor {
  width: 7px;
  height: 13px;
  margin-left: 6px;
  background: var(--accent);
  opacity: 0.8;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* 03 — EXPERIENCE */
.experience-section {
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  gap: 96px;
  align-items: center;
  flex: 1;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 7px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(110, 231, 199, 0.5), rgba(114, 165, 255, 0.18));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 16px 88px 1fr;
  gap: 20px;
  padding: 0 0 54px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.timeline-marker span {
  position: relative;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(55, 217, 170, 0.07), 0 0 16px rgba(55, 217, 170, 0.38);
}

.timeline-item:nth-child(2) .timeline-marker span {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(114, 165, 255, 0.07), 0 0 16px rgba(114, 165, 255, 0.3);
}

.timeline-meta {
  padding-top: 2px;
  color: #647185;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.timeline-content {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-item:last-child .timeline-content {
  border-bottom: 0;
}

.timeline-content h3 {
  margin: 0;
  color: #d7dee8;
  font-size: clamp(23px, 2.1vw, 31px);
  letter-spacing: -0.035em;
}

.timeline-content p {
  margin: 13px 0 0;
  color: #8794a7;
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.timeline-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 7px;
  color: #768397;
  background: rgba(255, 255, 255, 0.018);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.site-footer {
  width: min(1220px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #596678;
  font-size: 10px;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-delay {
  transition-delay: 110ms;
}

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

@media (max-width: 1120px) {
  .section-pager {
    display: none;
  }

  .intro-layout,
  .stack-layout,
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .profile-panel {
    width: min(720px, 100%);
  }

  .stack-copy,
  .experience-heading {
    max-width: 720px;
  }

  .automation-window {
    width: min(820px, 100%);
  }

  .experience-layout {
    align-items: start;
  }

  .timeline {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header,
  .section-inner,
  .site-footer {
    width: min(100% - 32px, 1220px);
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .status-pill {
    font-size: 0;
    padding: 9px;
  }

  .page-section {
    min-height: auto;
  }

  .section-inner {
    padding: 112px 0 80px;
  }

  .intro-section .section-inner {
    min-height: 100svh;
    display: grid;
    align-items: center;
  }

  .intro-layout,
  .stack-layout,
  .experience-layout {
    gap: 42px;
  }

  h1 {
    font-size: clamp(48px, 14.5vw, 72px);
  }

  h1 span {
    font-size: 0.45em;
  }

  .intro-description {
    font-size: 15px;
  }

  .profile-list > div {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .profile-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .profile-footer i {
    width: 20px;
  }

  .scroll-cue {
    display: none;
  }

  .stack-copy h2,
  .experience-heading h2 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .window-title {
    display: none;
  }

  .window-bar {
    grid-template-columns: 1fr 1fr;
  }

  .controller-head,
  .pipeline,
  .controller-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .run-summary,
  .progress-track {
    margin-left: 16px;
    margin-right: 16px;
  }

  .pipeline::before {
    left: 33px;
  }

  .pipeline-row {
    grid-template-columns: 33px 1fr;
    gap: 11px;
  }

  .step-heading {
    align-items: flex-start;
  }

  .step-heading strong {
    font-size: 13px;
  }

  .step-state {
    font-size: 9px;
  }

  .tags span {
    font-size: 10px;
  }

  .timeline-item {
    grid-template-columns: 16px 1fr;
    gap: 16px;
    padding-bottom: 42px;
  }

  .timeline-meta {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-content {
    grid-column: 2;
    grid-row: 2;
    margin-top: -8px;
  }

  .timeline-marker {
    grid-row: 1 / span 2;
  }

  .site-footer {
    min-height: 118px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .page-section::after {
    font-size: 88px;
  }
}

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