:root {
  color-scheme: dark;
  --bg: #0b1020;
  --bg-deep: #070b16;
  --surface: #11182b;
  --surface-strong: #17213a;
  --surface-soft: rgba(17, 24, 43, .72);
  --text: #f5f7fb;
  --text-soft: #b8c0d2;
  --text-muted: #78839a;
  --line: rgba(186, 196, 219, .14);
  --line-strong: rgba(186, 196, 219, .25);
  --accent: #7ce8dc;
  --accent-strong: #39c7ba;
  --violet: #b8a4ff;
  --pink: #f29acb;
  --shadow: 0 24px 80px rgba(0, 0, 0, .26);
  --radius: 18px;
  --max-width: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f6f8;
  --bg-deep: #eef0f4;
  --surface: #ffffff;
  --surface-strong: #eef1f5;
  --surface-soft: rgba(255, 255, 255, .82);
  --text: #151a26;
  --text-soft: #4a5569;
  --text-muted: #788294;
  --line: rgba(21, 26, 38, .13);
  --line-strong: rgba(21, 26, 38, .24);
  --accent: #087f7a;
  --accent-strong: #05635f;
  --violet: #6556b4;
  --pink: #bd4d8a;
  --shadow: 0 24px 80px rgba(38, 49, 74, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
body::selection { background: var(--accent); color: var(--bg-deep); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' 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='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.progress-line { position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 100; background: transparent; }
.progress-line span { display: block; height: 100%; width: 0; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.container { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max-width));
  height: 74px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .3s var(--ease), background .3s ease, border .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  height: 62px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0,0,0,.12);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; letter-spacing: -.02em; }
.brand-mark {
  width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--line-strong);
  border-radius: 9px; font-size: 10px; font-weight: 800; letter-spacing: -.08em; color: var(--accent);
  background: linear-gradient(140deg, var(--surface-strong), transparent); box-shadow: inset 0 0 16px rgba(124,232,220,.05);
}
.brand-text { color: var(--text-soft); }
.brand-text strong { color: var(--text); font-weight: 700; }
.desktop-nav { display: flex; align-items: center; gap: 32px; margin-left: 110px; }
.desktop-nav a { color: var(--text-muted); font-size: 13px; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 7px; }
.icon-button {
  display: inline-grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid var(--line);
  border-radius: 10px; background: transparent; cursor: pointer; transition: border .2s ease, background .2s ease, transform .2s ease;
}
.icon-button:hover { border-color: var(--line-strong); background: var(--surface); transform: translateY(-1px); }
.command-key { font-size: 15px; color: var(--text-muted); }
.theme-icon { font-size: 16px; color: var(--accent); transform: rotate(-25deg); }
.menu-toggle { display: none; gap: 4px; }
.menu-toggle span { width: 13px; height: 1px; background: var(--text-soft); }

.hero { min-height: 760px; padding-top: 174px; display: grid; grid-template-columns: 1fr .95fr; gap: 60px; align-items: center; position: relative; }
.hero::before { content: ""; position: absolute; top: 120px; left: 23%; width: 580px; height: 360px; background: radial-gradient(ellipse, rgba(73, 165, 160, .15), transparent 68%); filter: blur(26px); pointer-events: none; }
.hero-copy { position: relative; z-index: 1; max-width: 650px; }
.eyebrow, .section-index, .mini-label, .signal-label, .core-kicker, .art-label { font-size: 10px; letter-spacing: .16em; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; color: var(--text-soft); letter-spacing: .09em; }
.eyebrow-separator { color: var(--line-strong); }
.status-dot, .footer-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent), 0 0 12px var(--accent); }
.hero h1 { margin: 0; font-size: clamp(3.6rem, 7.2vw, 7.2rem); line-height: .9; letter-spacing: -.075em; font-weight: 650; max-width: 700px; }
.gradient-text { color: var(--accent); text-shadow: 0 0 32px color-mix(in srgb, var(--accent) 15%, transparent); }
.hero-lead { max-width: 470px; margin: 30px 0 0; color: var(--text-soft); font-size: 18px; line-height: 1.55; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 10px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 44px; padding: 0 18px; border-radius: 10px; font-size: 13px; font-weight: 700; transition: transform .25s var(--ease), background .25s ease, color .25s ease, border .25s ease; }
.button span { font-size: 17px; font-weight: 400; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--bg-deep); background: var(--accent); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 20%, transparent); }
.button-primary:hover { background: color-mix(in srgb, var(--accent) 84%, white); }
.button-quiet { border: 1px solid var(--line-strong); color: var(--text-soft); }
.button-quiet:hover { border-color: var(--accent); color: var(--text); background: var(--surface); }
.hero-meta { display: flex; gap: 22px; margin-top: 58px; color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.hero-meta b { color: var(--accent); font-weight: 700; margin-right: 5px; }

.hero-art { min-height: 480px; position: relative; display: grid; place-items: center; isolation: isolate; }
.art-glow { position: absolute; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(124,232,220,.13), transparent 67%); filter: blur(16px); }
.orbit { position: absolute; border: 1px solid var(--line-strong); border-radius: 50%; transform: rotate(-21deg); animation: orbitSpin 20s linear infinite; }
.orbit::after { content: ""; position: absolute; inset: 10%; border: 1px dashed color-mix(in srgb, var(--accent) 24%, transparent); border-radius: 50%; }
.orbit-one { width: 390px; height: 220px; animation-duration: 18s; }
.orbit-two { width: 320px; height: 320px; transform: rotate(32deg); border-color: color-mix(in srgb, var(--violet) 44%, transparent); animation-duration: 24s; animation-direction: reverse; }
.orbit-three { width: 460px; height: 460px; border-color: color-mix(in srgb, var(--pink) 25%, transparent); animation-duration: 32s; }
.orbit-node { position: absolute; top: 50%; right: -5px; width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,.05), 0 0 26px currentColor; transform: translateY(-50%); }
.node-cyan { color: var(--accent); background: var(--accent); }
.node-violet { color: var(--violet); background: var(--violet); top: 5%; right: 24%; }
.node-pink { color: var(--pink); background: var(--pink); top: 82%; right: 8%; }
.core-card { position: relative; z-index: 2; width: 178px; height: 178px; display: flex; flex-direction: column; justify-content: center; gap: 9px; padding: 24px; border: 1px solid var(--line-strong); border-radius: 22px; background: linear-gradient(145deg, color-mix(in srgb, var(--surface-strong) 88%, transparent), color-mix(in srgb, var(--bg) 80%, transparent)); box-shadow: var(--shadow), inset 0 0 38px rgba(124,232,220,.03); transform: rotate(-8deg); }
.core-card::before { content: ""; position: absolute; inset: 7px; border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); border-radius: 17px; pointer-events: none; }
.core-kicker { font-size: 9px; letter-spacing: .14em; }
.core-card strong { font-size: 21px; letter-spacing: -.06em; line-height: 1.05; }
.core-line { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 10px; }
.core-line i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.art-label { position: absolute; z-index: 3; padding: 7px 9px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface-soft); backdrop-filter: blur(10px); font-size: 9px; letter-spacing: .12em; }
.label-top { top: 46px; left: 50%; transform: translateX(-50%); color: var(--accent); }
.label-right { right: 1px; top: 50%; color: var(--violet); }
.label-bottom { bottom: 40px; left: 50%; transform: translateX(-50%); color: var(--pink); }
.label-left { left: 10px; top: 50%; color: var(--text-soft); }
.art-crosshair { position: absolute; width: 24px; height: 24px; opacity: .45; }
.art-crosshair::before, .art-crosshair::after { content: ""; position: absolute; background: var(--line-strong); }
.art-crosshair::before { left: 11px; top: 0; width: 1px; height: 24px; }
.art-crosshair::after { top: 11px; left: 0; height: 1px; width: 24px; }
.crosshair-one { top: 16px; right: 50px; }
.crosshair-two { bottom: 5px; left: 76px; }
@keyframes orbitSpin { to { transform: rotate(339deg); } }

.signal-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 28%, transparent); }
.signal-inner { min-height: 58px; display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-muted); }
.signal-label { color: var(--accent); font-size: 9px; }
.signal-line { width: 36px; height: 1px; background: var(--line-strong); }
.signal-inner a { color: var(--text); font-weight: 700; }
.signal-inner a span, .text-button { color: var(--accent); }
.signal-separator { color: var(--line-strong); }
.text-button { border: 0; background: transparent; padding: 0; cursor: pointer; font-size: 12px; }
.text-button:hover { color: var(--text); }
kbd { padding: 2px 6px; border: 1px solid var(--line-strong); border-radius: 4px; color: var(--text-muted); font-size: 10px; }

.section { padding-top: 138px; padding-bottom: 138px; }
.section-muted { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 44px; margin-bottom: 48px; }
.section-index { margin: 0 0 18px; color: var(--accent); }
.section h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.7rem); letter-spacing: -.075em; line-height: .98; font-weight: 620; }
.section h2 em { color: var(--text-muted); font-style: normal; }
.section-intro { max-width: 350px; margin: 0 0 4px; color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.filter-row { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-button { border: 1px solid var(--line); border-radius: 100px; padding: 8px 13px; background: transparent; color: var(--text-muted); cursor: pointer; font-size: 12px; transition: all .2s ease; }
.filter-button:hover, .filter-button.is-active { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.project-card { position: relative; min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); transition: transform .35s var(--ease), border .35s ease, background .35s ease, opacity .3s ease; cursor: pointer; }
.project-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--card-accent) 14%, transparent), transparent 34%); opacity: .8; pointer-events: none; }
.project-card::after { content: "↗"; position: absolute; top: 22px; right: 24px; color: var(--text-muted); font-size: 18px; transition: color .25s ease, transform .25s ease; }
.project-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--card-accent) 55%, var(--line)); background: var(--surface-strong); box-shadow: var(--shadow); }
.project-card:hover::after { color: var(--card-accent); transform: translate(3px, -3px); }
.project-card.is-hidden { display: none; }
.card-top, .card-bottom { position: relative; z-index: 1; }
.card-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 35px; color: var(--card-accent); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.card-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--card-accent); box-shadow: 0 0 12px var(--card-accent); }
.project-card h3 { margin: 0 0 11px; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.065em; font-weight: 600; }
.project-card p { max-width: 470px; margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.6; }
.card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 35px; }
.card-role { color: var(--text-muted); font-size: 11px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 5px; }
.tag { display: inline-flex; padding: 5px 7px; border: 1px solid var(--line); border-radius: 5px; color: var(--text-muted); font-size: 10px; white-space: nowrap; }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.about-content { max-width: 620px; }
.about-lead { margin: -4px 0 38px; font-size: clamp(1.4rem, 2.5vw, 2.15rem); line-height: 1.23; letter-spacing: -.05em; color: var(--text-soft); }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 23px; border-top: 1px solid var(--line); }
.mini-label { color: var(--accent); font-size: 9px; }
.about-columns p { margin: 12px 0 0; color: var(--text-muted); font-size: 13px; line-height: 1.65; }
.principles { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 50px; color: var(--text-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.principles span::first-letter { color: var(--accent); }

.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 180px 1fr 130px; gap: 28px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.timeline-date { color: var(--text-muted); font-size: 12px; }
.timeline-role { font-size: 18px; letter-spacing: -.03em; }
.timeline-company { margin-top: 5px; color: var(--accent); font-size: 13px; }
.timeline-description { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.55; }
.timeline-kind { justify-self: end; color: var(--text-muted); font-size: 10px; text-align: right; letter-spacing: .12em; text-transform: uppercase; }

.contact-section { padding-top: 100px; padding-bottom: 100px; background: var(--surface-strong); }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 55px; border: 1px solid var(--line-strong); border-radius: 22px; background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--bg) 65%, transparent)); box-shadow: var(--shadow); }
.contact-card h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: .92; letter-spacing: -.08em; }
.contact-card h2 em { font-style: normal; color: var(--accent); }
.contact-copy { padding-top: 28px; }
.contact-copy > p { max-width: 365px; margin: 0 0 25px; color: var(--text-soft); font-size: 15px; }
.contact-email { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--accent); color: var(--text); font-size: 16px; }
.contact-email span, .contact-links span { color: var(--accent); }
.contact-links { display: flex; gap: 18px; margin-top: 34px; color: var(--text-muted); font-size: 12px; }
.contact-links a:hover { color: var(--text); }
.site-footer { display: flex; align-items: center; justify-content: space-between; min-height: 88px; color: var(--text-muted); font-size: 11px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; }
.back-top { color: var(--text-muted); }

.modal-shell, .palette-shell { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.modal-shell.is-open, .palette-shell.is-open { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 6, 15, .68); backdrop-filter: blur(10px); }
.project-modal { position: relative; width: min(640px, 100%); max-height: min(720px, 90vh); overflow: auto; padding: 38px; border: 1px solid var(--line-strong); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); transform: translateY(18px) scale(.98); transition: transform .35s var(--ease); }
.modal-shell.is-open .project-modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 17px; right: 17px; font-size: 22px; color: var(--text-muted); }
.project-modal h2 { margin: 10px 0 9px; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -.07em; }
.modal-role { margin: 0; color: var(--accent); font-size: 12px; }
.modal-description { margin: 28px 0; color: var(--text-soft); font-size: 16px; line-height: 1.65; }
.modal-details { display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 110px 1fr; gap: 15px; font-size: 13px; }
.detail-row strong { color: var(--text-muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.detail-row span { color: var(--text-soft); }
.modal-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-top: 32px; }

.command-palette { position: relative; width: min(560px, 100%); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); transform: translateY(15px) scale(.98); transition: transform .3s var(--ease); }
.palette-shell.is-open .command-palette { transform: translateY(0) scale(1); }
.palette-search { display: flex; align-items: center; gap: 12px; padding: 17px 20px; border-bottom: 1px solid var(--line); }
.palette-search > span { color: var(--accent); font-size: 22px; }
.palette-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 16px; }
.palette-search input::placeholder { color: var(--text-muted); }
.palette-search kbd { font-size: 9px; }
.palette-label { margin: 0; padding: 16px 20px 8px; color: var(--text-muted); font-size: 9px; letter-spacing: .14em; }
.command-list { padding: 0 8px 9px; max-height: 360px; overflow-y: auto; }
.command-item { width: 100%; display: flex; align-items: center; gap: 13px; padding: 12px; border: 0; border-radius: 9px; background: transparent; text-align: left; cursor: pointer; }
.command-item:hover, .command-item.is-selected { background: var(--surface-strong); }
.command-icon { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: var(--accent); }
.command-copy { display: flex; flex-direction: column; gap: 1px; }
.command-name { color: var(--text); font-size: 13px; }
.command-hint { color: var(--text-muted); font-size: 11px; }
.palette-footer { display: flex; gap: 18px; padding: 10px 20px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 10px; }
.toast { position: fixed; z-index: 110; left: 50%; bottom: 24px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--surface-strong); color: var(--text); font-size: 12px; box-shadow: var(--shadow); transform: translate(-50%, 25px); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .13s !important; }

@media (max-width: 900px) {
  .desktop-nav { margin-left: 0; gap: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; padding-bottom: 105px; gap: 65px; }
  .hero-art { min-height: 410px; }
  .hero h1 { font-size: clamp(3.7rem, 13vw, 6.4rem); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-intro { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-card { gap: 35px; padding: 40px; }
}

@media (max-width: 640px) {
  .container, .site-header { width: min(calc(100% - 32px), var(--max-width)); }
  .site-header.is-scrolled { padding: 0 10px; }
  .brand-text { display: none; }
  .desktop-nav { position: absolute; top: 62px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
  .desktop-nav.is-open { display: flex; }
  .desktop-nav a { padding: 11px 12px; border-radius: 7px; }
  .desktop-nav a:hover { background: var(--surface-strong); }
  .menu-toggle { display: grid; }
  .hero { padding-top: 130px; gap: 34px; }
  .eyebrow { flex-wrap: wrap; line-height: 1.5; }
  .eyebrow-separator { display: none; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 220px; }
  .hero-meta { gap: 13px; margin-top: 38px; font-size: 9px; }
  .hero-art { min-height: 340px; transform: scale(.75); margin: -35px -70px; }
  .signal-inner { min-height: 70px; flex-wrap: wrap; align-content: center; gap: 8px 11px; }
  .signal-line { display: none; }
  .signal-separator { display: none; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 260px; }
  .section { padding-top: 95px; padding-bottom: 95px; }
  .section-heading { margin-bottom: 34px; }
  .section h2 { font-size: 3rem; }
  .about-columns { grid-template-columns: 1fr; gap: 26px; }
  .principles { gap: 10px 18px; margin-top: 34px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .timeline-kind { justify-self: start; text-align: left; margin-top: 5px; }
  .contact-card { grid-template-columns: 1fr; padding: 30px 23px; gap: 15px; }
  .contact-copy { padding-top: 20px; }
  .contact-links { gap: 12px; flex-wrap: wrap; }
  .site-footer { min-height: 105px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; }
  .modal-shell, .palette-shell { padding: 13px; }
  .project-modal { padding: 29px 22px 23px; }
  .modal-footer { align-items: stretch; flex-direction: column; }
  .modal-footer .button { width: 100%; }
  .detail-row { grid-template-columns: 90px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
