@font-face {
  font-family: "Neue Haas";
  src: url("/assets/trionn-fonts/NeueHaasDisplay_Roman-s.p.0ykdwddnvy5f_.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Familjen";
  src: url("/assets/trionn-fonts/FamiljenGroteskVariable_Regular-s.p.04jxz-d23sc_e.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Martian Mono";
  src: url("/assets/trionn-fonts/MartianMono_Light-s.p.0htes.s6weu9-.woff2") format("woff2");
  font-display: swap;
}

:root {
  --black: #040508;
  --black-2: #0a0a0a;
  --white: #f8f8f5;
  --soft: #d8d8d8;
  --muted: #7c7c78;
  --dark-text: #434343;
  --line-dark: rgba(248, 248, 245, 0.14);
  --line-light: rgba(4, 5, 8, 0.14);
  --accent: #ffffff;
  --warm: #e6e4e2;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mono: "Martian Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --display: "Familjen", "Neue Haas", Arial, sans-serif;
  --text: "Neue Haas", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--black);
  color: var(--soft);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--soft);
  font-family: var(--text);
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 1px solid var(--white); outline-offset: 5px; }
::selection { background: var(--white); color: var(--black); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(90deg, #fff 1px, transparent 1px),
    linear-gradient(#fff 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: difference;
}

.dark-section {
  background: var(--black);
  color: var(--soft);
}

.light-section {
  background: var(--white);
  color: var(--dark-text);
}

.site-nav {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 20px 32px;
  color: var(--soft);
  mix-blend-mode: difference;
}

.nav-logo,
.nav-role,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-logo {
  gap: 10px;
  font: 700 13px/1 var(--display);
  letter-spacing: -0.02em;
}

.nav-logo strong {
  white-space: nowrap;
}

.mark-lines {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(45deg, transparent 0 34%, currentColor 34% 42%, transparent 42% 100%),
    linear-gradient(-45deg, transparent 0 34%, currentColor 34% 42%, transparent 42% 100%),
    repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px);
  opacity: 0.92;
}

.nav-role {
  gap: 12px;
  color: rgba(248, 248, 245, 0.58);
  font: 600 10px/1 var(--mono);
  text-transform: uppercase;
}

.nav-role i {
  display: block;
  width: min(22vw, 220px);
  height: 1px;
  background: rgba(248, 248, 245, 0.34);
}

.nav-links { gap: 22px; }

.nav-links a,
.pill,
.nav-toggle {
  font: 600 11px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.nav-links a {
  color: rgba(248, 248, 245, 0.62);
  transition: color 260ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--white);
}

.nav-actions { gap: 8px; }

.pill,
.nav-toggle {
  min-height: 30px;
  border: 1px solid rgba(248, 248, 245, 0.44);
  border-radius: 999px;
  background: transparent;
  color: var(--soft);
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.pill-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.pill:hover,
.nav-toggle:hover {
  background: rgba(248, 248, 245, 0.12);
}

.pill-light:hover {
  background: rgba(248, 248, 245, 0.82);
  color: var(--black);
}

.nav-toggle { display: none; gap: 8px; }
.nav-toggle i { width: 18px; height: 1px; background: currentColor; box-shadow: 0 5px currentColor; }

.stage-section {
  position: relative;
  min-height: 240vh;
}

.stage-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px 32px 54px;
}

.hero .stage-pin {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.hero::after,
.stack-section::after,
.slice-transition::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(90deg, rgba(248, 248, 245, 0.045) 1px, transparent 1px) 0 0 / 8vw 8vw;
  opacity: 0.75;
}

.signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.orbit-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orbit-field::before,
.orbit-field::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82vw, 980px);
  height: min(34vw, 390px);
  border: 1px solid rgba(248, 248, 245, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--stage-progress, 0) * 28deg));
}

.orbit-field::after {
  width: min(70vw, 820px);
  height: min(24vw, 280px);
  transform: translate(-50%, -50%) rotate(calc(var(--stage-progress, 0) * -22deg));
}

.orbit-field img {
  position: absolute;
  width: clamp(76px, 11vw, 150px);
  opacity: calc(0.28 + var(--stage-progress, 0) * 0.35);
  filter: contrast(1.12) saturate(0.88);
  transform: translate3d(0, calc(var(--stage-progress, 0) * -55px), 0) rotate(calc(var(--stage-progress, 0) * 28deg));
  transition: opacity 400ms var(--ease);
}

.orbit-field img:nth-child(1) { left: 10%; top: 40%; }
.orbit-field img:nth-child(2) { right: 14%; top: 24%; }
.orbit-field img:nth-child(3) { left: 32%; top: 20%; }
.orbit-field img:nth-child(4) { right: 26%; bottom: 18%; }
.orbit-field img:nth-child(5) { left: 18%; bottom: 18%; }

.hero-content,
.profile-card,
.section-grid,
.experience-layout,
.project-list,
.stack-groups,
.achievement-grid,
.education-list,
.process-head,
.process-steps,
.footer-main,
.footer-details,
.footer-lines,
.footer-marquee {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 980px;
  justify-self: center;
  text-align: center;
}

.eyebrow,
.section-label,
.hero-services span,
.timeline-index,
.tag-row span,
.stack-groups h3,
.achievement-grid p,
.certifications span,
.education-list span,
.process-head span,
.process-steps span,
.footer-details span {
  font: 600 11px/1.2 var(--mono);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.eyebrow,
.section-label,
.hero-services span {
  color: rgba(248, 248, 245, 0.78);
}

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

h1,
h2,
.footer-main h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

h1 {
  max-width: 940px;
  margin: 24px auto;
  font-size: clamp(54px, 8.2vw, 116px);
  color: var(--soft);
}

.hero-summary {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(216, 216, 216, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.22;
}

.hero-links,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 44px;
}

.line-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 170px;
  padding: 0 0 12px;
  color: var(--soft);
  font: 600 11px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.line-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}

.line-button span {
  transition: transform 420ms var(--ease);
}

.line-button:hover::after { transform: scaleX(1); }
.line-button:hover span { transform: translateX(8px); }
.muted-link { color: rgba(216, 216, 216, 0.62); min-width: auto; }

.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 780px;
  margin: 82px auto 0;
  color: rgba(216, 216, 216, 0.44);
  font: 400 13px/1.2 var(--text);
  text-transform: uppercase;
}

.hero-services span { flex-basis: 100%; color: rgba(216, 216, 216, 0.72); }

.profile-card {
  justify-self: end;
  width: min(100%, 350px);
  align-self: end;
  border: 1px solid var(--line-dark);
  background: rgba(248, 248, 245, 0.035);
  backdrop-filter: blur(18px);
  padding: 14px;
  transform: translate3d(0, calc(var(--stage-progress, 0) * -34px), 0);
}

.profile-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(248, 248, 245, 0.08) 0 1px, transparent 1px 14px),
    var(--black-2);
}

.profile-card figure::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(248, 248, 245, 0.16);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.18) contrast(1.08);
}

.profile-card figcaption {
  position: absolute;
  inset: 0;
  display: none;
  place-content: end;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 8, 0.82));
}

.profile-card.is-empty figcaption { display: grid; }
.profile-card.is-empty img { opacity: 0; }
.profile-card strong { font: 400 28px/0.95 var(--display); letter-spacing: -0.05em; }
.profile-card figcaption span { color: rgba(216, 216, 216, 0.62); font: 600 11px/1.45 var(--mono); text-transform: uppercase; }

.profile-card dl {
  display: grid;
  gap: 1px;
  margin: 14px 0 0;
  border: 1px solid var(--line-dark);
}

.profile-card dl div {
  padding: 16px;
  background: rgba(4, 5, 8, 0.6);
}

.profile-card dt {
  color: rgba(216, 216, 216, 0.48);
  font: 600 10px/1 var(--mono);
  text-transform: uppercase;
}

.profile-card dd {
  margin: 9px 0 0;
  color: rgba(248, 248, 245, 0.86);
  font-size: 16px;
  line-height: 1.12;
}

.identity-intro {
  align-items: start;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
  width: min(1620px, calc(100vw - 64px));
  padding-top: clamp(82px, 9vw, 124px);
}

.identity-side {
  display: grid;
  gap: clamp(14px, 1.8vw, 26px);
}

.identity-composition {
  display: grid;
  grid-template-columns: minmax(360px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(42px, 5.5vw, 96px);
  align-items: center;
}

.identity .profile-card {
  width: 100%;
  justify-self: start;
  align-self: start;
  padding: clamp(16px, 1.4vw, 22px);
  transform: none;
  color: var(--soft);
  background:
    radial-gradient(circle at 18% 8%, rgba(248, 248, 245, 0.06), transparent 18%),
    var(--black);
  box-shadow: 0 26px 80px rgba(4, 5, 8, 0.18);
}

.identity .profile-card::before {
  content: "";
  position: absolute;
  left: 10%;
  top: -44px;
  width: 96px;
  aspect-ratio: 1;
  border: 1px solid rgba(248, 248, 245, 0.18);
  background:
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(248, 248, 245, 0.2) 10px 11px),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(248, 248, 245, 0.2) 10px 11px);
  transform: rotate(8deg);
}

.identity .profile-card figure {
  width: 100%;
  aspect-ratio: auto;
  min-height: clamp(560px, 52vw, 760px);
}

.identity .profile-card img {
  object-fit: cover;
  object-position: center top;
}

.identity .profile-card dl {
  grid-template-columns: 1fr;
}

.identity .section-copy h2 {
  max-width: 980px;
  font-size: clamp(64px, 7.4vw, 132px);
  line-height: 0.9;
}

.identity .section-copy {
  align-self: center;
}

.identity .section-copy p {
  max-width: 620px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(26px, 6vw, 90px);
  width: min(1440px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(88px, 13vw, 170px) 0 62px;
  border-bottom: 1px solid currentColor;
}

.section-grid.identity-intro {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
  width: min(1620px, calc(100vw - 64px));
  padding-top: clamp(82px, 9vw, 124px);
}

.light-section .section-grid { border-color: var(--line-light); }
.dark-section .section-grid { border-color: var(--line-dark); }
.light-section .section-label { color: #1d1d1b; }

.section-copy h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(52px, 8vw, 128px);
}

.section-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.26;
}

.dark-section .section-copy p { color: rgba(216, 216, 216, 0.56); }

.identity-rows,
.achievement-grid,
.education-list,
.process-steps,
.stack-groups {
  width: min(1440px, calc(100vw - 64px));
  margin: 0 auto;
}

.identity-rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.identity-rows article {
  min-height: 320px;
  padding: 34px 26px;
  border-right: 1px solid var(--line-light);
}

.identity-rows article:last-child { border-right: 0; }
.identity-rows span { color: var(--muted); font: 600 11px/1 var(--mono); }
.identity-rows strong { display: block; margin: 72px 0 18px; font: 400 clamp(24px, 2.7vw, 42px)/0.96 var(--display); letter-spacing: -0.05em; }
.identity-rows p { color: rgba(67, 67, 67, 0.72); line-height: 1.34; }

.experience {
  position: relative;
  overflow: clip;
  padding-bottom: 120px;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(32px, 6vw, 90px);
  width: min(1440px, calc(100vw - 64px));
  margin: 64px auto 0;
}

.experience-signal {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 560px;
  border: 1px solid var(--line-dark);
  padding: 26px;
  background:
    radial-gradient(circle at 50% 42%, rgba(248, 248, 245, 0.09), transparent 34%),
    #070808;
}

.experience-signal > span {
  color: rgba(216, 216, 216, 0.56);
  font: 600 11px/1 var(--mono);
  text-transform: uppercase;
}

.experience-signal strong {
  display: block;
  margin-top: 42px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 248, 245, 0.56);
  font: 400 clamp(84px, 12vw, 180px)/0.8 var(--display);
  letter-spacing: -0.08em;
}

.signal-ring {
  position: relative;
  aspect-ratio: 1;
  margin: 24px 0 44px;
  border: 1px solid rgba(248, 248, 245, 0.14);
  border-radius: 50%;
  transform: rotate(calc(var(--exp-index, 0) * 28deg));
  transition: transform 520ms var(--ease);
}

.signal-ring i {
  position: absolute;
  inset: calc(12% + var(--i, 0) * 8%);
  border: 1px solid rgba(248, 248, 245, 0.1);
  border-radius: 50%;
}

.signal-ring i:nth-child(1) { --i: 0; }
.signal-ring i:nth-child(2) { --i: 1; }
.signal-ring i:nth-child(3) { --i: 2; background: rgba(248, 248, 245, 0.035); }
.experience-signal p { color: rgba(216, 216, 216, 0.58); font-size: 20px; line-height: 1.18; }

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 1px;
  background: var(--line-dark);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 34px;
  min-height: 360px;
  padding: 0 0 64px;
  opacity: 0.42;
  transform: translateX(0);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.timeline-item.is-current {
  opacity: 1;
  transform: translateX(-12px);
}

.timeline-index {
  position: sticky;
  top: 110px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--soft);
  transition: background 320ms var(--ease), color 320ms var(--ease), transform 320ms var(--ease);
}

.timeline-item.is-current .timeline-index {
  background: var(--white);
  color: var(--black);
  transform: scale(1.06);
}

.timeline-item > div {
  padding: 28px 0 0;
  border-top: 1px solid var(--line-dark);
}

.timeline-item header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.timeline-item h3 {
  font: 400 clamp(31px, 4vw, 66px)/0.9 var(--display);
  letter-spacing: -0.06em;
}

.timeline-item header p,
.timeline-item time {
  color: rgba(216, 216, 216, 0.48);
  font: 600 11px/1.4 var(--mono);
  text-transform: uppercase;
}

.timeline-item time { text-align: right; }
.timeline-item > div > p { max-width: 760px; margin-top: 22px; color: rgba(216, 216, 216, 0.66); font-size: 20px; line-height: 1.28; }
.timeline-item ul { margin: 22px 0 0; padding-left: 18px; color: rgba(216, 216, 216, 0.58); line-height: 1.55; }

.work { padding-bottom: 0; }
.project-list {
  width: 100%;
  margin: 0;
  scroll-margin-top: 0;
}

.project-row {
  height: 100svh;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 50vw) minmax(0, 50vw);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.project-row.invert {
  grid-template-columns: minmax(0, 50vw) minmax(0, 50vw);
}

.project-row.invert .project-visual { order: 2; }

.project-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--soft);
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: -18%;
  opacity: 0.12;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(248, 248, 245, 0.16), transparent 22%),
    linear-gradient(115deg, transparent 26%, rgba(248, 248, 245, 0.055), transparent 58%);
  transform:
    translate3d(calc(var(--project-progress, 0) * -38px), calc(var(--project-progress, 0) * 28px), 0)
    rotate(calc(var(--project-progress, 0) * -4deg));
  transition: opacity 900ms var(--ease), transform 1200ms var(--ease);
}

.project-row.is-project-current .project-visual::before {
  opacity: 0.3;
}

.project-visual > span {
  position: absolute;
  left: 28px;
  top: 96px;
  color: rgba(248, 248, 245, 0.72);
  font: 600 11px/1 var(--mono);
}

.diagram-lines {
  width: min(68%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(248, 248, 245, 0.18);
  background:
    linear-gradient(90deg, transparent 49%, rgba(248, 248, 245, 0.16) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 49%, rgba(248, 248, 245, 0.16) 49% 50%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(248, 248, 245, 0.16) 0 2px, transparent 2px 14px);
  transform:
    perspective(900px)
    translate3d(var(--pointer-shift, 0px), calc(var(--project-progress, 0) * -58px), 0)
    rotateX(calc(var(--project-progress, 0) * 7deg))
    rotateY(var(--pointer-tilt, 0deg))
    rotate(calc(var(--scroll-depth, 0) * 0.014deg));
  transition: opacity 900ms var(--ease), filter 900ms var(--ease), transform 1200ms var(--ease);
}

.project-row:not(.is-project-current) .diagram-lines {
  opacity: 0.32;
  filter: blur(0.45px);
}

.project-row.is-project-current .diagram-lines {
  opacity: 1;
}

.diagram-lines::before,
.diagram-lines::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(248, 248, 245, 0.16);
}

.diagram-lines::before { inset: 16%; transform: rotate(28deg); }
.diagram-lines::after { width: 18px; height: 18px; right: 20%; top: 23%; background: var(--white); }

.project-copy {
  align-self: center;
  padding: clamp(28px, 4vw, 64px);
  transform:
    translate3d(0, calc(var(--project-progress, 0) * -48px), 0)
    scale(var(--project-scale, 1));
  transition: transform 1100ms var(--ease), opacity 1100ms var(--ease);
}

.project-row:not(.is-project-current) .project-copy {
  opacity: 0.58;
}

.project-copy .eyebrow,
.project-copy dt {
  color: rgba(67, 67, 67, 0.58);
}

.project-copy h3 {
  margin: 14px 0 20px;
  color: #1d1d1b;
  font: 400 clamp(70px, 9vw, 132px)/0.78 var(--display);
  letter-spacing: -0.08em;
}

.project-copy > p {
  max-width: 680px;
  color: rgba(67, 67, 67, 0.74);
  font-size: clamp(19px, 2.1vw, 30px);
  line-height: 1.12;
}

.project-copy dl {
  display: grid;
  gap: 1px;
  margin: 30px 0 22px;
  border: 1px solid var(--line-light);
}

.project-copy dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 14px 18px;
  background: rgba(4, 5, 8, 0.025);
}

.project-copy dt {
  font: 600 11px/1.25 var(--mono);
  text-transform: uppercase;
}

.project-copy dd {
  margin: 0;
  color: rgba(67, 67, 67, 0.72);
  line-height: 1.36;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 22px;
  padding-bottom: 8px;
  color: #1d1d1b;
  font: 600 12px/1 var(--mono);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(4, 5, 8, 0.38);
}

.project-link span {
  transition: transform 320ms var(--ease);
}

.project-link:hover span,
.project-link:focus-visible span {
  transform: translateX(8px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border: 1px solid var(--line-light);
  padding: 8px 10px;
  color: rgba(67, 67, 67, 0.7);
}

.stack-section {
  position: relative;
  padding: clamp(72px, 9vw, 126px) 0 130px;
}

.stack-hero,
.stack-accordion {
  width: min(1440px, calc(100vw - 64px));
  margin: 0 auto;
}

.stack-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(330px, 36vw, 500px);
  align-content: start;
  padding-top: clamp(28px, 4vw, 62px);
  border-bottom: 1px solid var(--line-light);
}

.stack-hero h2 {
  max-width: 1120px;
  color: #3f3f3e;
  font: 400 clamp(72px, 12vw, 176px)/0.78 var(--display);
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.stack-hero h2 .stack-title-word {
  display: block;
}

.stack-hero h2 .stack-title-word.offset {
  display: block;
  margin-left: min(42vw, 590px);
}

.stack-hero p {
  max-width: 360px;
  margin: 20px 0 0 min(34vw, 480px);
  color: rgba(67, 67, 67, 0.72);
  font: 600 13px/1.08 var(--text);
  text-transform: uppercase;
}

.stack-accordion {
  border-bottom: 1px solid var(--line-light);
  overflow-anchor: none;
}

.stack-item {
  border-top: 1px solid var(--line-light);
  overflow-anchor: none;
}

.stack-item summary {
  display: grid;
  grid-template-columns: minmax(60px, 0.34fr) minmax(0, 0.58fr) 32px;
  gap: clamp(20px, 4vw, 72px);
  align-items: center;
  min-height: 112px;
  list-style: none;
  cursor: pointer;
  color: #3f3f3e;
}

.stack-item summary::-webkit-details-marker {
  display: none;
}

.stack-item summary span {
  font: 400 clamp(22px, 2.3vw, 36px)/1 var(--display);
}

.stack-item summary strong {
  font: 400 clamp(30px, 3.2vw, 52px)/1 var(--display);
  letter-spacing: -0.06em;
}

.stack-item summary i {
  justify-self: end;
  width: 18px;
  height: 18px;
  position: relative;
}

.stack-item summary i::before,
.stack-item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.stack-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.stack-item.is-expanded summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.stack-detail {
  display: grid;
  grid-template-columns: minmax(60px, 0.34fr) repeat(2, minmax(0, 0.29fr)) 32px;
  gap: clamp(20px, 4vw, 72px);
  padding: 0 0 clamp(46px, 6vw, 86px);
  color: rgba(67, 67, 67, 0.78);
  overflow: hidden;
  transition:
    height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms var(--ease);
}

.stack-detail[hidden] {
  display: none;
}

.stack-item:not(.is-expanded) .stack-detail,
.stack-item.is-closing .stack-detail {
  opacity: 0;
}

.stack-item.is-expanded .stack-detail,
.stack-item.is-opening .stack-detail {
  opacity: 1;
}

.stack-detail div:first-child {
  grid-column: 2;
}

.stack-detail h3 {
  margin-bottom: 14px;
  color: rgba(67, 67, 67, 0.5);
  font: 600 12px/1.2 var(--text);
  text-transform: uppercase;
}

.stack-detail p {
  margin-top: 7px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.18;
}

.slice-transition {
  position: relative;
  min-height: 185vh;
  overflow: clip;
}

.slice-pin {
  display: grid;
  place-items: center;
  padding-inline: 0;
  isolation: isolate;
}

.slice-frame {
  position: absolute;
  z-index: 1;
  inset: 92px clamp(18px, 8vw, 150px) 76px;
  border: 1px solid rgba(248, 248, 245, 0.13);
  opacity: calc(0.44 + var(--stage-progress, 0) * 0.4);
}

.slice-frame::before,
.slice-frame::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(248, 248, 245, 0.08);
  transform: rotate(calc(-7deg + var(--stage-progress, 0) * 14deg));
}

.slice-frame::after {
  inset: 27% 12%;
  transform: rotate(calc(6deg + var(--stage-progress, 0) * -12deg));
}

.slice-assets {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.slice-assets img {
  position: absolute;
  width: clamp(150px, 22vw, 380px);
  opacity: calc(0.16 + var(--stage-progress, 0) * 0.3);
  filter: contrast(1.12) saturate(0.95);
  transform:
    translate3d(calc((var(--stage-progress, 0) - 0.5) * 84px), calc((var(--stage-progress, 0) - 0.5) * -54px), 0)
    rotateX(58deg)
    rotateZ(calc(var(--stage-progress, 0) * 38deg));
}

.slice-assets img:nth-child(1) { left: 22%; top: 17%; }
.slice-assets img:nth-child(2) { right: 18%; top: 17%; transform: translate3d(calc((var(--stage-progress, 0) - 0.5) * -78px), calc((var(--stage-progress, 0) - 0.5) * 76px), 0) rotateY(56deg) rotateZ(calc(var(--stage-progress, 0) * -34deg)); }
.slice-assets img:nth-child(3) { left: 44%; bottom: 10%; transform: translate3d(0, calc((var(--stage-progress, 0) - 0.5) * -96px), 0) rotateX(68deg) rotateZ(calc(var(--stage-progress, 0) * 48deg)); }

.slice-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  width: max-content;
  color: var(--white);
  font: 400 clamp(68px, 10.6vw, 160px)/0.82 var(--display);
  letter-spacing: -0.08em;
  text-transform: uppercase;
  opacity: calc(0.52 + var(--stage-progress, 0) * 0.34);
  transform: translateX(calc((0.5 - var(--stage-progress, 0)) * 18vw));
}

.slice-copy span {
  white-space: nowrap;
}

.slice-caption {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(22px, 8vw, 110px);
  width: min(980px, calc(100vw - 42px));
  margin-top: clamp(140px, 22vh, 260px);
}

.slice-caption p {
  color: rgba(248, 248, 245, 0.76);
  font: 600 13px/1 var(--text);
  text-transform: uppercase;
}

.slice-caption .line-button {
  min-width: 230px;
}

.slice-bars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: grid;
  align-content: center;
  gap: clamp(28px, 6vh, 70px);
}

.slice-bars i {
  display: block;
  width: var(--slice-width, 78vw);
  height: clamp(12px, 2.2vh, 32px);
  border-block: 1px solid rgba(248, 248, 245, 0.16);
  background:
    linear-gradient(90deg, rgba(248, 248, 245, 0.78), rgba(248, 248, 245, 0.94)),
    repeating-linear-gradient(90deg, rgba(4, 5, 8, 0.1) 0 1px, transparent 1px 18px);
  opacity: calc(0.68 - var(--stage-progress, 0) * 0.08);
  transform: translateX(calc((0.5 - var(--stage-progress, 0)) * var(--dir, 1) * 84vw));
}

.slice-bars i:nth-child(1) { --dir: -1; --slice-width: 62vw; margin-left: 0; }
.slice-bars i:nth-child(2) { --dir: 1; --slice-width: 72vw; justify-self: end; }
.slice-bars i:nth-child(3) { --dir: -0.72; --slice-width: 84vw; height: clamp(16px, 3vh, 42px); }
.slice-bars i:nth-child(4) { --dir: 0.78; --slice-width: 58vw; justify-self: end; }
.slice-bars i:nth-child(5) { --dir: -0.48; --slice-width: 48vw; margin-left: 18vw; }

.achievements,
.education,
.process {
  padding-bottom: 110px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.achievement-grid article {
  min-height: 350px;
  padding: 32px 26px;
  border-right: 1px solid var(--line-light);
}

.achievement-grid article:last-child { border-right: 0; }
.achievement-grid p { color: rgba(67, 67, 67, 0.58); }
.achievement-grid strong {
  display: block;
  margin: 80px 0 24px;
  color: #1d1d1b;
  font: 400 clamp(34px, 4vw, 64px)/0.9 var(--display);
  letter-spacing: -0.06em;
}
.achievement-grid span,
.certifications p {
  color: rgba(67, 67, 67, 0.72);
  line-height: 1.36;
}

.certifications {
  width: min(1440px, calc(100vw - 64px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(26px, 5vw, 72px);
  border: 1px solid var(--line-light);
  padding: clamp(22px, 3vw, 34px);
}

.certifications span { color: rgba(67, 67, 67, 0.58); }

.certifications-head {
  display: grid;
  align-content: start;
  gap: 24px;
}

.certifications-head p {
  max-width: 310px;
  font-size: 18px;
}

.certificate-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.certificate-list article {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line-light);
}

.certificate-list article:last-child {
  border-bottom: 0;
}

.certificate-list strong {
  color: #1d1d1b;
  font: 400 clamp(20px, 2vw, 31px)/1 var(--display);
  letter-spacing: -0.04em;
}

.certificate-list a {
  border: 1px solid rgba(4, 5, 8, 0.16);
  border-radius: 999px;
  background: transparent;
  color: rgba(67, 67, 67, 0.72);
  padding: 8px 13px;
  font: 600 10px/1 var(--mono);
  text-transform: uppercase;
  transition: background 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease);
}

.certificate-list a:hover,
.certificate-list a:focus-visible {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.education-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.education-list article {
  position: relative;
  display: grid;
  grid-template-columns: 130px 0.9fr 1fr 0.85fr auto;
  gap: 24px;
  align-items: baseline;
  min-height: 128px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
  transition: transform 360ms var(--ease), background 360ms var(--ease);
}

.education-list article:hover {
  transform: translateX(12px);
}

.education-list span,
.education-list time {
  color: rgba(67, 67, 67, 0.52);
  font: 600 11px/1.45 var(--mono);
  text-transform: uppercase;
}

.education-list h3 {
  color: #1d1d1b;
  font: 400 clamp(26px, 3vw, 48px)/0.92 var(--display);
  letter-spacing: -0.06em;
}

.education-list p { color: rgba(67, 67, 67, 0.7); line-height: 1.28; }
.education-list strong {
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 5, 8, 0.24);
  font: 400 clamp(42px, 6vw, 86px)/0.8 var(--display);
  letter-spacing: -0.08em;
}

.process-head {
  width: min(1440px, calc(100vw - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 6vw, 90px);
  padding-top: 80px;
}

.process-head span { color: rgba(67, 67, 67, 0.72); }
.process-head h2 {
  max-width: 980px;
  color: #1d1d1b;
  font: 400 clamp(46px, 7vw, 112px)/0.9 var(--display);
  letter-spacing: -0.06em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 74px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.process-steps article {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.process-steps span { color: rgba(67, 67, 67, 0.54); }
.process-steps h3 { margin: 78px 0 22px; color: #1d1d1b; font: 400 clamp(32px, 3.4vw, 58px)/0.9 var(--display); letter-spacing: -0.06em; }
.process-steps p { color: rgba(67, 67, 67, 0.72); line-height: 1.34; }

.site-footer {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 46px 32px 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 84% 76%, rgba(120, 135, 155, 0.24), transparent 18%),
    radial-gradient(circle at 28% 92%, rgba(120, 135, 155, 0.18), transparent 20%),
    radial-gradient(circle at 52% 38%, rgba(248, 248, 245, 0.035), transparent 28%),
    linear-gradient(90deg, rgba(248, 248, 245, 0.055) 1px, transparent 1px) 0 0 / 12vw 100%;
}

.footer-topline {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  margin: 0 auto clamp(70px, 9vw, 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--soft);
}

.footer-topline > span {
  color: rgba(216, 216, 216, 0.38);
  font: 600 13px/1 var(--text);
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: clamp(34px, 9vw, 150px);
  align-items: center;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.footer-main p {
  grid-column: 1 / -1;
  color: rgba(216, 216, 216, 0.72);
  font: 600 12px/1 var(--mono);
  text-transform: uppercase;
}

.footer-main h2 {
  max-width: 940px;
  font-size: clamp(58px, 10.2vw, 158px);
  color: var(--soft);
}

.footer-actions {
  display: grid;
  gap: 30px;
  align-self: center;
}

.footer-actions .line-button {
  width: min(100%, 310px);
  min-width: 0;
}

.footer-work-link {
  color: rgba(216, 216, 216, 0.58);
}

.footer-details {
  width: min(1440px, 100%);
  margin: clamp(56px, 8vw, 92px) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(5, minmax(110px, 0.5fr));
  gap: clamp(24px, 3.2vw, 58px);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(32px, 4vw, 58px);
}

.footer-details div {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 13px;
  background: transparent;
  padding: 0;
  transition: background 280ms var(--ease);
}

.footer-details div:hover {
  background: transparent;
}

.footer-details span {
  margin-bottom: 8px;
  color: rgba(248, 248, 245, 0.88);
}

.footer-details a,
.footer-details p {
  color: rgba(216, 216, 216, 0.58);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.22;
}

.footer-details a {
  width: fit-content;
  transition: color 240ms var(--ease), transform 240ms var(--ease);
}

.footer-details a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-brand {
  gap: 24px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-brand p {
  max-width: 360px;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.45;
}

.footer-brand > a:last-child {
  margin-top: 16px;
  color: rgba(248, 248, 245, 0.82);
  font-weight: 600;
}

.footer-sound {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  margin: 34px auto 0;
  color: rgba(216, 216, 216, 0.56);
  font: 600 13px/1 var(--text);
  text-transform: uppercase;
}

.footer-watermark {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 248, 245, 0.09);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(248, 248, 245, 0.38) 0 1px,
      transparent 1px 14px
    );
  -webkit-background-clip: text;
  background-clip: text;
  font: 400 clamp(170px, 31vw, 500px)/0.68 var(--display);
  letter-spacing: -0.12em;
  pointer-events: none;
  opacity: 0.82;
}

.footer-lines {
  width: min(1440px, 100%);
  position: relative;
  z-index: 1;
  height: clamp(180px, 24vh, 300px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: clamp(10px, 1.5vw, 18px);
}

.footer-lines i {
  display: block;
  height: calc(56px + var(--line-height, 1) * 24px);
  background:
    repeating-linear-gradient(0deg, rgba(248, 248, 245, 0.22) 0 1px, transparent 1px 15px);
  opacity: 0.42;
  transition: transform 360ms var(--ease), opacity 360ms var(--ease);
}

.footer-lines i:hover {
  transform: translateY(-16px);
  opacity: 0.55;
}

.footer-lines i:nth-child(1) { --line-height: 3; }
.footer-lines i:nth-child(2) { --line-height: 5; }
.footer-lines i:nth-child(3) { --line-height: 2; }
.footer-lines i:nth-child(4) { --line-height: 6; }
.footer-lines i:nth-child(5) { --line-height: 4; }
.footer-lines i:nth-child(6) { --line-height: 7; }
.footer-lines i:nth-child(7) { --line-height: 3; }
.footer-lines i:nth-child(8) { --line-height: 5; }

.footer-marquee {
  width: calc(100% + 64px);
  margin: 0 -32px;
  overflow: hidden;
  border-top: 1px solid rgba(248, 248, 245, 0.1);
  background: var(--white);
}

.footer-marquee span {
  display: block;
  width: max-content;
  padding: 12px 0 14px;
  color: var(--black);
  font: 400 clamp(20px, 3.1vw, 44px)/0.92 var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[data-reveal],
.section-copy,
.process-head,
.footer-main {
  opacity: 0;
  clip-path: inset(8% 0 0 0);
  filter: blur(3px);
  transform: translate3d(0, 30px, 0) scale(0.992);
  transition:
    opacity 820ms var(--ease),
    clip-path 960ms var(--ease),
    filter 820ms var(--ease),
    transform 960ms var(--ease);
}

[data-reveal].is-visible,
.section-copy.is-visible,
.process-head.is-visible,
.footer-main.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.split-char {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 0.9em, 0) rotateX(28deg);
  transform-origin: 50% 100%;
  transition:
    opacity 880ms var(--ease),
    filter 880ms var(--ease),
    transform 980ms var(--ease);
  transition-delay: calc(var(--char-index) * 11ms);
}

.split-word {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.is-visible .split-char,
.hero .split-char,
.site-footer .split-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0);
}

#hero-title.is-scrambling .split-char {
  filter: blur(var(--scramble-blur, 0));
  transform: none;
  transition: filter 180ms linear;
}

@media (max-width: 1040px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
    padding: 18px 20px;
  }

  .nav-role { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
    mix-blend-mode: normal;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    color: var(--dark-text);
    padding: 18px 8px;
    border-bottom: 1px solid var(--line-light);
    font-size: 18px;
  }

  .hero .stage-pin,
  .experience-layout,
  .footer-main,
  .section-grid,
  .identity-intro,
  .identity-composition,
  .process-head {
    grid-template-columns: 1fr;
  }

  .hero .stage-pin { padding-top: 110px; }
  .profile-card { justify-self: center; width: min(100%, 420px); }
  .section-grid,
  .identity-rows,
  .achievement-grid,
  .education-list,
  .process-steps,
  .stack-hero,
  .stack-accordion,
  .experience-layout {
    width: min(100% - 32px, 820px);
  }

  .identity-rows,
  .achievement-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .stack-hero h2 .stack-title-word.offset {
    margin-left: min(22vw, 190px);
  }

  .stack-hero p {
    margin-left: 0;
  }

  .stack-item summary,
  .stack-detail {
    grid-template-columns: 62px 1fr 28px;
  }

  .stack-detail div:first-child,
  .stack-detail div {
    grid-column: 2;
  }

  .project-row,
  .project-row.invert {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-row.invert .project-visual { order: 0; }
  .project-visual { position: relative; height: 56svh; min-height: 380px; }
  .education-list article { grid-template-columns: 1fr; gap: 12px; }
  .education-list strong { justify-self: start; }
  .identity .section-copy h2 { font-size: clamp(54px, 10vw, 94px); }
  .identity .profile-card {
    width: min(100%, 420px);
  }
  .identity .profile-card figure {
    min-height: clamp(430px, 62vw, 560px);
  }
  .footer-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-nav { min-height: 68px; }
  .nav-actions .pill { display: none; }
  .stage-section { min-height: auto; }
  .stage-pin { position: relative; min-height: 100svh; padding-inline: 18px; }
  .hero-content { text-align: left; }
  .hero-links { justify-content: flex-start; gap: 18px; }
  .line-button { min-width: 132px; gap: 18px; }
  .hero-services { justify-content: flex-start; margin-top: 48px; }
  .orbit-field img { opacity: 0.22; }
  .section-grid { padding-top: 74px; }
  h1 { font-size: clamp(46px, 13vw, 74px); }
  .section-copy h2 { font-size: clamp(46px, 14vw, 76px); }
  .identity .section-copy h2 { font-size: clamp(44px, 13vw, 72px); }
  .identity-rows,
  .achievement-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .identity-rows article,
  .achievement-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
  .experience-signal { position: relative; top: auto; min-height: 380px; }
  .timeline-item,
  .timeline-item.is-current {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    transform: none;
  }
  .timeline-index { width: 44px; height: 44px; }
  .timeline-item header { grid-template-columns: 1fr; }
  .timeline-item time { text-align: left; }
  .project-copy { padding: 34px 18px 62px; }
  .project-copy dl div { grid-template-columns: 1fr; gap: 10px; }
  .project-copy h3 { font-size: clamp(70px, 24vw, 118px); }
  .stack-section { padding-top: 82px; padding-bottom: 90px; }
  .stack-hero {
    width: calc(100% - 32px);
    min-height: 330px;
  }
  .stack-hero h2 { font-size: clamp(58px, 18vw, 96px); }
  .stack-hero h2 .stack-title-word.offset { margin-left: 18vw; }
  .stack-hero p {
    margin-top: 28px;
    font-size: 12px;
  }
  .stack-accordion { width: calc(100% - 32px); }
  .stack-item summary {
    grid-template-columns: 44px 1fr 24px;
    gap: 16px;
    min-height: 86px;
  }
  .stack-item summary strong { font-size: clamp(25px, 8vw, 36px); }
  .stack-detail {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding-bottom: 42px;
  }
  .stack-detail div:first-child,
  .stack-detail div { grid-column: 2; }
  .slice-transition { min-height: 120vh; }
  .slice-copy {
    gap: 22px;
    font-size: clamp(58px, 18vw, 104px);
  }
  .slice-caption {
    display: grid;
    align-items: start;
    margin-top: 120px;
  }
  .slice-caption .line-button { min-width: 0; }
  .slice-bars i { height: 28px; }
  .certifications { grid-template-columns: 1fr; width: calc(100% - 32px); }
  .certificate-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 16px 0;
  }
  .certificate-list a {
    grid-column: 2;
    justify-self: start;
  }
  .site-footer { padding-inline: 18px; }
  .footer-topline { margin-bottom: 66px; }
  .footer-actions { gap: 22px; }
  .footer-details {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-details div { min-height: 0; }
  .footer-brand { grid-column: auto; }
  .footer-lines { grid-template-columns: repeat(4, 1fr); height: 190px; }
  .footer-lines i:nth-child(n + 5) { display: none; }
  .footer-marquee { width: calc(100% + 36px); margin-inline: -18px; }
}

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

  .orbit-field img,
  .diagram-lines,
  .profile-card,
  .slice-assets img,
  .slice-copy,
  .slice-bars i,
  .slice-frame::before,
  .slice-frame::after {
    transform: none !important;
  }

  [data-reveal],
  .split-char {
    opacity: 1 !important;
    transform: none !important;
  }
}
