:root {
  --color-ink: #111111;
  --color-muted: #5e5e58;
  --color-soft: #f5f2ec;
  --color-paper: #fffdfa;
  --color-line: #d8d1c6;
  --color-accent: #2563eb;
  --color-accent-dark: #174ea6;
  --color-grid-blue: rgba(37, 99, 235, 0.12);
  --color-charcoal: #181716;
  --shadow-soft: 0 24px 80px rgba(17, 17, 17, 0.08);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Exo 2", "Helvetica Neue", Arial, sans-serif;
  --content-max: 1180px;
  --measure: 720px;
  --section-space: clamp(88px, 11vw, 168px);
  --gutter: clamp(22px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--color-grid-blue) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.66;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 16%, rgba(37, 99, 235, 0.045), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(17, 17, 17, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 250, 0), rgba(245, 242, 236, 0.42));
}

a {
  color: inherit;
  text-decoration-color: rgba(37, 99, 235, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

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

p,
ul,
ol,
dl {
  margin-top: 0;
}

p {
  max-width: var(--measure);
  margin-bottom: 0;
}

.accent-period {
  color: var(--color-accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 250, 0.82);
  border-bottom: 1px solid rgba(216, 209, 198, 0.85);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--content-max), calc(100% - (var(--gutter) * 2)));
  min-height: 78px;
  margin: 0 auto;
}

.site-nav > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav > a img {
  display: block;
  width: 42px;
  height: auto;
  flex: 0 0 auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav li a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #393936;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav li a:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.site-nav li a[aria-current="location"] {
  color: var(--color-accent);
}

.site-nav li a[aria-current="location"]:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.site-nav li a:focus {
  color: var(--color-ink);
  transform: translateY(-1px);
}

.site-nav li a[aria-current="location"]:focus {
  color: var(--color-accent);
}

#main-content {
  position: relative;
  z-index: 1;
}

.homepage-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  width: min(var(--content-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--color-line);
}

.homepage-section > :not(.modular-assembly):not(.svg-assembly) {
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.homepage-section > .modular-assembly,
.homepage-section > .svg-assembly {
  transform: none;
  transition: none;
}

.reveal-ready .homepage-section > :not(.modular-assembly):not(.svg-assembly) {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-ready .homepage-section > .modular-assembly,
.reveal-ready .homepage-section > .svg-assembly {
  transform: none;
}

.reveal-ready .homepage-section.is-visible > :not(.modular-assembly):not(.svg-assembly) {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .homepage-section.is-visible > *:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-ready .homepage-section.is-visible > *:nth-child(3) {
  transition-delay: 120ms;
}

.reveal-ready .homepage-section.is-visible > *:nth-child(4) {
  transition-delay: 170ms;
}

.homepage-section > * {
  max-width: var(--measure);
}

.section-kicker {
  margin-bottom: 0;
  color: var(--color-accent-dark);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  font-size: clamp(58px, 11vw, 148px);
  line-height: 0.94;
}

h2 {
  max-width: 920px;
  font-size: clamp(32px, 4.25vw, 58px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.06;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 78px);
  align-content: center;
  gap: clamp(22px, 3.2vw, 38px);
  padding-top: clamp(72px, 9vw, 128px);
  padding-right: clamp(0px, 26vw, 340px);
}

.hero-section p {
  max-width: 820px;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.55;
}

.hero-section p:nth-of-type(3) {
  max-width: 860px;
  color: var(--color-muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.section-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--color-ink);
  color: var(--color-ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.section-actions a:first-child {
  background: var(--color-ink);
  color: var(--color-paper);
}

.section-actions a:hover,
.section-actions a:focus {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-paper);
  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.18);
  transform: translateY(-2px);
}

.modular-assembly {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 5px;
  max-width: none;
  pointer-events: none;
}

.modular-assembly::before {
  content: "";
  position: absolute;
  inset: -34px;
  z-index: -1;
  border: 0;
  background:
    radial-gradient(circle at 35% 30%, rgba(37, 99, 235, 0.075), transparent 42%),
    radial-gradient(circle at 72% 68%, rgba(17, 17, 17, 0.045), transparent 48%);
  box-shadow: none;
}

.module-piece {
  --depth-x: 10px;
  --depth-y: -8px;
  position: relative;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(245, 242, 236, 0.48)),
    var(--color-paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 38px rgba(17, 17, 17, 0.075);
  opacity: 0.78;
  transform: translate3d(0, 0, 0);
  transition:
    transform 90ms linear,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.module-piece::before,
.module-piece::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.module-piece::before {
  left: -1px;
  right: calc(var(--depth-x) * -1);
  top: var(--depth-y);
  height: calc(var(--depth-y) * -1);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 0;
  background: linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(37, 99, 235, 0.06));
  transform: skewX(-46deg);
  transform-origin: bottom left;
}

.module-piece::after {
  top: -1px;
  right: calc(var(--depth-x) * -1);
  bottom: calc(var(--depth-y) * -1);
  width: var(--depth-x);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.075), rgba(37, 99, 235, 0.05));
  transform: skewY(-44deg);
  transform-origin: top left;
}

.piece-square {
  aspect-ratio: 1 / 1;
}

.piece-panel {
  aspect-ratio: 2 / 2;
}

.piece-wide {
  aspect-ratio: 3 / 1;
}

.piece-tall {
  aspect-ratio: 1 / 3;
}

.piece-bar {
  aspect-ratio: 2 / 0.55;
}

.hero-section > :not(.hero-svg-assembly) {
  position: relative;
  z-index: 1;
}

.hero-svg-assembly {
  position: absolute;
  top: clamp(-104px, -7vw, -34px);
  right: calc((100vw - 100%) / -2 - clamp(34px, 5vw, 92px));
  z-index: 0;
  width: clamp(520px, 56vw, 920px);
  height: clamp(360px, 48vw, 680px);
  max-width: none;
  opacity: 0.34;
  pointer-events: none;
}

.hero-long-cube {
  position: absolute;
  display: block;
  width: clamp(34px, 4vw, 58px);
  height: auto;
  animation: hero-long-cube-cycle 12s cubic-bezier(0.74, 0, 0.22, 1) infinite;
  animation-delay: var(--cube-delay, 0s);
  animation-fill-mode: both;
  transform: translate3d(0, -44vh, 0);
  will-change: transform;
}

.hero-long-cube:nth-child(1) {
  --cube-delay: 0s;
  left: 0%;
  top: 68%;
}

.hero-long-cube:nth-child(2) {
  --cube-delay: 0.12s;
  left: 5%;
  top: 72%;
}

.hero-long-cube:nth-child(3) {
  --cube-delay: 0.24s;
  left: 10%;
  top: 76%;
}

.hero-long-cube:nth-child(4) {
  --cube-delay: 0.36s;
  left: 18%;
  top: 50%;
}

.hero-long-cube:nth-child(5) {
  --cube-delay: 0.48s;
  left: 23%;
  top: 54%;
}

.hero-long-cube:nth-child(6) {
  --cube-delay: 0.6s;
  left: 28%;
  top: 58%;
}

.hero-long-cube:nth-child(7) {
  --cube-delay: 0.72s;
  left: 36%;
  top: 32%;
}

.hero-long-cube:nth-child(8) {
  --cube-delay: 0.84s;
  left: 41%;
  top: 36%;
}

.hero-long-cube:nth-child(9) {
  --cube-delay: 0.96s;
  left: 46%;
  top: 40%;
}

.hero-long-cube:nth-child(10) {
  --cube-delay: 1.08s;
  left: 54%;
  top: 14%;
}

.hero-long-cube:nth-child(11) {
  --cube-delay: 1.2s;
  left: 59%;
  top: 18%;
}

.hero-long-cube:nth-child(12) {
  --cube-delay: 1.32s;
  left: 64%;
  top: 22%;
}

.hero-long-cube:nth-child(13) {
  --cube-delay: 1.44s;
  left: 72%;
  top: -4%;
}

.hero-long-cube:nth-child(14) {
  --cube-delay: 1.56s;
  left: 77%;
  top: 0%;
}

.hero-long-cube:nth-child(15) {
  --cube-delay: 1.68s;
  left: 82%;
  top: 4%;
}

.hero-long-cube:nth-child(16) {
  --cube-delay: 1.8s;
  left: 90%;
  top: -13%;
}

.hero-long-cube:nth-child(17) {
  --cube-delay: 1.92s;
  left: 95%;
  top: -7%;
}

.hero-long-cube:nth-child(18) {
  --cube-delay: 2.04s;
  left: 100%;
  top: -1%;
}

@keyframes hero-long-cube-cycle {
  0% {
    transform: translate3d(0, -44vh, 0);
  }

  3.5% {
    transform: translate3d(0, 5px, 0);
  }

  4.3% {
    transform: translate3d(0, -2px, 0);
  }

  5.1%,
  50% {
    transform: translate3d(0, 0, 0);
  }

  58%,
  100% {
    transform: translate3d(0, -44vh, 0);
  }
}

#leadership-thesis {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: start;
  column-gap: clamp(40px, 7vw, 96px);
  overflow: visible;
}

#leadership-thesis .section-kicker,
#leadership-thesis h2 {
  grid-column: 1 / -1;
}

#leadership-thesis ul,
#speaking ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#leadership-thesis li,
#speaking li {
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.speaking-recent-talk {
  display: grid;
  grid-column: 2;
  gap: 12px;
  margin-top: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(216, 209, 198, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(245, 242, 236, 0.38)),
    rgba(255, 253, 250, 0.34);
}

.speaking-recent-talk .section-kicker {
  margin: 0;
}

.speaking-recent-talk h3 {
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.08;
}

.speaking-recent-talk p:not(.section-kicker) {
  color: var(--color-muted);
  font-size: clamp(14px, 1.05vw, 15px);
  line-height: 1.55;
}

.speaking-talk-link {
  justify-self: start;
  margin-top: 2px;
  color: var(--color-accent-dark);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.speaking-talk-link:hover,
.speaking-talk-link:focus-visible {
  color: var(--color-accent);
  text-decoration: none;
}

#leadership-thesis > *,
#selected-work > *,
#speaking > * {
  position: relative;
  z-index: 1;
}

#leadership-thesis > .modular-assembly,
#leadership-thesis > .svg-assembly,
#selected-work > .modular-assembly,
#selected-work > .svg-assembly,
#speaking > .svg-assembly,
#speaking > .modular-assembly {
  position: absolute;
  z-index: 0;
}

.edge-assembly {
  z-index: 0;
  width: clamp(220px, 24vw, 365px);
  height: clamp(170px, 19vw, 285px);
  opacity: 0.46;
}

.edge-assembly::before {
  inset: -28px;
  box-shadow: none;
}

.thesis-assembly {
  bottom: clamp(-78px, -7%, -42px);
  left: calc((100vw - 100%) / -2 - clamp(0px, 0.7vw, 12px));
}

.thesis-svg-assembly {
  width: clamp(380px, 43vw, 640px);
  height: clamp(210px, 25vw, 360px);
  max-width: none;
  opacity: 0.78;
  pointer-events: none;
}

.thesis-svg-assembly .svg-piece {
  display: block;
  position: absolute;
  height: auto;
  transform: translate3d(0, 0, 0);
  transition: transform 90ms linear;
}

.thesis-svg-assembly .hollow-square-piece {
  width: clamp(74px, 8.4vw, 128px);
}

.thesis-svg-assembly .cube-piece {
  width: clamp(48px, 5vw, 60px);
}

.thesis-svg-assembly .svg-piece:nth-child(1) {
  --piece-x: -104px;
  --piece-y: 70px;
  left: 0;
  top: 39%;
}

.thesis-svg-assembly .svg-piece:nth-child(2) {
  --piece-x: -70px;
  --piece-y: 47px;
  left: 9.5%;
  top: 28%;
}

.thesis-svg-assembly .svg-piece:nth-child(3) {
  --piece-x: -36px;
  --piece-y: 24px;
  left: 19%;
  top: 17%;
}

.thesis-svg-assembly .svg-piece:nth-child(4) {
  --piece-x: -6px;
  --piece-y: 4px;
  left: 28.5%;
  top: 6%;
}

.thesis-svg-assembly .svg-piece:nth-child(5) {
  --piece-x: 18px;
  --piece-y: -12px;
  left: 52%;
  top: 62%;
}

.thesis-svg-assembly .svg-piece:nth-child(6) {
  --piece-x: 50px;
  --piece-y: -34px;
  left: 61%;
  top: 51%;
}

.thesis-svg-assembly .svg-piece:nth-child(7) {
  --piece-x: 82px;
  --piece-y: -56px;
  left: 70%;
  top: 40%;
}

.thesis-svg-assembly .svg-piece:nth-child(8) {
  --piece-x: 114px;
  --piece-y: -78px;
  left: 79%;
  top: 29%;
}

.system-list {
  display: grid;
  max-width: none;
  gap: 16px;
  border-top: 0;
}

.system-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(216, 209, 198, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 242, 236, 0.72)),
    var(--color-paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.system-entry > * {
  position: relative;
  z-index: 1;
}

.system-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.09), transparent 34%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.system-entry:hover,
.system-entry:focus-within {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.system-entry:hover::after,
.system-entry:focus-within::after {
  opacity: 1;
}

.system-entry p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.system-breakdown {
  display: grid;
  gap: clamp(14px, 1.7vw, 22px);
}

.system-point {
  display: grid;
  gap: 6px;
  padding-top: clamp(14px, 1.7vw, 18px);
  border-top: 1px solid rgba(216, 209, 198, 0.74);
}

.system-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.system-point .system-point-label {
  color: #393936;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.system-result {
  border-top-color: rgba(37, 99, 235, 0.24);
}

.system-result .system-point-label {
  color: var(--color-accent);
}

.system-result p:not(.system-point-label) {
  max-width: 760px;
  color: var(--color-ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(19px, 1.9vw, 25px);
  font-weight: 700;
  line-height: 1.42;
}

.system-category-kicker {
  margin: 8px 0 0;
  color: var(--color-muted)!important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.system-entry h3 {
  color: var(--color-ink);
}

.blue-period {
  color: var(--color-accent);
}

.module-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
}

.module-card-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.module-card-linked {
  cursor: pointer;
}

.module-card-linked:hover h3,
.module-card-linked:focus-within h3 {
  color: var(--color-accent);
}

.system-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.system-meta li {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(216, 209, 198, 0.95);
  background: rgba(255, 253, 250, 0.76);
  color: #393936;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

#product-impact {
  position: relative;
  background: var(--color-charcoal);
  color: var(--color-paper);
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100% - var(--content-max)) / 2));
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.05) inset;
}

#product-impact > * {
  position: relative;
  z-index: 1;
}

#product-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 55, 86, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 96px 96px;
}

#product-impact .section-kicker,
#product-impact h2,
#product-impact p {
  color: inherit;
}

#product-impact .section-kicker {
  color: #ffb3c0;
}

#product-impact dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: clamp(12px, 2vw, 22px) 0 0;
  background: transparent;
}

#product-impact dl div {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(255, 253, 250, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.08), rgba(255, 253, 250, 0.025)),
    rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

#product-impact dt {
  margin-bottom: 16px;
  color: #ffb3c0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

#product-impact dd {
  display: grid;
  gap: 12px;
  margin: 0;
}

#product-impact dd strong {
  display: block;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

#product-impact dd span {
  display: block;
  max-width: 310px;
  color: rgba(255, 253, 250, 0.72);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  text-transform: none;
}

#selected-work ol {
  display: grid;
  max-width: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--color-ink);
  list-style: none;
  counter-reset: work-item;
}

#selected-work {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.work-assembly {
  top: clamp(-34px, -4%, -12px);
  right: calc((100vw - 100%) / -2 - clamp(4px, 1.4vw, 24px));
}

.work-svg-assembly {
  width: clamp(430px, 47vw, 690px);
  height: clamp(270px, 29vw, 420px);
  max-width: none;
  opacity: 0.56;
  pointer-events: none;
}

.work-svg-assembly .svg-piece {
  display: block;
  position: absolute;
  height: auto;
  transform: translate3d(0, 0, 0);
  transition: transform 90ms linear;
}

.work-svg-assembly .l-shape-piece {
  width: clamp(112px, 13.5vw, 190px);
}

.work-svg-assembly .moving-cube-piece,
.work-svg-assembly .static-cube-piece {
  width: clamp(42px, 4.6vw, 68px);
}

.work-svg-assembly .svg-piece:nth-child(1) {
  --piece-x: -134px;
  --piece-y: 92px;
  left: 4%;
  top: 47%;
}

.work-svg-assembly .svg-piece:nth-child(2) {
  --piece-x: -88px;
  --piece-y: -66px;
  left: 25%;
  top: 25%;
}

.work-svg-assembly .svg-piece:nth-child(3) {
  --piece-x: -54px;
  --piece-y: -88px;
  left: 34%;
  top: 15%;
}

.work-svg-assembly .svg-piece:nth-child(4) {
  left: 34%;
  top: 34%;
}

.work-svg-assembly .svg-piece:nth-child(5) {
  left: 45%;
  top: 25%;
}

.work-svg-assembly .svg-piece:nth-child(6) {
  left: 45%;
  top: 44%;
}

.work-svg-assembly .svg-piece:nth-child(7) {
  left: 56%;
  top: 35%;
}

.work-svg-assembly .svg-piece:nth-child(8) {
  --piece-x: 86px;
  --piece-y: -52px;
  left: 53%;
  top: 17%;
}

.work-svg-assembly .svg-piece:nth-child(9) {
  --piece-x: 128px;
  --piece-y: -76px;
  left: 64%;
  top: 28%;
}

.work-svg-assembly .svg-piece:nth-child(10) {
  --piece-x: 82px;
  --piece-y: 64px;
  left: 54%;
  top: 51%;
}

.work-svg-assembly .svg-piece:nth-child(11) {
  --piece-x: -72px;
  --piece-y: 52px;
  left: 25%;
  top: 43%;
}

.work-svg-assembly .svg-piece:nth-child(12) {
  --piece-x: 144px;
  --piece-y: 92px;
  left: 75%;
  top: 48%;
}

#selected-work li {
  counter-increment: work-item;
}

#selected-work article {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(32px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--color-line);
  transition:
    border-color 180ms ease,
    padding-left 180ms ease,
    background-color 180ms ease;
}

#selected-work article:hover,
#selected-work article:focus-within {
  padding-left: 18px;
  border-color: rgba(37, 99, 235, 0.34);
  background: rgba(37, 99, 235, 0.028);
}

#selected-work article::before {
  content: counter(work-item, decimal-leading-zero);
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

#selected-work article p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

#selected-work .enterprise-brand-link,
#selected-work .enterprise-brand-link:visited,
#selected-work .enterprise-brand-link:hover,
#selected-work .enterprise-brand-link:focus,
#selected-work .enterprise-brand-link:active {
  position: relative;
  z-index: 3;
  color: var(--color-accent);
  text-decoration: none;
}

#selected-work .enterprise-brand-link {
  transition: opacity 180ms ease;
}

#selected-work .enterprise-brand-link:hover,
#selected-work .enterprise-brand-link:focus {
  opacity: 0.78;
}

.work-title-link {
  color: inherit;
  text-decoration: none;
  text-decoration-color: rgba(37, 99, 235, 0);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.work-title-link:hover,
.work-title-link:focus {
  color: var(--color-accent);
  text-decoration: none;
  text-decoration-color: rgba(37, 99, 235, 0);
}

#speaking,
#about {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
  column-gap: clamp(40px, 7vw, 96px);
}

#about .about-art-link,
#about .about-art-link:visited,
#about .about-art-link:hover,
#about .about-art-link:focus,
#about .about-art-link:active {
  color: var(--color-accent);
  text-decoration: none;
}

#about .about-art-link {
  transition: opacity 180ms ease;
}

#about .about-art-link:hover,
#about .about-art-link:focus {
  opacity: 0.78;
}

#speaking {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.speaking-assembly {
  bottom: clamp(-78px, -7%, -40px);
  left: calc((100vw - 100%) / -2 - clamp(0px, 0.9vw, 14px));
  opacity: 0.38;
}

.speaking-svg-assembly {
  width: clamp(230px, 25vw, 360px);
  height: clamp(330px, 38vw, 540px);
  max-width: none;
  opacity: 0.48;
  pointer-events: none;
}

.speaking-svg-assembly .svg-piece {
  display: block;
  position: absolute;
  height: auto;
  transform: translate3d(0, 0, 0);
  transition: transform 90ms linear;
}

.speaking-svg-assembly .speaking-cluster-piece {
  width: clamp(128px, 15vw, 215px);
}

.speaking-svg-assembly .speaking-ladder-piece {
  width: clamp(96px, 11vw, 155px);
}

.speaking-svg-assembly .svg-piece:nth-child(1) {
  left: 38%;
  top: 58%;
}

.speaking-svg-assembly .svg-piece:nth-child(2) {
  --piece-x: 0px;
  --piece-y: -110px;
  left: 38%;
  top: 29%;
}

.speaking-svg-assembly .svg-piece:nth-child(3) {
  --piece-x: 0px;
  --piece-y: -160px;
  left: 38%;
  top: 0;
}

.speaking-svg-assembly .svg-piece:nth-child(4) {
  --piece-x: -92px;
  --piece-y: 78px;
  left: 2%;
  top: 72%;
}

#speaking .section-kicker,
#speaking h2,
#about .section-kicker,
#about h2 {
  grid-column: 1 / -1;
}

#closing-philosophy {
  justify-items: center;
  text-align: center;
}

#closing-philosophy h2 {
  max-width: 1040px;
}

#closing-philosophy p {
  margin-inline: auto;
}

#contact {
  min-height: 70vh;
  align-content: center;
  border-bottom: 0;
}

#contact address {
  margin: 0;
  font-style: normal;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: relative;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .site-nav li a {
    min-height: 32px;
    font-size: 11px;
  }

  .site-nav ul {
    justify-content: flex-start;
  }

  .hero-section {
    min-height: auto;
    padding-right: clamp(0px, 18vw, 150px);
  }

  .hero-svg-assembly {
    top: clamp(-70px, -8vw, -28px);
    right: calc((100vw - 100%) / -2 - clamp(30px, 9vw, 70px));
    width: clamp(340px, 86vw, 560px);
    height: clamp(260px, 68vw, 420px);
    opacity: 0.24;
  }

  .hero-long-cube {
    width: clamp(28px, 7vw, 42px);
  }

  #leadership-thesis,
  #speaking,
  #about,
  .system-entry,
  #selected-work article {
    grid-template-columns: 1fr;
  }

  #selected-work article {
    gap: 14px;
  }

  .speaking-recent-talk {
    grid-column: 1;
  }

  #product-impact dl {
    grid-template-columns: 1fr;
  }

  #product-impact dl div {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  h2 {
    font-size: clamp(32px, 9.5vw, 48px);
  }

  .edge-assembly {
    width: clamp(176px, 46vw, 240px);
    height: clamp(138px, 35vw, 190px);
    opacity: 0.25;
  }

  .thesis-assembly,
  .speaking-assembly {
    left: calc((100vw - 100%) / -2 - 8px);
  }

  .speaking-svg-assembly {
    width: clamp(210px, 58vw, 285px);
    height: clamp(300px, 78vw, 430px);
  }

  .work-assembly {
    right: calc((100vw - 100%) / -2 - 14px);
  }

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

  .section-actions a {
    width: 100%;
  }

  .system-entry {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready .homepage-section > :not(.modular-assembly):not(.svg-assembly) {
    opacity: 1;
    transform: none;
  }

  .module-piece,
  .svg-piece,
  .hero-long-cube {
    animation: none;
    transform: none !important;
  }
}
