:root {
  color-scheme: light;
  --ink: #080808;
  --muted: #505050;
  --quiet: #777777;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: #dddddd;
  --soft-line: #eeeeee;
  --rule: #111111;
  --radius: 0;
  --site-max: 1160px;
  --page-gutter: clamp(28px, 5vw, 68px);
  --section-y: clamp(44px, 6vw, 64px);
  --grid-label-col: minmax(130px, 250px);
  --grid-gap: 34px;
  --content-offset: 284px;
  --project-label-col: minmax(90px, 128px);
  --media-col: minmax(240px, 29%);
  --work-media-col: minmax(220px, 32%);
  --font-body: "Courier New", Courier, ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-display: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-label: Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  --font-serif: Charter, "Bitstream Charter", Georgia, serif;
  --first-content-offset: clamp(64px, 6vw, 76px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.62;
}

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

img {
  display: block;
  max-width: 100%;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.eyebrow,
.case-kicker,
.panel-label,
.fit-number,
.timeline span,
dt {
  font-family: var(--font-display);
}

/*.case-kicker {
  writing-mode: vertical-rl;
}*/

.section.home-proof.simple-gradient {
  background: #8CAFC4;
  background: linear-gradient(to right, #8CAFC4, #F7EFEB);
}

.site-header,
main,
.site-footer {
  width: min(100% - 48px, var(--site-max));
  margin-inline: auto;
  background: var(--surface);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 20px var(--page-gutter);
  border-bottom: 1px solid var(--soft-line);
}

.brand,
.site-header nav,
.actions,
.contact-list,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
}

.mark {
  width: clamp(28px, 2.4vw, 38px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform 160ms ease;
  will-change: transform;
}

.brand:hover .mark,
.brand:focus-visible .mark,
.resume-logo:hover {
  animation: logo-hover 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logo-hover {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  38% {
    transform: translateY(-1px) rotate(-5deg) scale(1.08);
  }

  68% {
    transform: translateY(0) rotate(2deg) scale(1.02);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.logo-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #fff;
  pointer-events: none;
  animation: none;
}

.logo-loader.is-done {
  animation: logo-loader-fade 180ms ease forwards;
}

.logo-loader svg {
  width: clamp(68px, 8vw, 104px);
  height: auto;
  animation: none;
}

.loader-logo {
  fill: none;
  stroke: var(--ink);
  stroke-width: 10;
  stroke-linejoin: miter;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: loader-logo-draw 760ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader-logo-drawing {
  animation: loader-logo-drawing-fade 220ms ease 1160ms forwards;
}

.loader-logo-frame,
.loader-logo-slash {
  stroke-linecap: square;
}

.loader-logo-divider {
  stroke-linecap: butt;
  animation-delay: 160ms;
}

.loader-logo-slash {
  animation-delay: 320ms;
}

.loader-logo-mark {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: loader-logo-mark 280ms cubic-bezier(0.22, 1, 0.36, 1) 1120ms forwards;
}

@keyframes loader-logo-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes loader-logo-mark {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-logo-drawing-fade {
  to {
    opacity: 0;
  }
}

@keyframes logo-loader-fade {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loader-logo-exit {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.99);
  }
}

.site-header nav {
  justify-content: flex-end;
  gap: clamp(14px, 2.8vw, 34px);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  white-space: nowrap;
}

.site-header nav::-webkit-scrollbar {
  display: none;
}

.site-header nav a {
  flex: 0 0 auto;
}

.site-header nav a:hover,
.site-header nav a.active,
.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-header nav a.active {
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--media-col);
  gap: var(--grid-gap);
  align-items: start;
  min-height: auto;
  padding: clamp(48px, 7vw, 72px) var(--page-gutter) clamp(46px, 7vw, 66px);
}

.hero-copy {
  max-width: 940px;
}

.home-hero {
  grid-template-columns: 1fr;
  padding-bottom: clamp(42px, 6vw, 58px);
}

.home-hero .hero-copy {
  max-width: 920px;
}

.eyebrow,
.case-kicker,
.panel-label {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.06;
}

.home-title {
  max-width: 980px;
  font-size: clamp(48px, 6.2vw, 72px);
  font-weight: 900;
  -webkit-text-stroke: 1.4px var(--ink);
}

h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 850;
  line-height: 1.22;
}

.lede {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.72;
}

.actions,
.contact-list {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.button.primary {
  background: var(--ink);
  color: var(--surface);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.identity-panel {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 32px;
  min-height: auto;
  padding: 18px 0 0;
  border: 0;
  background: var(--surface);
}

.resume-logo {
  width: clamp(78px, 8vw, 112px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transform-origin: center;
  transition: transform 160ms ease;
  will-change: transform;
}

.identity-block {
  display: grid;
  justify-items: center;
  gap: 20px;
  margin-top: 20px;
  text-align: center;
}

.identity-block h2 {
  font-size: 24px;
  letter-spacing: 6px;
}

.identity-block p {
  max-width: 230px;
  margin: 0;
  color: var(--ink);
}

.rule {
  width: 100%;
  border-top: 1px solid var(--soft-line);
}

.identity-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
  font-size: 13px;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.icon-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 160ms ease;
  transform-origin: center;
}

.icon-link img[src$="icon-linkedin.svg"] {
  width: 18px;
  height: 18px;
  transform: translateY(-1px);
}

.icon-link:hover img,
.icon-link:focus-visible img {
  transform: scale(1.16);
}

.icon-link:hover img[src$="icon-linkedin.svg"],
.icon-link:focus-visible img[src$="icon-linkedin.svg"] {
  transform: translateY(-1px) scale(1.16);
}

.icon-link img[src$="icon-scholar.svg"] {
  width: 24px;
  height: 24px;
}

.identity-contact .social-icons {
  margin-top: 2px;
}

.identity-skills {
  width: 100%;
}

.identity-skills h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 2px;
}

.identity-skills p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.identity-skills strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif;
}

.home-identity-panel {
  gap: 20px;
}

.home-identity-panel .identity-skills {
  display: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
}

.metrics div {
  min-height: 126px;
  padding: 24px clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--soft-line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.metrics span {
  display: block;
  max-width: 260px;
  color: var(--ink);
}

.section {
  padding: var(--section-y) var(--page-gutter);
  border-top: 1px solid var(--soft-line);
}

main .section:first-of-type {
  border-top: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: var(--grid-label-col) minmax(0, 1fr);
  gap: var(--grid-gap);
  padding: clamp(48px, 7vw, 72px) var(--page-gutter) clamp(40px, 6vw, 60px);
  border-bottom: 1px solid var(--soft-line);
}

.page-hero h1 {
  grid-column: 2;
  max-width: 1040px;
}

.page-hero .lede {
  grid-column: 2;
  max-width: 860px;
}

.page-hero .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: var(--grid-label-col) minmax(0, 1fr);
  gap: var(--grid-gap);
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-lede {
  max-width: 860px;
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.72;
}

@media (min-width: 1181px) {
  .section-heading + .section-lede {
    margin-left: var(--content-offset);
  }
}

.case-stack {
  display: grid;
  gap: 0;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--media-col);
  gap: var(--grid-gap);
  padding: clamp(34px, 5vw, 56px) 0;
  border-top: 1px solid var(--soft-line);
  background: var(--surface);
}


/* ==========================================================================
   Bookmark Navigation Updates
   ========================================================================== */

/* 1. Prevent the sticky header from covering the content when jumping to an anchor */
.case-study {
  scroll-margin-top: 100px; 
}

.work-bookmarks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px; /* Adds space before the first case study */
}

.bookmark-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}

.work-bookmarks a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.work-bookmarks a:hover,
.work-bookmarks a:focus-visible {
  border-color: var(--ink);
  background: var(--soft-line);
  text-decoration: none; /* overrides the default nav link underline */
}

@media (max-width: 720px) {
  .work-bookmarks {
    margin-bottom: 32px;
  }
  .bookmark-label {
    width: 100%; /* Pushes the links to a new line on small screens */
    margin-bottom: 4px;
  }
}

/* Container for the jump navigation */
.jump-to-nav {
  display: flex;
  align-items: center;
  gap: 8px; /* Slightly tighter gap for a cohesive grouping */
  margin-bottom: 40px;
}

/* The "JUMP TO:" label */
.jump-to-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-right: 12px;
}

/* Base button styling - removing default button styles */
.nav-pill {
  appearance: none;
  background: transparent;
  border: none; /* Removing the previous harsh borders */
  border-radius: 999px; /* Perfect pill shape */
  padding: 8px 16px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease-in-out; /* Smooth fade for interactions */
}

/* Hover state for inactive pills */
.nav-pill:hover {
  background-color: rgba(0, 0, 0, 0.03); /* Very faint hover feedback */
  color: var(--ink);
}

/* Active/Selected state - The low-opacity indicator */
.nav-pill.active {
  background-color: rgba(0, 0, 0, 0.06); /* Subtle, elegant gray fill */
  color: var(--ink);
  font-weight: 600; /* Bolder text to reinforce hierarchy */
}



.case-study:first-child {
  padding-top: 0;
  border-top-width: 0;
}

.case-study.reverse,
.spotlight.reverse {
  grid-template-columns: var(--media-col) minmax(0, 1fr);
}

.case-study.reverse .case-copy,
.spotlight.reverse .case-copy {
  order: 2;
}

.case-study.reverse .case-visual,
.spotlight.reverse .case-visual {
  order: 1;
}

.case-copy {
  display: grid;
  grid-template-columns: var(--project-label-col) minmax(0, 1fr);
  gap: 10px var(--grid-gap);
  align-items: start;
}

.case-kicker {
  grid-column: 1;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.35;
  align-self: start;
}

.case-copy h1,
.case-copy h3,
.case-copy > p:not(.case-kicker),
.case-tags,
.case-details,
.case-copy .actions,
.case-nav {
  grid-column: 2;
  align-self: start;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 0;
  list-style: none;
}

.case-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid var(--soft-line);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-copy .actions {
  margin-top: 10px;
}

.public-context {
  grid-column: 2;
  margin: 4px 0 8px;
  padding: 16px 0 0;
  border-top: 1px solid var(--soft-line);
}

.public-context strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.public-context p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.public-context a {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.case-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.case-teaser .case-visual {
  min-height: 380px;
}

.work-editorial {
  padding-top: clamp(44px, 6vw, 64px);
}

.work-editorial .case-study {
  grid-template-columns: minmax(0, 1fr) var(--work-media-col);
  gap: var(--grid-gap);
  align-items: start;
  padding: clamp(48px, 6vw, 72px) 0;
}

.work-editorial .case-study.reverse {
  grid-template-columns: var(--work-media-col) minmax(0, 1fr);
}

.work-editorial .case-study.reverse > figure {
  order: -1;
}

.work-editorial .case-study:first-child {
  padding-top: 0;
}

.work-editorial .case-copy h3 {
  max-width: 680px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.16;
}

.work-editorial .case-copy h1,
.work-editorial .case-copy h3 {
  margin-bottom: 6px;
}

.work-editorial .case-copy h1 {
  max-width: 840px;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.work-editorial .case-copy > p:not(.case-kicker),
.work-editorial .public-context {
  max-width: 720px;
}

.work-editorial .case-visual {
  justify-self: center;
  align-self: start;
  width: 100%;
  max-width: 360px;
  min-height: 360px;
}

.work-editorial .maiba-media {
  width: min(100%, 180px);
  max-width: 180px;
}

/* 找到并修改这一段 */
.work-editorial #meta-ai .maiba-media {
  /* 将最大宽度调大，或者改为使用百分比以适应更多屏幕 */
  width: min(100%, 640px); /* 将 430px 改为 640px 或更大 */
  max-width: 640px; 
  min-height: 400px; /* 适当增加最小高度 */
  justify-self: center;
  align-items: center;
  padding-top: 4px;
}

/* 同时确保视频本身填满容器 */
.work-page .work-editorial #meta-ai .maiba-video {
  width: 100%;
  height: auto; /* 自动调整高度以保持比例 */
  aspect-ratio: 16 / 9; /* 如果视频是 16:9，这能保证画面不变形且撑满 */
  object-fit: cover;
}

.work-editorial #meta-ai .maiba-media img {
  width: 100%;
  max-width: 430px;
}

.work-editorial .omnichannel-media {
  width: min(100%, 247px);
  min-height: 0;
  aspect-ratio: 798 / 1611;
  border-radius: 27px;
}

.work-editorial .dls-media {
  min-height: 360px;
}

.case-study p {
  color: var(--ink);
  font-size: 14px;
}

.case-details {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.case-details div {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 0.72fr);
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--soft-line);
}

.case-details dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.case-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.case-visual {
  position: relative;
  min-height: 410px;
  align-self: stretch;
  border: 1px solid var(--ink);
  background:
    linear-gradient(var(--soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft-line) 1px, transparent 1px),
    var(--surface);
  background-size: 38px 38px;
}

.case-media-stack {
  display: grid;
  align-self: start;
  justify-items: center;
  gap: 32px;
}

.case-media-stack .case-visual {
  margin: 0;
}

.media-link-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.media-try-link {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.media-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
}

.omnichannel-media {
  align-items: flex-start;
}

main > .section > .case-study > .omnichannel-media {
  width: 90%;
  max-width: 270px;
  min-height: 0;
  aspect-ratio: 798 / 1611;
  align-self: start;
  justify-self: center;
}

.media-visual img {
  width: 100%;
  height: auto;
  border: 0;
  outline: 0;
  box-shadow: none;
  filter: none;
  object-fit: contain;
}


.dls-media {
  align-items: flex-start;
  min-height: 560px;
}

.dls-media img {
  height: auto;
  object-fit: contain;
}

.maiba-media {
  width: min(100%, 180px);
  min-height: 0;

  justify-self: center;
  align-self: start;

  border-radius: 27px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.maiba-media img {
  display: block;
  width: 80%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-top: 0px; /* Adds a little breathing room from the absolute top edge */
}

.omnichannel-media {
  width: min(100%, 180px);
  min-height: 0;

  justify-self: center;
  align-self: start;

  border-radius: 27px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.omnichannel-media img {
  display: block;
  width: 80%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-top: 0px; /* Adds a little breathing room from the absolute top edge */
}



.gradient-text {
  /* 1. 设置渐变背景：这里使用从紫罗兰色到品红色的线性渐变，您可以根据喜好微调色值和角度 (90deg) */
  background: linear-gradient(90deg, #8B5CF6, #D946EF);

  /* 2. 将背景裁剪为文字的形状 (针对 Webkit 内核浏览器和标准属性) */
  -webkit-background-clip: text;
  background-clip: text;

  /* 3. 将文字本身的颜色设置为透明，以便透出底部的渐变背景 */
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* 建议：渐变色在较粗的字体上视觉效果更好 */
  font-weight: 800; 
  font-size: 3rem; 
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* 换成您喜欢的一款现代无衬线字体 */
}


.video-link-visual a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--surface);
}

.plain-media .play-marker,
.plain-media .media-caption {
  display: none;
}

.video-link-visual img {
  object-fit: cover;
}

.play-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.play-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--surface);
  transform: translate(-35%, -50%);
}

.media-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rec-card,
.channel-stage,
.prompt-block {
  position: absolute;
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.rec-card span,
.channel-stage span,
.prompt-block span {
  display: block;
  margin-bottom: 13px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rec-card p,
.prompt-block p {
  margin-bottom: 0;
  color: var(--ink);
}

.primary-rec {
  top: 48px;
  left: 36px;
  right: 28px;
}

.primary-rec strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-label);
  font-size: 23px;
  line-height: 1.08;
}

.explanation {
  left: 36px;
  bottom: 102px;
  width: min(48%, 245px);
}

.controls {
  right: 28px;
  bottom: 38px;
  width: min(48%, 270px);
}

.channel-stage {
  width: min(42%, 250px);
}

.channel-stage strong {
  display: block;
  font-family: var(--font-label);
  font-size: 21px;
  line-height: 1.08;
}

.stage-a {
  left: 36px;
  top: 46px;
}

.stage-b {
  right: 30px;
  top: 118px;
}

.stage-c {
  left: 48px;
  bottom: 126px;
}

.stage-d {
  right: 36px;
  bottom: 42px;
}

.channel-line {
  position: absolute;
  height: 2px;
  background: var(--ink);
  transform-origin: left center;
}

.line-one {
  left: 38%;
  top: 156px;
  width: 27%;
  transform: rotate(12deg);
}

.line-two {
  left: 30%;
  top: 292px;
  width: 34%;
  transform: rotate(-15deg);
}

.line-three {
  left: 44%;
  bottom: 152px;
  width: 27%;
  transform: rotate(14deg);
}

.prompt-block {
  top: 40px;
  left: 34px;
  right: 34px;
}

.prompt-block p {
  font-size: 21px;
  line-height: 1.28;
}

.prototype-arrow {
  position: absolute;
  top: 206px;
  left: 50%;
  width: 2px;
  height: 86px;
  background: var(--ink);
}

.prototype-arrow::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

.screen-stack {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 68px;
  height: 168px;
}

.screen-stack span {
  position: absolute;
  display: block;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.screen-stack span:nth-child(1) {
  inset: 0 24% 36px 0;
}

.screen-stack span:nth-child(2) {
  inset: 30px 11% 16px 13%;
}

.screen-stack span:nth-child(3) {
  inset: 58px 0 0 28%;
}

.component-strip {
  position: absolute;
  right: 42px;
  top: 218px;
  display: grid;
  grid-template-columns: repeat(4, 24px);
  gap: 9px;
}

.component-strip span {
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.lucid-visual {
  overflow: hidden;
}

.hmi-frame {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 42px;
  height: 236px;
  border: 2px solid var(--ink);
  background: var(--surface);
}

.hmi-topbar {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.5fr;
  gap: 12px;
  height: 42px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--ink);
}

.hmi-topbar span,
.hmi-sidebar span,
.hmi-grid span,
.hmi-token-strip span {
  display: block;
  background: var(--ink);
}

.hmi-sidebar {
  position: absolute;
  left: 0;
  top: 42px;
  bottom: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  width: 58px;
  padding: 18px;
  border-right: 1px solid var(--ink);
}

.hmi-sidebar span {
  width: 20px;
  height: 20px;
}

.hmi-grid {
  position: absolute;
  left: 86px;
  right: 24px;
  top: 74px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hmi-grid span {
  height: 54px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(var(--surface), var(--surface)) 14px 14px / 48% 7px no-repeat,
    linear-gradient(var(--surface), var(--surface)) 14px 30px / 64% 7px no-repeat,
    var(--ink);
}

.hmi-token-strip {
  position: absolute;
  left: 86px;
  right: 24px;
  bottom: 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hmi-token-strip span {
  height: 16px;
}

.hmi-handbook {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 44px;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.hmi-handbook span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hmi-handbook p {
  margin: 0;
  color: var(--ink);
}

.lucid-teaser-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  min-height: 440px;
  padding-top: 4px;
  background: #fff;
}

.lucid-teaser-media img {
  width: min(78%, 280px);
  height: auto;
  object-fit: contain;
}


.case-reference-block {
  margin-top: clamp(44px, 7vw, 82px);
  padding-top: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--soft-line);
}

.case-reference-block .section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-bottom: 20px;
}

.case-reference-block .section-heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.02;
}

.case-reference-block .section-lede {
  max-width: 860px;
  margin-left: calc(28% + clamp(24px, 4vw, 58px));
}

.lucid-public-gallery {
  margin-top: clamp(30px, 4vw, 48px);
}

@media (max-width: 760px) {
  .case-reference-block .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-reference-block .section-lede {
    margin-left: 0;
  }
}

.lucid-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 40px);
  margin-top: clamp(30px, 5vw, 56px);
  padding-top: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--soft-line);
}

.lucid-gallery figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.lucid-gallery-feature {
  grid-column: 1 / -1;
}

.lucid-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid var(--soft-line);
  background: var(--ink);
}

.lucid-gallery figure:not(.lucid-gallery-feature) img {
  height: clamp(320px, 42vw, 500px);
  object-fit: cover;
  object-position: top center;
}

.lucid-gallery figcaption {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.lucid-gallery figcaption span {
  display: block;
  margin-bottom: 6px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.openai-section,
.approach-section,
.credentials-section,
.resume-section {
  background: var(--surface);
}


.approach-section + .approach-section {
  padding-top: clamp(24px, 4vw, 40px);
}

.approach-method-section {
  padding-bottom: clamp(24px, 4vw, 38px);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.fit-list {
  display: grid;
  /* border-top: 1px solid var(--soft-line); */
}

.fit-list article {
  display: grid;
  grid-template-columns: minmax(54px, 84px) minmax(220px, 300px) minmax(0, 1fr);
  gap: var(--grid-gap);
  align-items: start;
  padding: 22px 0;
 
}

.divider {
 border-bottom: 1px solid var(--soft-line);
}

.fit-list h3,
.fit-list p {
  margin: 0;
}

.page-hero + .section .fit-grid,
.page-hero + .section .approach-list {
  border-top-width: 0;
}

.fit-grid article {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--soft-line);
}

.fit-grid article:last-child {
  border-right: 0;
}

.fit-number {
  display: block;
  margin-bottom: 34px;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.fit-grid p,
.fit-list p,
.approach-list p,
.timeline p,
.resume-copy p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.link-grid a {
  min-height: 210px;
  padding: 28px 24px;
  border-right: 1px solid var(--soft-line);
}

.link-grid a:last-child {
  border-right: 0;
}

.link-grid span {
  display: block;
  margin-bottom: 34px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.link-grid p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.approach-list {
  display: grid;
}

.approach-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--soft-line);
}

.approach-list h3,
.approach-list p {
  margin-bottom: 0;
}

.approach-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--soft-line);
}

.approach-steps li {
  display: grid;
  grid-template-columns: minmax(54px, 0.12fr) minmax(180px, 0.28fr) minmax(0, 0.6fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--soft-line);
}

.approach-steps span {
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.approach-steps h3,
.approach-steps p {
  margin: 0;
}

.approach-steps p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.philosophy-table {
  display: grid;
}

.philosophy-table-head,
.philosophy-table article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.philosophy-table-head {
  padding: 0 0 14px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.philosophy-table article {
  padding: 22px 0;
  border-top: 1px solid var(--soft-line);
}

.philosophy-table article:first-of-type {
  border-top: 0;
}

.philosophy-table h3,
.philosophy-table p {
  margin: 0;
}

.philosophy-table h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.philosophy-table p {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.philosophy-table strong {
  display: block;
  padding: 11px 14px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-label);
  font-size: 12px;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.philosophy-reference-visual {
  width: min(calc(100vw - 48px), 1500px);
  margin: clamp(42px, 7vw, 76px) 0 0 50%;
  padding-top: clamp(22px, 4vw, 38px);
  border-top: 1px solid var(--soft-line);
  transform: translateX(-50%);
}

.philosophy-reference-visual img {
  width: 100%;
  height: auto;
  background: var(--surface);
}

.philosophy-main-visual {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  border-top: 0;
}

.philosophy-web-diagram {
  position: relative;
  width: min(calc(100vw - 48px), 1280px);
  aspect-ratio: 1922 / 900;
  margin: 0 0 0 50%;
  color: var(--ink);
  transform: translateX(-50%);
}

.diagram-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.diagram-orbit {
  fill: none;
  stroke: var(--line);
  stroke-dasharray: 2 7;
  stroke-linecap: round;
  stroke-width: 1.25;
}

.diagram-arc {
  display: none;
}

.diagram-dot {
  fill: var(--surface);
  stroke: var(--ink);
  stroke-width: 6;
}

.diagram-row {
  display: contents;
}

.diagram-role,
.diagram-copy,
.diagram-principle {
  position: absolute;
  z-index: 1;
}

.diagram-role {
  top: 50%;
  display: grid;
  place-items: center;
  width: 12.8%;
  aspect-ratio: 1;
  border: 1px solid var(--soft-line);
  border-radius: 50%;
  background: #fafafa;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  transform: translateY(-50%);
}

.diagram-user {
  left: 1.55%;
}

.diagram-designer {
  right: 1.55%;
}

.diagram-copy {
  width: 22%;
  font-family: var(--font-label);
  transform: translateY(-50%);
}

.diagram-copy h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10px, 1.02vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.diagram-copy p {
  margin: 0;
  color: var(--muted);
  font-family: "Courier New", Courier, ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(9px, 1.02vw, 18px);
  font-weight: 400;
  line-height: 1.38;
}

.diagram-response {
  text-align: right;
}

.diagram-principle {
  left: 50%;
  display: grid;
  place-items: center;
  width: auto;
  min-width: 92px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-label);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.diagram-principle::before,
.diagram-principle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18%;
  border-top: 1px solid var(--soft-line);
}

.diagram-principle::before {
  right: 100%;
}

.diagram-principle::after {
  left: 100%;
}

.signal-need,
.response-empathetic,
.principle-functionality {
  top: 15%;
}

.signal-like,
.response-engaging,
.principle-emotionality {
  top: 40%;
}

.signal-share,
.response-coherent,
.principle-credibility {
  top: 64%;
}

.signal-own,
.response-strategic,
.principle-trust {
  top: 88%;
}

.diagram-copy p {
  font-size: 14px;
  line-height: 1.38;
}

.signal-need,
.signal-like,
.signal-share,
.signal-own {
  left: 23.5%;
  width: 17.5%;
}

.response-empathetic {
  right: 20%;
  width: 23%;
}

.response-engaging {
  right: 20.5%;
  width: 19.5%;
}

.response-coherent {
  right: 20.5%;
  width: 19.5%;
}

.response-strategic {
  right: 20%;
  width: 23%;
}

.philosophy-visual {
  display: grid;
  grid-template-columns:
    minmax(120px, 0.8fr) minmax(160px, 1fr) minmax(150px, 0.9fr)
    minmax(160px, 1fr) minmax(120px, 0.8fr);
  gap: clamp(12px, 1.5vw, 20px);
  align-items: center;
  margin-top: clamp(40px, 7vw, 76px);
  padding-top: clamp(28px, 5vw, 48px);
  border-top: 1px solid var(--soft-line);
}

.philosophy-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(230px, 25vw, 320px);
  overflow: visible;
}

.philosophy-orbit svg {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(270px, 28vw);
  min-width: 210px;
  height: auto;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.philosophy-orbit span {
  position: relative;
  z-index: 1;
  font-family: var(--font-label);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 850;
  line-height: 1;
}

.designer-orbit svg {
  transform: translate(-50%, -50%) scaleX(-1);
}

.orbit-soft {
  fill: #f4f4f4;
  stroke: none;
}

.orbit-dash {
  fill: none;
  stroke: #d6dce2;
  stroke-dasharray: 3 5;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.orbit-arc {
  fill: none;
  stroke: #2b333e;
  stroke-linecap: round;
  stroke-width: 13;
}

.philosophy-visual-copy {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.philosophy-visual-copy article {
  position: relative;
}

.philosophy-visual-copy article::before {
  content: "";
  position: absolute;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 5px solid #2b333e;
  border-radius: 50%;
  background: var(--surface);
}

.user-side article::before {
  left: -30px;
}

.designer-side {
  text-align: right;
}

.designer-side article::before {
  right: -30px;
}

.philosophy-visual-copy h3 {
  margin: 0 0 6px;
  color: #2b333e;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.15;
}

.philosophy-visual-copy p {
  margin: 0;
  color: #7d838d;
  font-family: var(--font-label);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.25;
}

.philosophy-visual-principles {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.philosophy-visual-principles li {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2b333e;
  color: var(--surface);
  font-family: var(--font-label);
  font-size: clamp(12px, 1.15vw, 16px);
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.philosophy-visual-principles li::before,
.philosophy-visual-principles li::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  border-top: 1px dashed #d6dce2;
}

.philosophy-visual-principles li::before {
  right: 100%;
}

.philosophy-visual-principles li::after {
  left: 100%;
}

.philosophy-map {
  display: grid;
  grid-template-columns: minmax(100px, 0.16fr) minmax(180px, 0.28fr) minmax(190px, 0.22fr) minmax(180px, 0.28fr) minmax(100px, 0.16fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
}

.philosophy-role {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--soft-line);
  border-radius: 50%;
  background: #f4f4f4;
}

.philosophy-role span {
  font-family: var(--font-label);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 850;
  line-height: 1;
}

.philosophy-column {
  display: grid;
  gap: 18px;
}

.philosophy-column article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--soft-line);
}

.philosophy-column article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.philosophy-column h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.philosophy-column p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.philosophy-principles {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.philosophy-principles li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-label);
  font-size: 13px;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline article {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--soft-line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  margin-bottom: 36px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.resume-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.71fr) minmax(360px, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}

.resume-copy {
  position: sticky;
  top: 110px;
}

.resume-copy h2 {
  margin-bottom: 22px;
}

.resume-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.resume-image img {
  width: 100%;
  height: auto;
}

.resume-main {
  padding: clamp(0px, 4vw, 48px);
}

.resume-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--media-col);
  gap: var(--grid-gap);
  width: min(100%, var(--site-max));
  min-height: 1500px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px) var(--page-gutter);
  background: var(--surface);
}

.resume-left {
  min-width: 0;
}

.resume-right {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 24px;
  min-width: 0;
}

.resume-block {
  margin-bottom: 54px;
}

.resume-block > h1,
.sidebar-block h3 {
  margin: 0 0 36px;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.education-block {
  margin-top: 64px;
}

.resume-entry {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 38px;
}

.resume-entry.compact {
  margin-bottom: 18px;
}

.resume-date {
  padding-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.resume-entry-body h2 {
  margin: 0 0 8px;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.resume-entry-body h2 span {
  margin: 0 8px;
  font-weight: 400;
}

.resume-entry-body h2 .resume-location {
  margin: 0;
  font-weight: 400;
}

.resume-entry-body h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.resume-entry-body ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 16px;
}

.resume-entry-body li {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.resume-entry-body li::marker {
  content: "◇ ";
  font-size: 10px;
}

.resume-identity {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.resume-identity h2 {
  margin: 0;
  font-family: var(--font-label);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 1.1;
}

.resume-identity p {
  max-width: 250px;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.resume-right .rule {
  margin: 2px 0;
  border-top-width: 1px;
}

.resume-right .identity-contact {
  font-size: 13px;
}

.sidebar-block {
  width: 100%;
  margin-top: 30px;
}

.sidebar-block h3 {
  margin-bottom: 20px;
}

.sidebar-block h4 {
  margin: 0 0 8px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.sidebar-block p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.sidebar-block strong {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.publication-meta {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif;
}

.publication-link,
.credential-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-style: dashed;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px var(--page-gutter);
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer .social-icons {
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  :root {
    --page-gutter: clamp(22px, 4vw, 48px);
    --grid-gap: 28px;
    --content-offset: 0px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, var(--site-max));
  }

  .hero,
  .case-study,
  .case-study.reverse,
  .spotlight.reverse,
  .resume-section,
  .resume-sheet,
  .page-hero,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .lede {
    grid-column: 1;
  }

  .identity-panel {
    min-height: auto;
    justify-items: start;
  }

  .identity-block {
    justify-items: start;
    text-align: left;
  }

  .home-hero .home-identity-panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 24px;
    align-items: center;
    justify-items: start;
    padding-top: 30px;
    border-top: 1px solid var(--soft-line);
  }

  .home-identity-panel .resume-logo {
    grid-row: span 2;
    width: 72px;
  }

  .home-identity-panel .identity-block {
    gap: 8px;
    margin-top: 0;
  }

  .home-identity-panel .identity-block h2 {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .home-identity-panel .identity-block p {
    max-width: 560px;
  }

  .home-identity-panel .rule {
    display: none;
  }

  .home-identity-panel .identity-contact {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    text-align: left;
  }

  .spotlight.reverse .case-copy,
  .case-study.reverse .case-copy,
  .case-study.reverse .case-visual,
  .spotlight.reverse .case-visual {
    order: initial;
  }

  .case-copy {
    grid-template-columns: var(--project-label-col) minmax(0, 1fr);
  }

  .case-visual {
    min-height: 430px;
  }

  .fit-grid,
  .link-grid,
  .timeline,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-map {
    grid-template-columns: minmax(120px, 0.22fr) minmax(0, 0.78fr);
    align-items: start;
  }
  

  .philosophy-role:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .philosophy-user {
    grid-column: 2;
    grid-row: 1;
  }

  .philosophy-principles {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

  .philosophy-designer {
    grid-column: 2;
    grid-row: 3;
  }

  .philosophy-role:last-child {
    grid-column: 1;
    grid-row: 3;
  }

  .resume-copy {
    position: static;
  }

  .resume-sheet {
    min-height: auto;
  }

  .resume-right {
    justify-items: start;
    border-top: 1px solid var(--ink);
    padding-top: 42px;
  }

  .resume-identity {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 22px;
    --grid-gap: 22px;
  }

  body {
    font-size: 14px;
  }

  .site-header,
  main,
  .site-footer {
    width: 100%;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 20px var(--page-gutter);
  }

  .site-header nav {
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 4px;
  }

  .home-hero .home-identity-panel {
    grid-template-columns: 1fr;
  }

  .home-identity-panel .resume-logo {
    grid-row: auto;
  }

  .home-identity-panel .identity-contact {
    grid-column: 1;
  }

  .hero,
  .page-hero,
  .section {
    padding-inline: var(--page-gutter);
  }

  .resume-main {
    padding: 0;
  }

  .resume-sheet {
    padding: 34px var(--page-gutter);
  }

  h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  h2 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .eyebrow,
  .panel-label {
    letter-spacing: 2px;
  }

  .metrics,
  .fit-grid,
  .link-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .philosophy-map,
  .philosophy-principles {
    grid-template-columns: 1fr;
  }

  .philosophy-role:first-child,
  .philosophy-role:last-child,
  .philosophy-user,
  .philosophy-designer,
  .philosophy-principles {
    grid-column: 1;
    grid-row: auto;
  }

  .philosophy-role {
    width: min(180px, 62vw);
    justify-self: center;
  }

  .metrics div,
  .fit-grid article,
  .link-grid a,
  .timeline article {
    border-right: 0;
    border-bottom: 0;
  }

  .case-copy,
  .case-details div,
  .fit-list article,
  .approach-list article,
  .approach-steps li,
  .philosophy-table article,
  .resume-entry {
    grid-template-columns: 1fr;
  }

  .work-editorial .case-study {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 40%);
  }

  .work-editorial .case-visual {
    max-width: min(100%, 420px);
  }

  .approach-steps li,
  .philosophy-table article {
    gap: 10px;
  }

  .philosophy-table-head {
    display: none;
  }

  .philosophy-table strong {
    width: fit-content;
    margin: 2px 0;
    padding-inline: 12px;
  }

  .philosophy-reference-visual {
    width: 100%;
    margin-top: 34px;
    margin-left: 0;
    transform: none;
  }

  .philosophy-web-diagram {
    display: grid;
    width: 100%;
    aspect-ratio: auto;
    margin-left: 0;
    gap: 0;
    transform: none;
  }

  .diagram-lines {
    display: none;
  }

  .diagram-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    order: 1;
    padding: 10px 0;
    border-top: 1px solid var(--soft-line);
  }

  .diagram-row:last-child {
    border-bottom: 1px solid var(--soft-line);
  }

  .diagram-role,
  .diagram-copy,
  .diagram-principle {
    position: static;
    width: auto;
    transform: none;
  }

  .diagram-role {
    justify-self: center;
    width: min(86px, 31vw);
    margin-bottom: 12px;
    font-size: 18px;
  }

  .diagram-user {
    order: 0;
  }

  .diagram-designer {
    order: 2;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .diagram-copy {
    font-family: var(--font-label);
  }

  .diagram-response {
    text-align: left;
  }

  .diagram-copy h3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .diagram-copy p {
    max-width: 30rem;
    font-size: 12px;
    line-height: 1.36;
  }

  .diagram-principle {
    justify-self: start;
    min-height: auto;
    min-width: 0;
    padding: 4px 9px;
    font-size: 15px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .diagram-principle::before,
  .diagram-principle::after {
    display: none;
  }

  .philosophy-visual {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }

  .philosophy-orbit {
    min-height: 180px;
  }

  .philosophy-orbit svg {
    width: 180px;
    min-width: 180px;
  }

  .philosophy-visual-copy {
    gap: 18px;
  }

  .philosophy-visual-copy,
  .designer-side {
    text-align: left;
  }

  .philosophy-visual-copy article {
    padding-left: 30px;
  }

  .philosophy-visual-copy article::before,
  .designer-side article::before {
    left: 0;
    right: auto;
    width: 12px;
    height: 12px;
    border-width: 4px;
  }

  .philosophy-visual-principles {
    gap: 12px;
  }

  .philosophy-visual-principles li {
    width: fit-content;
    min-height: 38px;
    padding-inline: 14px;
  }

  .philosophy-visual-principles li::before,
  .philosophy-visual-principles li::after {
    display: none;
  }

  .resume-date {
    font-size: 12px;
  }

  .case-copy h3,
  .case-copy > p,
  .case-copy > p:not(.case-kicker),
  .case-details,
  .case-copy .actions,
  .public-context,
  .case-nav {
    grid-column: 1;
  }

  .case-kicker {
    grid-column: 1;
    margin-bottom: 8px;
    letter-spacing: 0.12em;
  }

  .case-visual {
    min-height: 560px;
  }

  .lucid-gallery {
    grid-template-columns: 1fr;
  }

  .lucid-teaser-media {
    min-height: 420px;
  }

  .primary-rec,
  .explanation,
  .controls,
  .prompt-block {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .primary-rec {
    top: 24px;
  }

  .explanation {
    bottom: 188px;
  }

  .controls {
    bottom: 24px;
  }

  .channel-stage {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .stage-a {
    top: 24px;
  }

  .stage-b {
    top: 148px;
  }

  .stage-c {
    bottom: 148px;
  }

  .stage-d {
    bottom: 24px;
  }

  .channel-line {
    display: none;
  }

  .prototype-arrow {
    top: 222px;
  }

  .screen-stack {
    left: 24px;
    right: 24px;
    bottom: 74px;
  }

  .component-strip {
    top: 246px;
    right: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================================================
   Architecture-inspired editorial layout
   ========================================================================== */

.editorial-site {
  --site-max: 1240px;
  --page-gutter: clamp(30px, 4.8vw, 64px);
  --section-y: clamp(52px, 7vw, 82px);
  --grid-gap: clamp(26px, 3.2vw, 44px);
  background: #101010;
}

.editorial-site .site-header,
.editorial-site main,
.editorial-site .site-footer {
  width: min(calc(100% - 30px), var(--site-max));
}

/* Scroll-triggered metric trends. */
.home-page .metric-value {
  display: inline-block;
  min-width: 2.2ch;
  font-variant-numeric: tabular-nums lining-nums;
  transform-origin: 50% 70%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.home-page .metric-value.metric-ready {
  opacity: 0;
  filter: blur(2px);
  transform: perspective(500px) rotateX(-78deg) translateY(0.18em);
}

.home-page .metric-value.metric-running {
  opacity: 1;
  filter: blur(0);
  transform: perspective(500px) rotateX(0deg) translateY(0);
  transition:
    opacity 220ms ease,
    filter 420ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .home-page .metric-value {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

.editorial-site .site-header {
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: var(--paper);
}

.editorial-site .site-header nav {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-site .site-header nav a.active {
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.editorial-site main {
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--paper);
}

.editorial-site .site-footer {
  margin-bottom: 15px;
  padding: 28px 20px;
  border: 1px solid #404040;
  background: #101010;
  color: #f4f4f4;
}

.editorial-site .site-footer a:hover {
  color: #ffffff;
}

.editorial-site .site-footer .icon-link img {
  filter: invert(1);
}

.editorial-site .eyebrow,
.editorial-site .case-kicker,
.editorial-site .panel-label {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.editorial-site .button {
  min-height: 42px;
  padding: 10px 17px;
  letter-spacing: 0.02em;
}

/* Home */

.home-page .home-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: 620px;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.home-page .home-hero:has(> .home-hero-visual) {
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
}

.home-page .home-hero:not(:has(> .home-hero-visual)) {
  min-height: auto;
}

.home-page .home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-page .home-hero .hero-copy {
  position: relative;
  z-index: 2;
}

.home-page .hero-ripple {
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(8, 8, 8, 0.22);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.15);
  animation: hero-ripple-expand 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-page .hero-ripple::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(8, 8, 8, 0.13);
  border-radius: inherit;
}

@keyframes hero-ripple-expand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.15);
  }

  16% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.8);
  }
}

.home-page .home-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  container-type: inline-size;
  max-width: none;
  padding: clamp(50px, 7vw, 88px) var(--page-gutter);
}

.home-page .home-title {
  width: min(100%, 780px);
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 48px);
  font-size: clamp(24px, 9cqw, 82px);
  font-weight: 900;
  line-height: 0.98;
  -webkit-text-stroke: 0.45px currentColor;
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .home-title > span {
  display: block;
  overflow: visible;
  white-space: nowrap;
}

.home-page .home-title > span:not(:last-child) {
  margin-bottom: 0.08em;
}

.home-page .home-title > span:nth-child(3) {
  margin-bottom: 0.16em;
}

.home-page .intro-greeting {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .intro-wave {
  display: inline-block;
  transform-origin: 72% 78%;
}

.home-page .intro-name,
.home-page .intro-name > span {
  display: inline-block;
}

.home-page .intro-name > span {
  transform-origin: center bottom;
}

.home-page .intro-name .intro-space {
  width: 0.34em;
}

@media (hover: hover) {
  .home-page .intro-greeting:hover {
    transform: scale(1.12);
  }

  .home-page .hero-copy:has(.home-title:hover) .intro-greeting {
    transform: scale(1.12);
  }

  .home-page .intro-greeting:hover .intro-wave,
  .home-page .hero-copy:has(.home-title:hover) .intro-wave {
    animation: intro-hand-wave 680ms ease-in-out 2;
  }

  .home-page .intro-name.is-first-reveal > span {
    animation: intro-letter-reveal 440ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .home-page .intro-name.is-first-reveal > span:nth-child(1) { animation-delay: 0ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(2) { animation-delay: 35ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(3) { animation-delay: 70ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(4) { animation-delay: 105ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(5) { animation-delay: 140ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(6) { animation-delay: 175ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(7) { animation-delay: 210ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(8) { animation-delay: 245ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(9) { animation-delay: 280ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(10) { animation-delay: 315ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(11) { animation-delay: 350ms; }
  .home-page .intro-name.is-first-reveal > span:nth-child(12) { animation-delay: 385ms; }
}

@keyframes intro-letter-reveal {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(0.55em) scale(0.86);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-hand-wave {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(22deg);
  }

  50% {
    transform: rotate(-12deg);
  }

  75% {
    transform: rotate(18deg);
  }
}

@media (prefers-reduced-motion: reduce), (hover: none) {
  .home-page .hero-ripple {
    display: none;
  }

  .home-page .intro-greeting,
  .home-page .intro-greeting:hover,
  .home-page .intro-greeting:hover .intro-wave,
  .home-page .hero-copy:has(.home-title:hover) .intro-greeting,
  .home-page .hero-copy:has(.home-title:hover) .intro-wave,
  .home-page .intro-name.is-first-reveal > span {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-page .home-hero .lede {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.72;
}

.home-page .home-hero .actions {
  margin-top: 34px;
}

.home-hero-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: #e8e8e8;
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  padding: clamp(34px, 5vw, 70px);
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
}

.home-hero-visual figcaption {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.home-hero-visual figcaption span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial-ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-bottom: 1px solid #3a3a3a;
  background: #101010;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.editorial-ticker span {
  padding: 9px 14px;
  border-right: 1px solid #3a3a3a;
  text-align: center;
}

.editorial-ticker span:last-child {
  border-right: 0;
}

.home-page .section {
  border-top-color: var(--ink);
}

.home-page .home-proof {
  padding-bottom: 0;
}

.home-page .home-section-divider {
  height: 1px;
  margin: clamp(54px, 7vw, 84px) var(--page-gutter) 0;
  background: var(--soft-line);
}

.home-page .home-proof .section-heading,
.home-page .openai-section .section-heading {
  margin-bottom: 20px;
}

.home-page .section-lede {
  margin-bottom: 38px;
}

.home-page .metrics {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.home-page .metrics div {
  min-height: 210px;
  padding: 32px clamp(20px, 2.7vw, 34px);
  border-right-color: var(--ink);
}

.home-page .metrics strong {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-page .metrics span {
  font-size: 12px;
  line-height: 1.6;
}

.selected-work-band {
  padding-top: clamp(44px, 6vw, 68px);
  padding-bottom: clamp(54px, 7vw, 84px);
  background: #101010;
  color: #ffffff;
}

.selected-work-band .band-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #4a4a4a;
}

.selected-work-band .eyebrow,
.selected-work-band h2,
.selected-work-band .text-link {
  color: #ffffff;
}

.selected-work-band .eyebrow {
  margin-bottom: 10px;
}

.selected-work-band h2 {
  font-size: clamp(36px, 5.3vw, 66px);
  line-height: 0.96;
  text-transform: uppercase;
}

.selected-work-band .text-link {
  flex: 0 0 auto;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.work-tile {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #3f3f3f;
  background: #171717;
  color: #ffffff;
}

.work-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.work-tile:nth-child(1) img,
.work-tile:nth-child(2) img {
  padding: 28px;
  background: #e8e8e8;
  object-fit: contain;
}

.work-tile span {
  padding: 17px 18px 2px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 850;
  line-height: 1.08;
}

.work-tile small {
  padding: 7px 18px 18px;
  color: #bdbdbd;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .openai-section {
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 92px);
}

.home-page .fit-list {
  border-top: 1px solid var(--ink);
}

.home-page .fit-list article {
  min-height: 122px;
  padding: 26px 0;
  border-bottom: 1px solid var(--ink);
}

.home-page .fit-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

/* Work index */

.work-page main,
.work-page .work-editorial,
.work-page .case-study {
  background: #101010;
}

.work-page .work-editorial {
  padding-top: 0;
  padding-bottom: 0;
  color: #ffffff;
}

.work-page .work-editorial .case-study {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 36%);
  gap: clamp(38px, 5vw, 70px);
  min-height: 620px;
  padding: clamp(62px, 8vw, 96px) 0;
  border-top: 1px solid #454545;
}

.work-page .work-editorial .case-study:first-child {
  border-top: 0;
}

.work-page .case-copy h1,
.work-page .case-copy h3,
.work-page .case-copy p,
.work-page .case-kicker,
.work-page .public-context,
.work-page .public-context p,
.work-page .public-context strong {
  color: #ffffff;
}

.work-page .case-copy h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.99;
}

.work-page .case-kicker {
  min-height: 300px;
  color: #d9d9d9;
}

.work-page .case-tags {
  margin-top: 8px;
}

.work-page .case-tags li {
  border-color: #4d4d4d;
  color: #ffffff;
}


.work-page .case-proof-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 20px 22px;
  border: 1px solid #ffffff;
  background: #ffffff;
}

.work-page .case-proof-points div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
}

.work-page .case-proof-points dt {
  margin: 0;
  color: #000000;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.work-page .case-proof-points dd {
  margin: 0;
  color: #000000;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.58;
}

.work-page .public-context {
  padding-top: 16px;
  border-top-color: #6a6a6a;
  opacity: 0.72;
}

.work-page .button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #101010;
}

.work-page .button.secondary {
  border-color: #777777;
  background: transparent;
  color: #ffffff;
}

.work-page .work-editorial .case-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 430px;
  padding: clamp(24px, 3.5vw, 46px);
  border: 1px solid #3f3f3f;
  background: #eeeeee;
}

.work-page .work-editorial .case-visual img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}

.work-page .work-editorial #meta-ai .maiba-media,
.work-page .work-editorial .omnichannel-media,
.work-page .work-editorial .dls-media,
.work-page .work-editorial .lucid-teaser-media {
  width: 100%;
  max-width: none;
  min-height: 430px;
  aspect-ratio: auto;
  border-radius: 0;
}

.work-page .work-editorial #meta-ai .maiba-media {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.work-page .work-editorial #meta-ai .maiba-video {
  display: block;
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: inherit;
  object-fit: cover;
  background: transparent;
}

.work-page .work-editorial .lucid-teaser-media img {
  max-width: 82%;
}



.work-page .work-editorial .case-visual.media-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 0;
  border: 0;
  outline: 1px solid var(--soft-line);
  background: #f5f5f5;
}

.work-page .work-editorial .case-visual.media-visual img,
.work-page .work-editorial .case-visual.media-visual video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-page .work-editorial .omni-composite-cover .omni-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.work-page .work-editorial .omni-composite-cover img.omni-phone-gif {
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 1;
  width: auto;
  max-width: none;
  height: 74%;
  max-height: 74%;
  object-fit: contain;
  transform: translateY(-50%);
  transform-origin: left center;
  border-radius: 17.5% / 8.68%;
  clip-path: inset(0.12% 1.4% 0.43% 1.15% round 17.5% / 8.68%);
}

@media (hover: hover) {
  .work-page .work-editorial .case-visual.media-visual:hover img,
  .work-page .work-editorial .case-visual.media-visual:hover video,
  .work-page .work-editorial .case-visual.media-visual:focus-within img,
  .work-page .work-editorial .case-visual.media-visual:focus-within video {
    filter: grayscale(0) contrast(1);
  }

  .work-page .work-editorial .omni-composite-cover:hover img.omni-phone-gif,
  .work-page .work-editorial .omni-composite-cover:focus-within img.omni-phone-gif {
    transform: translateY(-50%) scale(1.025);
  }
}

/* Case studies */

.case-page main {
  background: var(--paper);
}

.case-page main > .section {
  padding-top: clamp(56px, 7vw, 84px);
  padding-bottom: clamp(64px, 8vw, 96px);
}


.case-hiring-read {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  padding: 20px 0 0;
  border-top: 1px solid var(--soft-line);
}

.case-hiring-read div {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
}

.case-hiring-read div:last-child {
  border-bottom: 0;
}

.case-hiring-read dt {
  margin: 0 0 6px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-hiring-read dd {
  margin: 0;
  max-width: 720px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .case-hiring-read {
    margin-bottom: 24px;
  }
}

.case-page .case-study,
.case-page .case-study.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 32%);
  gap: clamp(38px, 5vw, 68px);
  padding: 0;
  border-top: 0;
}

.case-page .case-study.reverse .case-copy {
  order: 1;
}

.case-page .case-study.reverse .case-visual {
  order: 2;
}

.case-page .case-copy h3 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.02;
}

.case-page .case-copy > p:not(.case-kicker) {
  max-width: 720px;
}

.case-page .case-details {
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.case-page .case-details div {
  grid-template-columns: minmax(130px, 0.26fr) minmax(0, 0.74fr);
  padding: 18px 0;
  border-top: 0;
  border-bottom: 1px solid var(--soft-line);
}

.case-page .case-details dt {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-page .case-visual {
  min-height: 480px;
  border: 1px solid var(--ink);
  background: #eeeeee;
  background-image: none;
}

.case-page .media-visual {
  padding: 20px;
}

.case-page .lucid-gallery {
  margin-top: clamp(52px, 7vw, 82px);
  padding-top: clamp(42px, 6vw, 66px);
  border-top-color: var(--ink);
}

/* Resume */

.resume-page .resume-main {
  padding: 0;
}

.resume-page .resume-sheet {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 31%);
  width: 100%;
  padding-top: clamp(54px, 7vw, 78px);
  padding-bottom: clamp(64px, 8vw, 94px);
}

.resume-page .resume-right {
  align-content: start;
  padding-left: var(--grid-gap);
  border-left: 1px solid var(--ink);
}

.resume-page .resume-block > h1,
.resume-page .sidebar-block h3 {
  margin-bottom: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.resume-page .resume-entry {
  margin-bottom: 0;
  padding: 26px 0;
  border-bottom: 1px solid var(--soft-line);
}

.resume-page .resume-entry.compact {
  margin-bottom: 0;
}

.resume-page .sidebar-block {
  margin-top: 20px;
}

.resume-page .sidebar-block h3 {
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .home-page .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 520px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .home-hero-visual img {
    min-height: 430px;
  }

  .work-page .work-editorial .case-study,
  .case-page .case-study,
  .case-page .case-study.reverse {
    grid-template-columns: 1fr;
  }

  .work-page .case-kicker,
  .case-page .case-kicker {
    min-height: 0;
    writing-mode: horizontal-tb;
  }

  .work-page .work-editorial .case-visual,
  .case-page .case-visual,
  .case-page .case-study.reverse .case-visual {
    order: 2;
    max-width: 560px;
    justify-self: center;
  }

  .case-page .case-copy,
  .work-page .case-copy {
    grid-template-columns: 1fr;
  }

  .case-page .case-copy > *,
  .work-page .case-copy > * {
    grid-column: 1;
  }

  .resume-page .resume-sheet {
    grid-template-columns: 1fr;
  }

  .resume-page .resume-right {
    padding-top: 48px;
    padding-left: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .editorial-site {
    --page-gutter: 22px;
  }

  .editorial-site .site-header,
  .editorial-site main,
  .editorial-site .site-footer {
    width: calc(100% - 16px);
  }

  .editorial-site .site-header {
    padding: 14px;
  }

  .home-page .home-hero {
    min-height: auto;
  }

  .home-page .home-hero .hero-copy {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-hero-visual {
    min-height: 420px;
  }

  .home-hero-visual img {
    min-height: 340px;
    padding: 28px;
  }

  .editorial-ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-ticker span:nth-child(2) {
    border-right: 0;
  }

  .editorial-ticker span:nth-child(-n + 2) {
    border-bottom: 1px solid #3a3a3a;
  }

  .home-page .metrics,
  .selected-work-grid {
    grid-template-columns: 1fr;
  }

  .home-page .metrics div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .home-page .metrics div:last-child {
    border-bottom: 0;
  }

  .selected-work-band .band-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-tile {
    min-height: 0;
  }

  .work-tile img {
    height: 260px;
  }

  .home-page .fit-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .home-page .fit-list p {
    grid-column: 2;
  }

  .work-page .work-editorial .case-study {
    min-height: 0;
    padding: 54px 0;
  }

  .work-page .case-copy h1 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .work-page .work-editorial .case-visual,
  .work-page .work-editorial #meta-ai .maiba-media,
  .work-page .work-editorial .omnichannel-media,
  .work-page .work-editorial .dls-media,
  .work-page .work-editorial .lucid-teaser-media,
  .case-page .case-visual {
    min-height: 360px;
  }

  .case-page .case-details div,
  .resume-page .resume-entry {
    grid-template-columns: 1fr;
  }

  .resume-page .resume-date {
    text-align: left;
  }
}

/* ==========================================================================
   Editorial motion system
   ========================================================================== */

html.motion-enabled .site-header {
  opacity: 0;
  transform: translateY(-14px);
}

html.motion-enabled.motion-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.motion-enabled .home-hero .hero-copy > * {
  opacity: 0;
  transform: translateY(30px);
}

html.motion-enabled.motion-loaded .home-hero .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.motion-enabled.motion-loaded .home-hero .hero-copy > :nth-child(1) {
  transition-delay: 60ms;
}

html.motion-enabled.motion-loaded .home-hero .hero-copy > :nth-child(2) {
  transition-delay: 130ms;
}

html.motion-enabled.motion-loaded .home-hero .hero-copy > :nth-child(3) {
  transition-delay: 220ms;
}

html.motion-enabled.motion-loaded .home-hero .hero-copy > :nth-child(4) {
  transition-delay: 300ms;
}

html.motion-enabled .home-hero-visual {
  clip-path: inset(0 0 0 100%);
  transform: translateX(22px);
}

html.motion-enabled.motion-loaded .home-hero-visual {
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
  transition:
    clip-path 920ms cubic-bezier(0.76, 0, 0.24, 1) 120ms,
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

html.motion-enabled .editorial-ticker {
  opacity: 0;
  transform: scaleX(0.94);
  transform-origin: left center;
}

html.motion-enabled.motion-loaded .editorial-ticker {
  opacity: 1;
  transform: scaleX(1);
  transition:
    opacity 560ms ease 440ms,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 440ms;
}

html.motion-enabled .motion-reveal {
  opacity: 0;
  transform: translateY(34px);
}

html.motion-enabled .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms);
}

html.motion-enabled .work-page .case-study.motion-reveal,
html.motion-enabled .case-page .case-media-stack.motion-reveal,
html.motion-enabled .case-page .case-study > .case-visual.motion-reveal,
html.motion-enabled .work-tile.motion-reveal {
  clip-path: inset(0 0 12% 0);
}

html.motion-enabled .work-page .case-study.motion-reveal.is-visible,
html.motion-enabled .case-page .case-media-stack.motion-reveal.is-visible,
html.motion-enabled .case-page .case-study > .case-visual.motion-reveal.is-visible,
html.motion-enabled .work-tile.motion-reveal.is-visible {
  clip-path: inset(0 0 0 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms),
    clip-path 880ms cubic-bezier(0.76, 0, 0.24, 1) var(--motion-delay, 0ms);
}

.home-hero-visual img,
.work-tile img,
.work-page .case-visual img,
.case-page .media-visual img,
.lucid-gallery img {
  transition:
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, transform;
}

.work-page .case-visual img,
.case-page .media-visual img,
.lucid-gallery img {
  filter: grayscale(0.86);
}

.home-hero-visual:hover img,
.home-hero-visual:focus-within img,
.work-tile:hover img,
.work-tile:focus-visible img,
.work-page .case-visual:hover img,
.case-page .media-visual:hover img,
.lucid-gallery figure:hover img {
  filter: grayscale(0);
  transform: scale(1.035);
}

.work-tile,
.editorial-site .button,
.editorial-site .text-link,
.editorial-site .site-header nav a {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-tile:hover,
.work-tile:focus-visible {
  border-color: #8a8a8a;
  transform: translateY(-1px);
}

.editorial-site .button:hover,
.editorial-site .button:focus-visible {
  transform: translateY(-2px);
}

.editorial-site .text-link:hover,
.editorial-site .text-link:focus-visible {
  transform: translateX(4px);
}

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

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

/* Home page without decorative rules */
.home-page.editorial-site .site-header,
.home-page.editorial-site main {
  border: 0;
}

.home-page .home-hero,
.home-page .home-hero-visual,
.home-page .home-hero-visual figcaption,
.home-page .editorial-ticker,
.home-page .editorial-ticker span,
.home-page .metrics,
.home-page .metrics div,
.home-page .selected-work-band .band-heading,
.home-page .work-tile,
.home-page .fit-list,
.home-page .fit-list article {
  border: 0;
}

@media (max-width: 720px) {
  .home-page .editorial-ticker span:nth-child(-n + 2),
  .home-page .metrics div {
    border: 0;
  }
}

/* Unified white canvas */
.editorial-site,
.editorial-site main,
.editorial-site .site-header,
.editorial-site .site-footer,
.home-page .selected-work-band,
.home-page .editorial-ticker,
.home-page .work-tile,
.work-page main,
.work-page .work-editorial,
.work-page .work-editorial .case-study,
.work-page .work-editorial .case-visual,
.case-page main,
.case-page .case-visual {
  background: #ffffff;
}

.editorial-site .site-footer,
.editorial-site .site-footer a,
.home-page .selected-work-band,
.home-page .selected-work-band .eyebrow,
.home-page .selected-work-band h2,
.home-page .selected-work-band .text-link,
.home-page .editorial-ticker,
.home-page .work-tile,
.work-page .work-editorial,
.work-page .case-copy h1,
.work-page .case-copy h3,
.work-page .case-copy p,
.work-page .case-kicker,
.work-page .public-context,
.work-page .public-context p,
.work-page .public-context strong,
.work-page .case-tags li {
  color: var(--ink);
}

.editorial-site .site-footer .icon-link img {
  filter: none;
}

.home-page .work-tile small {
  color: #555555;
}

.home-page .work-tile:nth-child(1) img,
.home-page .work-tile:nth-child(2) img,
.work-page .work-editorial .case-visual,
.case-page .case-visual {
  background: #ffffff;
}

.work-page .case-kicker {
  color: #333333;
}

.work-page .case-tags li {
  border-color: var(--soft-line);
}

.work-page .button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.work-page .button.secondary {
  border-color: var(--ink);
  background: #ffffff;
  color: var(--ink);
}

/* CSS-native entrance fallback keeps file previews visible without timers. */
@keyframes editorial-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorial-clip-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

html.motion-enabled .site-header,
html.motion-enabled .home-hero .hero-copy > *,
html.motion-enabled .editorial-ticker,
html.motion-enabled .motion-reveal {
  animation: editorial-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.motion-enabled .home-hero-visual {
  animation: editorial-clip-enter 900ms cubic-bezier(0.76, 0, 0.24, 1) 120ms both;
}

html.motion-enabled .motion-reveal,
html.motion-enabled .motion-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  animation-delay: var(--motion-delay, 0ms);
}

@keyframes editorial-safe-enter {
  from {
    transform: translateY(14px);
  }

  to {
    transform: translateY(0);
  }
}

html.motion-enabled .site-header,
html.motion-enabled .home-hero .hero-copy > *,
html.motion-enabled .home-hero-visual,
html.motion-enabled .editorial-ticker,
html.motion-enabled .motion-reveal,
html.motion-enabled .motion-reveal.is-visible {
  opacity: 1 !important;
  clip-path: inset(0 0 0 0) !important;
  transform: translateY(0) !important;
  animation: editorial-safe-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

html.motion-enabled .motion-reveal,
html.motion-enabled .motion-reveal.is-visible {
  animation-delay: var(--motion-delay, 0ms) !important;
}

/* Line-free visual system */
.editorial-site:not(.resume-page) *,
.editorial-site:not(.resume-page) *::before,
.editorial-site:not(.resume-page) *::after {
  border-color: transparent !important;
  border-style: none !important;
  box-shadow: none !important;
}

.editorial-site:not(.resume-page) hr,
.editorial-site:not(.resume-page) .rule {
  display: none !important;
}

.editorial-site:not(.resume-page) a,
.editorial-site:not(.resume-page) a:hover,
.editorial-site:not(.resume-page) a:focus-visible,
.editorial-site:not(.resume-page) .site-header nav a.active,
.editorial-site:not(.resume-page) .source-link {
  text-decoration: none !important;
}

/* Resume restoration: original open layout from the beginning of June 3. */
.resume-page.editorial-site {
  --site-max: 1160px;
  --grid-gap: 34px;
  --media-col: minmax(240px, 29%);
  background: var(--paper);
}

.resume-page.editorial-site .site-header,
.resume-page.editorial-site main,
.resume-page.editorial-site .site-footer {
  width: min(100% - 48px, var(--site-max));
  background: var(--surface);
}

.resume-page.editorial-site .site-header {
  padding: 20px var(--page-gutter);
  border: 0;
  border-bottom: 1px solid var(--soft-line);
}

.resume-page.editorial-site main {
  border: 0;
}

.resume-page .resume-main {
  padding: clamp(0px, 4vw, 48px);
}

.resume-page .resume-sheet {
  grid-template-columns: minmax(0, 1fr) var(--media-col);
  gap: var(--grid-gap);
  width: min(100%, var(--site-max));
  min-height: 1500px;
  padding: clamp(20px, 3vw, 32px) var(--page-gutter);
}

.resume-page .resume-right {
  gap: 24px;
  padding-left: 0;
  border: 0;
}

.resume-page .resume-block > h1,
.resume-page .sidebar-block h3 {
  margin-bottom: 36px;
  padding-bottom: 0;
  border: 0;
}

.resume-page .resume-entry,
.resume-page .resume-entry.compact {
  padding: 0;
  border: 0;
}

.resume-page .resume-entry {
  margin-bottom: 38px;
}

.resume-page .resume-entry.compact {
  margin-bottom: 18px;
}

.resume-page .sidebar-block {
  margin-top: 30px;
}

.resume-page .sidebar-block h3 {
  margin-bottom: 20px;
}

.resume-page.editorial-site .site-footer {
  margin-bottom: 32px;
  padding: 24px var(--page-gutter);
  border: 0;
  border-top: 1px solid var(--soft-line);
  background: var(--surface);
  color: var(--muted);
}

.resume-page.editorial-site .site-footer .icon-link img {
  filter: none;
}

@media (max-width: 1180px) {
  .resume-page .resume-sheet {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .resume-page .resume-right {
    padding-top: 42px;
    border-top: 1px solid var(--ink);
  }
}

@media (max-width: 720px) {
  .resume-page.editorial-site .site-header,
  .resume-page.editorial-site main,
  .resume-page.editorial-site .site-footer {
    width: 100%;
  }

  .resume-page .resume-main {
    padding: 0;
  }

  .resume-page .resume-sheet {
    padding: 34px var(--page-gutter);
  }
}

/* Header and footer restoration: beginning-of-June-3 system. */
.editorial-site .site-header,
.editorial-site .site-footer {
  width: min(100% - 48px, 1160px);
  background: var(--surface) !important;
  box-shadow: none !important;
}

.editorial-site .site-header {
  padding: 20px var(--page-gutter);
  border: 0 !important;
  border-bottom: 1px solid var(--soft-line) !important;
}

.editorial-site .site-header nav {
  color: var(--muted);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.editorial-site .site-header nav a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400;
  letter-spacing: 0 !important;
  line-height: 1.2;
  text-transform: none !important;
}

.editorial-site .site-header nav a.active {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 5px !important;
}

.home-page .home-hero-visual {
  background: #ffffff !important;
}

.home-page .astronaut-gif-visual {
  display: flex;
  position: relative;
  right: var(--page-gutter);
  align-items: center;
  justify-content: center;
  min-height: 620px;
  overflow: hidden;
  border: 0;
  background: #ffffff !important;
}

.home-page .astronaut-gif-visual::before,
.home-page .astronaut-gif-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.home-page .astronaut-gif-visual::before {
  inset: 44px 24px;
}

.home-page .astronaut-gif-visual::after {
  inset: 49px 29px;

}

.home-page .astronaut-gif-visual .astronaut-gif {
  display: block;
  width: calc(100% - 0px);
  max-width: 640px;
  height: auto;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  filter: none;
  opacity: 0;
  transform: none !important;
  transition: opacity 160ms ease;
  will-change: auto;
}

.home-page .astronaut-gif-visual .astronaut-gif.is-playing {
  opacity: 1;
}

.home-page .astronaut-gif-visual:hover .astronaut-gif,
.home-page .astronaut-gif-visual:focus-within .astronaut-gif {
  filter: none;
  transform: none !important;
}

.home-page .astronaut-tooltip {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 50%;
  z-index: 4;
  width: max-content;
  padding: 8px 11px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .astronaut-gif-visual:hover .astronaut-tooltip,
.home-page .astronaut-gif-visual:focus-visible .astronaut-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-page .home-hero,
  .home-page .home-hero .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .home-page .astronaut-gif-visual {
    right: auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 28px 0;
  }

  .home-page .astronaut-gif-visual::before {
    inset: 28px 14px;
  }

  .home-page .astronaut-gif-visual::after {
    inset: 33px 19px;
  }

  .home-page .astronaut-gif-visual .astronaut-gif {
    width: calc(100% - 28px);
  }

  .home-page .astronaut-tooltip {
    top: auto;
    bottom: 34px;
    left: 50%;
  }
}


.editorial-site .site-footer {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px var(--page-gutter);
  border: 0 !important;
  border-top: 1px solid var(--soft-line) !important;
  color: var(--muted) !important;
  font-size: 13px;
}

.editorial-site .site-footer a {
  color: inherit !important;
}

.editorial-site .site-footer .icon-link img {
  filter: none !important;
}

@media (max-width: 720px) {
  .editorial-site .site-header,
  .editorial-site .site-footer {
    width: 100%;
  }
}

/* Refined proof points and selected-work rhythm. */
.home-page .home-proof {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(58px, 7vw, 84px);
}

.home-page .home-proof .section-heading {
  margin-bottom: 14px;
}

.home-page .home-proof .section-lede {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.home-page .metrics {
  align-items: start;
}

.home-page .metrics div {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.home-page .metrics strong {
  margin-bottom: 14px;
}

.home-page .metrics span {
  max-width: 210px;
  font-size: 13px;
  line-height: 1.55;
}

.home-page .selected-work-band {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(64px, 8vw, 96px);
}



.home-page .selected-work-band .band-heading {
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 46px);
  padding-bottom: 0;
}

.home-page .selected-work-grid {
  gap: clamp(34px, 4vw, 52px) clamp(22px, 3vw, 36px);
}

.home-page .work-tile {
  display: block;
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.home-page .work-tile-media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #f5f5f5;
  border: 0;
  outline: 1px solid var(--soft-line);
  outline-offset: 0;
  box-shadow: none;
  box-sizing: border-box;
}

.home-page .work-tile-media img {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}


.home-page .work-tile-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.home-page .lucid-video-cover iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.04);
  pointer-events: none;
}


.home-page .work-tile:nth-child(2) .work-tile-media {
  aspect-ratio: 16 / 10;
}

.home-page .work-tile:nth-child(2) .work-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}


.home-page .work-tile:nth-child(2) .work-tile-video,
.home-page .work-tile:nth-child(2) .omnichannel-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.home-page .omni-composite-cover {
  isolation: isolate;
}

.home-page .omni-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  z-index: 0;
}

.home-page .work-tile:nth-child(2) .omni-composite-cover img.omni-phone-gif {
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 1;
  width: auto;
  max-width: none;
  height: 74%;
  max-height: 74%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
  transform: translateY(-50%);
  transform-origin: left center;
  border-radius: 17.5% / 8.68%;
  clip-path: inset(0.12% 1.4% 0.43% 1.15% round 17.5% / 8.68%);
}

@media (hover: hover) {
  .home-page .work-tile:hover .omni-composite-cover .omni-bg-video,
  .home-page .work-tile:focus-visible .omni-composite-cover .omni-bg-video {
    filter: grayscale(0) contrast(1);
  }

  .home-page .work-tile:hover .omni-composite-cover img.omni-phone-gif,
  .home-page .work-tile:focus-visible .omni-composite-cover img.omni-phone-gif {
    filter: grayscale(0) contrast(1);
    transform: translateY(-50%) scale(1.025);
  }
}


.home-page .selected-work-grid .work-tile:nth-child(1) .work-tile-media,
.home-page .selected-work-grid .work-tile:nth-child(2) .work-tile-media {
  aspect-ratio: 16 / 10;
  height: auto;
}

.home-page .selected-work-grid .work-tile:nth-child(1) .work-tile-media > *,
.home-page .selected-work-grid .work-tile:nth-child(2) .work-tile-media > * {
  width: 100%;
  height: 100%;
}

.home-page .work-tile-title {
  display: block;
  padding: 18px 0 0;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-page .work-tile-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
}

.home-page .work-tile-heading-row .work-tile-title {
  padding: 0;
}

.home-page .work-tile-cta {
  display: inline-flex;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: -1px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .work-tile-cta-external {
  font-size: 15px;
  transform: translateY(1px);
}

.home-page .work-tile:hover .work-tile-cta,
.home-page .work-tile:focus-visible .work-tile-cta {
  transform: translateX(2px);
}

.home-page .work-tile:hover .work-tile-cta-external,
.home-page .work-tile:focus-visible .work-tile-cta-external {
  transform: translate(2px, 1px);
}



.home-page .work-tile-meta {
  display: block;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}


.home-page .work-tile-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0 0;
}

.home-page .work-tile-row .work-tile-meta {
  padding: 0;
}





@media (hover: hover) {
  .home-page .work-tile-media img,
  .home-page .work-tile-video {
    transition:
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
      filter 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .home-page .work-tile:hover .work-tile-media img,
  .home-page .work-tile:hover .work-tile-video {
    filter: grayscale(0) contrast(1);
    transform: scale(1.025);
  }
}

@media (max-width: 720px) {
  .home-page .home-proof {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .home-page .metrics {
    gap: 30px;
  }

  .home-page .selected-work-grid {
    gap: 38px;
  }

  .home-page .selected-work-band .band-heading {
    gap: 14px;
  }
}


/* Shared distance from the header rule to each page's first content label. */
.home-page .home-hero .hero-copy {
  justify-content: flex-start;
  padding-top: var(--first-content-offset);
}

.work-page .work-editorial .case-study:first-child {
  padding-top: var(--first-content-offset);
}

.work-page .work-editorial .case-study + .case-study {
  position: relative;
}

.work-page .work-editorial .case-study + .case-study::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--soft-line);
}

.resume-page .resume-main {
  padding-top: 0;
}

.resume-page .resume-sheet {
  padding-top: var(--first-content-offset);
}

@media (max-width: 720px) {
  :root {
    --first-content-offset: 48px;
  }
}

/* Restore the outlined secondary action treatment. */
.editorial-site .button.secondary {
  border: 1px solid var(--ink) !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
}

/* Match project labels to the outlined secondary-action system. */
.work-page .case-tags li,
.case-page .case-tags li {
  border: 1px solid var(--ink) !important;
  background: var(--surface);
  color: var(--ink) !important;
}

/* Continuous specialties belt. */
.home-page .editorial-ticker {
  display: block;
  width: auto;
  margin-inline: var(--page-gutter);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.editorial-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: specialties-belt 24s linear infinite;
}

.editorial-ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.home-page .editorial-ticker-group span {
  display: grid;
  flex: 0 0 clamp(220px, 25vw, 310px);
  place-items: center;
  min-height: 34px;
  padding: 9px 24px;
  white-space: nowrap;
  color: var(--paper);
  transform: scale(1);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .editorial-ticker-group span:hover {
  transform: scale(1.18);
}

.editorial-ticker:hover .editorial-ticker-track {
  animation-play-state: paused;
}

@keyframes specialties-belt {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-ticker-track {
    animation: none;
  }

  .editorial-ticker-group[aria-hidden="true"] {
    display: none;
  }
}

/* Home information grid: shared axes for labels, headings, rows, and metrics. */
@media (min-width: 1080px) {
  .home-page .home-proof,
  .home-page .selected-work-band,
  .home-page .openai-section {
    --home-grid-gap: clamp(20px, 2.2vw, 28px);
  }

  .home-page .home-proof .section-heading,
  .home-page .selected-work-band .section-heading,
  .home-page .openai-section .section-heading {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--home-grid-gap);
  }

  .home-page .home-proof .section-heading .eyebrow,
  .home-page .selected-work-band .section-heading .eyebrow,
  .home-page .openai-section .section-heading .eyebrow {
    grid-column: 1 / 4;
  }

  .home-page .home-proof .section-heading h2,
  .home-page .selected-work-band .section-heading h2,
  .home-page .openai-section .section-heading h2 {
    grid-column: 4 / -1;
  }

  .home-page .home-proof .section-lede,
  .home-page .selected-work-band .section-lede,
  .home-page .openai-section .section-lede {
    width: calc(75% - (var(--home-grid-gap) * 0.25));
    margin-left: calc(25% + (var(--home-grid-gap) * 0.25));
  }

  .home-page .metrics {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--home-grid-gap);
  }

  .home-page .metrics div {
    grid-column: span 3;
    padding-right: 0;
    padding-left: 0;
  }

  .home-page .metrics span {
    max-width: 220px;
  }

  .home-page .fit-list article {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--home-grid-gap);
  }

  .home-page .fit-list .fit-number {
    grid-column: 1 / 2;
  }

  .home-page .fit-list h3 {
    grid-column: 4 / 7;
  }

  .home-page .fit-list p {
    grid-column: 7 / -1;
  }
}

/* Align global chrome with the same outer frame and gutters as page content. */
.editorial-site .site-header,
.editorial-site .site-footer {
  width: min(calc(100% - 30px), var(--site-max));
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

@media (max-width: 720px) {
  .editorial-site .site-header,
  .editorial-site .site-footer {
    width: 100%;
  }
}

/* Swiss-grid pass: shared axes, controlled scale, and resilient breakpoints. */
.home-page .home-proof {
  padding-bottom: clamp(48px, 5vw, 64px);
}

.home-page .selected-work-band {
  padding-top: clamp(48px, 5vw, 64px);
}

.home-page .selected-work-band .section-heading {
  margin-bottom: 14px;
}

.home-page .selected-work-band .section-heading h2 {
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.12;
  text-transform: none;
}

.home-page .selected-work-band .section-lede {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.home-page .work-tile-media {
  background: #f5f5f5;
}

@media (min-width: 721px) and (max-width: 1079px) {
  .home-page .home-proof .section-heading,
  .home-page .selected-work-band .section-heading {
    grid-template-columns: minmax(120px, 24%) minmax(0, 1fr);
    gap: 24px;
  }

  .home-page .home-proof .section-lede,
  .home-page .selected-work-band .section-lede {
    width: auto;
    margin-left: calc(24% + 24px);
  }

  .home-page .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .home-page .metrics div {
    grid-column: auto;
  }

  .home-page .metrics span {
    max-width: 260px;
  }

}

/* Hero headline punctuation: a slow rolling shape resolves into a dot after the final word. */
.home-page .home-title .title-final-line {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-right: 0.16em;
}

.home-page .title-landing-dot {
  position: absolute;
  right: 0;
  bottom: 0.115em;
  width: 0.16em;
  height: 0.16em;
  background: var(--ink);
  border-radius: 0;
  transform: translateX(calc(36vw + 0.34em)) rotate(0deg);
  transform-origin: 50% 50%;
  animation: title-shape-roll 6200ms cubic-bezier(0.34, 0.02, 0.18, 1) 1700ms both;
}

@keyframes title-shape-roll {
  0% {
    border-radius: 0;
    transform: translateX(calc(36vw + 0.34em)) rotate(0deg) scale(1);
  }

  24% {
    border-radius: 10%;
  }

  48% {
    border-radius: 28%;
  }

  58% {
    border-radius: 42%;
    transform: translateX(0.11em) rotate(-1260deg) scale(1);
  }

  72% {
    border-radius: 50%;
    transform: translateX(0.045em) rotate(-1380deg) scale(0.96, 1.04);
  }

  84% {
    border-radius: 50%;
    transform: translateX(0.075em) rotate(-1460deg) scale(1.04, 0.96);
  }

  100% {
    border-radius: 50%;
    transform: translateX(0.055em) rotate(-1520deg) scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .title-landing-dot {
    transform: translateX(0.055em) scale(0.94);
    animation: none;
  }
}

/* Post-roll emphasis: key words ease into italic after the ball lands. */
.home-page .home-title em {
  display: inline-block;
  padding: 0.08em 0.065em 0.13em;
  margin: -0.08em -0.065em -0.13em;
  font-style: normal;
  font-synthesis: none;
  line-height: 1.12;
  transform-origin: left bottom;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  animation: title-word-smooth-italicize 1380ms cubic-bezier(0.22, 1, 0.36, 1) 6950ms both;
}

.home-page .home-title em.is-sphere-gradient {
  background-image: linear-gradient(90deg, #18283c 0%, #8f6668 22%, #b79a63 38%, #6f8d6d 54%, #4da5a9 72%, #355f8f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@keyframes title-word-smooth-italicize {
  0% {
    font-style: normal;
    transform: skewX(0deg);
  }

  54% {
    font-style: normal;
    transform: skewX(-0.28deg);
  }

  78% {
    font-style: italic;
    transform: skewX(-0.5deg);
  }

  100% {
    font-style: italic;
    transform: skewX(-0.18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-title em {
    font-style: italic;
    transform: none;
    animation: none;
  }
}

/* Hand-drawn cue from the hero into Selected Works. */
.home-page .home-hero-arrow {
  position: absolute;
  right: max(var(--page-gutter), 7vw);
  bottom: clamp(34px, 5vw, 76px);
  z-index: 3;
  width: clamp(104px, 13vw, 168px);
  height: auto;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) rotate(41deg);
}

.home-page .home-hero-arrow-mark {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}


.home-page .home-hero-arrow-note {
  position: absolute;
  right: calc(max(var(--page-gutter), 7vw) + 8px);
  bottom: calc(clamp(16px, 3vw, 34px) + 2px);
  z-index: 3;
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px) rotate(-5deg);
}


.home-page.title-gradient-ready .home-hero-arrow {
  animation: hero-arrow-enter 360ms cubic-bezier(0.16, 1, 0.3, 1) 860ms forwards;
}

.home-page.title-gradient-ready .home-hero-arrow-mark {
  animation: hero-arrow-draw 1200ms cubic-bezier(0.65, 0, 0.35, 1) 160ms forwards;
}

.home-page.title-gradient-ready #home-arrow-head .arrow-head-stroke {
  animation: hero-arrow-head-draw 420ms cubic-bezier(0.65, 0, 0.35, 1) 2800ms forwards;
}

.home-page.title-gradient-ready #home-arrow-head .arrow-head-gap-fill {
  animation: hero-arrow-gap-fill 120ms linear 1300ms forwards;
}

.home-page.title-gradient-ready .home-hero-arrow-note {
  animation: hero-arrow-note-enter 560ms cubic-bezier(0.16, 1, 0.3, 1) 2400ms forwards;
}


@keyframes hero-arrow-enter {
  to {
    opacity: 1;
    transform: translateY(0) rotate(41deg);
  }
}


@keyframes hero-arrow-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.home-page #home-arrow-head .arrow-head-stroke {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
}

.home-page #home-arrow-head .arrow-head-gap-fill {
  fill: var(--ink);
  stroke: none;
  opacity: 0;
}

@keyframes hero-arrow-head-draw {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes hero-arrow-gap-fill {
  to {
    opacity: 1;
  }
}



@keyframes hero-arrow-note-enter {
  to {
    opacity: 1;
    transform: translateY(0) rotate(-5deg);
  }
}





.home-page .selected-work-grid .work-tile {
  opacity: 0;
  transform: translateY(18px);
}

.home-page.title-gradient-ready .selected-work-grid .work-tile {
  animation: selected-work-enter 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-page.title-gradient-ready .selected-work-grid .work-tile:nth-child(1) {
  animation-delay: 2960ms;
}

.home-page.title-gradient-ready .selected-work-grid .work-tile:nth-child(2) {
  animation-delay: 3080ms;
}

.home-page.title-gradient-ready .selected-work-grid .work-tile:nth-child(3) {
  animation-delay: 3200ms;
}

.home-page.title-gradient-ready .selected-work-grid .work-tile:nth-child(4) {
  animation-delay: 3320ms;
}

@keyframes selected-work-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .home-page .home-hero-arrow {
    right: var(--page-gutter);
    bottom: 22px;
    width: 92px;
    stroke-width: 4.5;
  }

  .home-page .home-hero-arrow-note {
    right: var(--page-gutter);
    bottom: 8px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-hero-arrow,
  .home-page .home-hero-arrow-mark,
  .home-page .home-hero-arrow-note,
  .home-page #home-arrow-head .arrow-head-stroke,
  .home-page #home-arrow-head .arrow-head-gap-fill,
  .home-page .selected-work-grid .work-tile {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  .work-page .case-proof-points div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Lucid deck-inspired case page */
.lucid-deck-theme {
  --lucid-ink: #f5f3ec;
  --lucid-muted: #a8a49b;
  --lucid-soft: rgba(245, 243, 236, 0.16);
  --lucid-panel: #101010;
  --lucid-panel-2: #171717;
  --lucid-gold: #c8ad7f;
  color: var(--lucid-ink);
  background: #050505;
}

.lucid-deck-theme .site-header {
  background: #050505 !important;
  border-color: var(--lucid-soft) !important;
}

.lucid-deck-theme .site-header .mark {
  filter: invert(1);
}

.lucid-deck-theme .site-header nav a {
  color: var(--lucid-muted);
}

.lucid-deck-theme .site-header nav a:hover,
.lucid-deck-theme .site-header nav a.active {
  color: var(--lucid-ink);
}

.lucid-deck-theme .site-header nav a.active {
  border-bottom-color: var(--lucid-ink);
}

.lucid-deck-theme .site-footer {
  color: var(--lucid-ink) !important;
  background: #050505 !important;
  border-top-color: var(--lucid-soft) !important;
}

.lucid-deck-theme .site-footer a,
.lucid-deck-theme .site-footer span {
  color: var(--lucid-ink);
}

.lucid-deck-theme .site-footer .icon-link img {
  filter: invert(1) !important;
  opacity: 1;
}

.lucid-deck-theme .site-footer .icon-link:hover img,
.lucid-deck-theme .site-footer .icon-link:focus-visible img {
  filter: invert(1) !important;
  opacity: 0.72;
}

.lucid-deck-theme main {
  color: var(--lucid-ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 96px 100%,
    radial-gradient(circle at 72% 12%, rgba(200, 173, 127, 0.12), transparent 30%),
    #050505;
}

.lucid-deck-theme main > .section {
  padding-top: clamp(64px, 7vw, 94px);
}

.lucid-deck-theme .case-study {
  align-items: start;
}

.lucid-deck-theme .case-kicker,
.lucid-deck-theme .eyebrow,
.lucid-deck-theme .case-details dt,
.lucid-deck-theme .case-hiring-read dt,
.lucid-deck-theme .lucid-gallery figcaption span {
  color: var(--lucid-gold);
}

.lucid-deck-theme .case-copy h3,
.lucid-deck-theme .case-reference-block .section-heading h2 {
  color: var(--lucid-ink);
  letter-spacing: -0.02em;
}

.lucid-deck-theme .case-copy > p:not(.case-kicker),
.lucid-deck-theme .case-details dd,
.lucid-deck-theme .case-hiring-read dd,
.lucid-deck-theme .section-lede,
.lucid-deck-theme .lucid-gallery figcaption,
.lucid-deck-theme .hmi-handbook p {
  color: var(--lucid-muted);
}

.lucid-deck-theme .case-hiring-read,
.lucid-deck-theme .case-details,
.lucid-deck-theme .case-reference-block,
.lucid-deck-theme .lucid-gallery {
  border-color: var(--lucid-soft);
}

.lucid-deck-theme .case-hiring-read div,
.lucid-deck-theme .case-details div {
  border-color: var(--lucid-soft);
}

.lucid-deck-theme .case-details div {
  transition:
    background-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    padding-left 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lucid-deck-theme .case-details div:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.lucid-deck-theme .button.secondary {
  color: var(--lucid-ink);
  border-color: var(--lucid-soft);
  background: transparent;
}

.lucid-deck-theme .button.primary {
  color: #050505;
  background: var(--lucid-ink);
  border-color: var(--lucid-ink);
}

.lucid-deck-theme .case-visual {
  border-color: var(--lucid-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    var(--lucid-panel);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.lucid-deck-theme .hmi-frame,
.lucid-deck-theme .hmi-handbook,
.lucid-deck-theme .hmi-grid span {
  border-color: var(--lucid-soft);
  background: var(--lucid-panel-2);
}

.lucid-deck-theme .hmi-topbar,
.lucid-deck-theme .hmi-sidebar {
  border-color: var(--lucid-soft);
}

.lucid-deck-theme .hmi-topbar span,
.lucid-deck-theme .hmi-sidebar span,
.lucid-deck-theme .hmi-grid span,
.lucid-deck-theme .hmi-token-strip span {
  background: var(--lucid-ink);
}

.lucid-deck-theme .hmi-grid span {
  background:
    linear-gradient(var(--lucid-panel-2), var(--lucid-panel-2)) 14px 14px / 48% 7px no-repeat,
    linear-gradient(var(--lucid-panel-2), var(--lucid-panel-2)) 14px 30px / 64% 7px no-repeat,
    var(--lucid-ink);
}

.lucid-deck-theme .lucid-visual::after {
  content: "";
  position: absolute;
  inset: -35% -80%;
  background: linear-gradient(90deg, transparent 42%, rgba(255,255,255,0.16) 50%, transparent 58%);
  transform: translateX(-32%) rotate(16deg);
  animation: lucid-light-sweep 4600ms cubic-bezier(0.76, 0, 0.24, 1) 900ms both;
  pointer-events: none;
}

.lucid-deck-theme .lucid-gallery figure {
  overflow: hidden;
}

.lucid-deck-theme .lucid-gallery img {
  border-color: var(--lucid-soft);
  background: #0a0a0a;
  filter: grayscale(0.12) contrast(1.08) brightness(0.92);
  transform-origin: center;
  transition:
    filter 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lucid-deck-theme .lucid-gallery figure:hover img {
  border-color: rgba(200, 173, 127, 0.54);
  filter: grayscale(0) contrast(1.02) brightness(1);
  transform: scale(1.018);
}

.lucid-deck-theme .source-link,
.lucid-deck-theme .credential-link {
  color: var(--lucid-ink);
  border-bottom-color: var(--lucid-gold);
}

@media (prefers-reduced-motion: no-preference) {
  .lucid-deck-theme .case-copy > *,
  .lucid-deck-theme .case-visual,
  .lucid-deck-theme .lucid-gallery figure,
  .lucid-deck-theme .case-reference-block {
    opacity: 0;
    transform: translateY(18px);
    animation: lucid-deck-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .lucid-deck-theme .case-copy > :nth-child(1) { animation-delay: 80ms; }
  .lucid-deck-theme .case-copy > :nth-child(2) { animation-delay: 160ms; }
  .lucid-deck-theme .case-copy > :nth-child(3) { animation-delay: 250ms; }
  .lucid-deck-theme .case-copy > :nth-child(4) { animation-delay: 340ms; }
  .lucid-deck-theme .case-copy > :nth-child(5) { animation-delay: 430ms; }
  .lucid-deck-theme .case-copy > :nth-child(6) { animation-delay: 520ms; }
  .lucid-deck-theme .case-visual { animation-delay: 300ms; }
  .lucid-deck-theme .lucid-gallery figure:nth-child(1) { animation-delay: 660ms; }
  .lucid-deck-theme .lucid-gallery figure:nth-child(2) { animation-delay: 740ms; }
  .lucid-deck-theme .lucid-gallery figure:nth-child(3) { animation-delay: 820ms; }
  .lucid-deck-theme .lucid-gallery figure:nth-child(4) { animation-delay: 900ms; }
  .lucid-deck-theme .lucid-gallery figure:nth-child(5) { animation-delay: 980ms; }
  .lucid-deck-theme .lucid-gallery figure:nth-child(6) { animation-delay: 1060ms; }
  .lucid-deck-theme .case-reference-block { animation-delay: 1140ms; }
}

@keyframes lucid-deck-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lucid-light-sweep {
  0% {
    opacity: 0;
    transform: translateX(-38%) rotate(16deg);
  }

  18%, 58% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(38%) rotate(16deg);
  }
}


body.lucid-deck-theme.editorial-site .site-header,
body.lucid-deck-theme.editorial-site .site-footer {
  background: #050505 !important;
  color: #f5f3ec !important;
}

body.lucid-deck-theme.editorial-site .site-header {
  border-bottom-color: rgba(245, 243, 236, 0.16) !important;
}

body.lucid-deck-theme.editorial-site .site-footer {
  border-top-color: rgba(245, 243, 236, 0.16) !important;
}

body.lucid-deck-theme.editorial-site .site-header nav a,
body.lucid-deck-theme.editorial-site .site-footer,
body.lucid-deck-theme.editorial-site .site-footer a,
body.lucid-deck-theme.editorial-site .site-footer span {
  color: #f5f3ec !important;
}

body.lucid-deck-theme.editorial-site .site-footer .icon-link img {
  filter: invert(1) !important;
}

body.lucid-deck-theme.editorial-site,
body.lucid-deck-theme.editorial-site main,
body.lucid-deck-theme.editorial-site main > .section {
  background-color: #050505 !important;
}

body.lucid-deck-theme.editorial-site .case-study,
body.lucid-deck-theme.editorial-site .case-copy,
body.lucid-deck-theme.editorial-site .case-hiring-read,
body.lucid-deck-theme.editorial-site .case-details,
body.lucid-deck-theme.editorial-site .case-reference-block,
body.lucid-deck-theme.editorial-site .lucid-gallery,
body.lucid-deck-theme.editorial-site .lucid-gallery figure {
  background: transparent !important;
}

body.lucid-deck-theme.editorial-site .case-copy,
body.lucid-deck-theme.editorial-site .case-copy h3,
body.lucid-deck-theme.editorial-site .case-details dt,
body.lucid-deck-theme.editorial-site .case-hiring-read dt,
body.lucid-deck-theme.editorial-site .case-reference-block .section-heading h2,
body.lucid-deck-theme.editorial-site .lucid-gallery figcaption span {
  color: #f5f3ec !important;
}

body.lucid-deck-theme.editorial-site .case-copy > p:not(.case-kicker),
body.lucid-deck-theme.editorial-site .case-details dd,
body.lucid-deck-theme.editorial-site .case-hiring-read dd,
body.lucid-deck-theme.editorial-site .case-reference-block .section-lede,
body.lucid-deck-theme.editorial-site .lucid-gallery figcaption {
  color: rgba(245, 243, 236, 0.78) !important;
}

body.lucid-deck-theme.editorial-site .case-hiring-read,
body.lucid-deck-theme.editorial-site .case-details,
body.lucid-deck-theme.editorial-site .case-reference-block,
body.lucid-deck-theme.editorial-site .lucid-gallery,
body.lucid-deck-theme.editorial-site .case-hiring-read div,
body.lucid-deck-theme.editorial-site .case-details div {
  border-color: rgba(245, 243, 236, 0.16) !important;
}
/* 20260613 lucid no side visual */

body.lucid-deck-theme.editorial-site .case-study {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.lucid-deck-theme.editorial-site .case-copy {
  max-width: 960px;
}
/* 20260613 lucid details static */

body.lucid-deck-theme.editorial-site .case-details div,
body.lucid-deck-theme.editorial-site .case-details div:hover {
  padding-left: 0 !important;
  background: transparent !important;
  transition: none !important;
}
/* 20260613 lucid intro reels */

body.lucid-deck-theme.editorial-site .lucid-intro-reels {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

body.lucid-deck-theme.editorial-site .lucid-intro-reels img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(245, 243, 236, 0.16);
  background: #050505;
}
/* 20260613 lucid intro full width */

body.lucid-deck-theme.editorial-site main > .section > .lucid-intro-reels {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 64px;
}
/* 20260613 maiba youtube cta */

.home-page .work-tile-main-link,
.home-page .work-tile-title-link {
  display: block;
}

.home-page .work-tile-title-link:hover,
.home-page .work-tile-title-link:focus-visible {
  text-decoration: none;
}

.home-page .work-tile-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: 16px;
}

.home-page .work-tile-cta[href] {
  text-decoration: none;
}

.home-page .work-tile-cta-youtube svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.home-page .work-tile:hover .work-tile-cta-youtube,
.home-page .work-tile:focus-within .work-tile-cta-youtube {
  transform: translateY(0) scale(1.04);
}

/* 20260613 project CTA right alignment */
.home-page .work-tile-heading-row {
  width: 100%;
}

.home-page .work-tile-title-link,
.home-page .work-tile-heading-row > .work-tile-title {
  flex: 1 1 auto;
  min-width: 0;
}

.home-page .work-tile-actions,
.home-page .work-tile-heading-row > .work-tile-cta {
  margin-left: auto;
}

.home-page .work-tile-actions {
  gap: 20px;
}

/* 20260613 project CTA tooltips */
.home-page .work-tile-cta[data-tooltip] {
  position: relative;
}

.home-page .work-tile-cta[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 4;
  width: max-content;
  max-width: 220px;
  padding: 7px 9px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 160ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .work-tile-cta[data-tooltip]:hover::after,
.home-page .work-tile-cta[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

/* 20260613 project CTA hard right */
.home-page .work-tile-heading-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  width: 100%;
  column-gap: 18px;
}

.home-page .work-tile-actions,
.home-page .work-tile-heading-row > .work-tile-cta {
  justify-self: end;
  margin-left: 0 !important;
}

/* 20260613 project CTA flush right */
.home-page .work-tile-heading-row {
  padding-right: 0 !important;
}

.home-page .work-tile-actions {
  justify-content: flex-end;
  padding-right: 0 !important;
}

.home-page .work-tile-actions .work-tile-cta:last-child,
.home-page .work-tile-heading-row > .work-tile-cta:last-child {
  margin-right: 0 !important;
}

/* 20260613 project CTA align arrow to media edge */
.home-page .work-tile-main-link,
.home-page .work-tile-media,
.home-page .work-tile-heading-row,
.home-page .work-tile-meta {
  width: 100%;
}

.home-page .work-tile-heading-row {
  box-sizing: border-box;
  padding-right: 0 !important;
}

.home-page .work-tile-actions {
  justify-self: end !important;
  justify-content: flex-end;
  min-width: max-content;
}

.home-page .work-tile-cta-youtube {
  order: 1;
}

.home-page .work-tile-cta-external {
  order: 2;
}

.home-page .work-tile-cta-arrow {
  order: 2;
}

.home-page .work-tile-actions .work-tile-cta:last-child,
.home-page .work-tile-heading-row > .work-tile-cta:last-child,
.home-page .work-tile-cta-arrow,
.home-page .work-tile-cta-external {
  justify-content: flex-end;
  text-align: right;
}

/* 20260613 internal project arrow flush right */
.home-page .selected-work-grid .work-tile:nth-child(3) .work-tile-actions,
.home-page .selected-work-grid .work-tile:nth-child(4) .work-tile-actions {
  justify-self: end !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.home-page .selected-work-grid .work-tile:nth-child(3) .work-tile-cta-arrow,
.home-page .selected-work-grid .work-tile:nth-child(4) .work-tile-cta-arrow {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  margin-right: 0 !important;
  padding-right: 0 !important;
  justify-content: flex-end;
  text-align: right;
}

/* 20260613 lucid case title matches index project title */
body.lucid-deck-theme.editorial-site .case-copy > h3 {
  font-family: var(--font-label);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* 20260613 project CTA containment fix */
.home-page .selected-work-grid .work-tile {
  display: block;
}

.home-page .work-tile-heading-row {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  width: 100%;
  padding: 18px 0 0 !important;
  column-gap: 20px;
}

.home-page .work-tile-actions {
  position: static;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  width: auto;
  min-width: max-content;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: end;
}

.home-page .work-tile-cta {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

/* 20260613 project CTA vertical centering */
.home-page .work-tile-actions {
  align-items: center !important;
}

.home-page .work-tile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  line-height: 1;
}

.home-page .work-tile-cta-arrow {
  transform: translateY(0);
}

.home-page .work-tile-cta-youtube {
  transform: translateY(0);
}

.home-page .work-tile:hover .work-tile-cta-youtube,
.home-page .work-tile:focus-within .work-tile-cta-youtube {
  transform: scale(1.04);
}

/* 20260613 youtube CTA optical alignment */
.home-page .work-tile-cta-youtube {
  transform: translateY(2px);
}

.home-page .work-tile:hover .work-tile-cta-youtube,
.home-page .work-tile:focus-within .work-tile-cta-youtube {
  transform: translateY(2px) scale(1.04);
}

/* 20260613 paper CTA */
.home-page .work-tile-cta-paper {
  order: 1;
  transform: translateY(1px);
}

.home-page .work-tile-cta-paper svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.home-page .work-tile:hover .work-tile-cta-paper,
.home-page .work-tile:focus-within .work-tile-cta-paper {
  transform: translateY(1px) scale(1.04);
}

/* 20260613 thinner white logo for dark Lucid page */
body.lucid-deck-theme.editorial-site .site-header .mark {
  content: url("assets/zhen-li-logo-white-thin.svg");
  filter: none !important;
}

/* 20260613 project title meta gap */
.home-page .work-tile-meta {
  margin-top: 12px;
}

/* 20260614 patent CTA */
.home-page .work-tile-cta-patent {
  order: 1;
  transform: translateY(1px);
}

.home-page .work-tile-cta-patent svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.home-page .work-tile:hover .work-tile-cta-patent,
.home-page .work-tile:focus-within .work-tile-cta-patent {
  transform: translateY(1px) scale(1.04);
}

/* 20260614 Lucid design system loop */
body.lucid-deck-theme.editorial-site .lucid-system-loop {
  width: 100%;
  margin: 28px 0 64px;
  background: #000;
  overflow: hidden;
}

body.lucid-deck-theme.editorial-site .lucid-system-loop img,
body.lucid-deck-theme.editorial-site .lucid-system-loop video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 900px);
  object-fit: contain;
  object-position: center;
  background: #000;
}

/* 20260614 Lucid highlight */
body.lucid-deck-theme.editorial-site .lucid-highlight {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--lucid-soft);
}

body.lucid-deck-theme.editorial-site .lucid-highlight .case-kicker {
  margin-bottom: 18px;
}

body.lucid-deck-theme.editorial-site .lucid-highlight h4 {
  max-width: 860px;
  margin: 0 0 20px;
  color: var(--lucid-ink);
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

body.lucid-deck-theme.editorial-site .lucid-highlight p:not(.case-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--lucid-muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

body.lucid-deck-theme.editorial-site .lucid-highlight-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 24px;
}

body.lucid-deck-theme.editorial-site .lucid-highlight-links a {
  color: var(--lucid-ink);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--lucid-gold);
}

body.lucid-deck-theme.editorial-site .lucid-highlight-links a:hover,
body.lucid-deck-theme.editorial-site .lucid-highlight-links a:focus-visible {
  color: var(--lucid-gold);
}

/* 20260614 GIF pause controls */
body.lucid-deck-theme.editorial-site .gif-pausable {
  position: relative;
}

body.lucid-deck-theme.editorial-site .gif-freeze-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

body.lucid-deck-theme.editorial-site .gif-freeze-frame[hidden] {
  display: none;
}

body.lucid-deck-theme.editorial-site .gif-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  min-width: 72px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(245, 243, 236, 0.42);
  background: rgba(0, 0, 0, 0.72);
  color: var(--lucid-ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body.lucid-deck-theme.editorial-site .gif-control:hover,
body.lucid-deck-theme.editorial-site .gif-control:focus-visible {
  border-color: var(--lucid-ink);
  background: rgba(245, 243, 236, 0.12);
  transform: translateY(-1px);
}

/* 20260614 Lucid impact text without headline */
body.lucid-deck-theme.editorial-site .lucid-highlight > p#lucid-highlight-title {
  max-width: 820px;
  margin: 0;
  color: var(--lucid-muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

/* 20260614 Lucid right-column case details */
body.lucid-deck-theme.editorial-site .case-study {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
}

body.lucid-deck-theme.editorial-site .case-aside {
  min-width: 0;
}

body.lucid-deck-theme.editorial-site .case-aside .case-details {
  margin-top: 0;
}

body.lucid-deck-theme.editorial-site .case-aside .lucid-highlight {
  margin-top: 34px;
}

@media (max-width: 760px) {
  body.lucid-deck-theme.editorial-site .case-study {
    grid-template-columns: 1fr;
  }
}

/* 20260614 Lucid merged impact */
body.lucid-deck-theme.editorial-site .case-impact-expanded dd p {
  margin: 0 0 14px;
}

body.lucid-deck-theme.editorial-site .case-impact-expanded dd p:last-of-type {
  margin-bottom: 0;
}

body.lucid-deck-theme.editorial-site .case-impact-expanded .lucid-highlight-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 22px;
}

/* 20260614 Lucid impact readability */
body.lucid-deck-theme.editorial-site .case-impact-expanded dd,
body.lucid-deck-theme.editorial-site .case-impact-expanded dd p {
  color: var(--lucid-ink) !important;
}

body.lucid-deck-theme.editorial-site .case-impact-expanded .lucid-highlight-links a {
  color: var(--lucid-ink) !important;
  border-bottom-color: var(--lucid-gold);
}

/* 20260614 Lucid impact body matches role color */
body.lucid-deck-theme.editorial-site .case-impact-expanded dd,
body.lucid-deck-theme.editorial-site .case-impact-expanded dd p {
  color: var(--lucid-muted) !important;
}

body.lucid-deck-theme.editorial-site .case-impact-expanded .lucid-highlight-links a {
  color: var(--lucid-ink) !important;
}

/* 20260614 Lucid expandable GIF viewer */
html.media-viewer-open,
html.media-viewer-open body {
  overflow: hidden;
}

body.lucid-deck-theme.editorial-site .lucid-expandable-media {
  position: relative;
}

body.lucid-deck-theme.editorial-site .media-expand-control,
body.lucid-deck-theme.editorial-site .media-close-control {
  position: absolute;
  right: 18px;
  z-index: 4;
  min-width: 86px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(245, 243, 236, 0.42);
  background: rgba(0, 0, 0, 0.72);
  color: var(--lucid-ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body.lucid-deck-theme.editorial-site .media-expand-control {
  top: 18px;
}

body.lucid-deck-theme.editorial-site .media-close-control {
  top: 24px;
  display: none;
}

body.lucid-deck-theme.editorial-site .media-expand-control:hover,
body.lucid-deck-theme.editorial-site .media-expand-control:focus-visible,
body.lucid-deck-theme.editorial-site .media-close-control:hover,
body.lucid-deck-theme.editorial-site .media-close-control:focus-visible {
  border-color: var(--lucid-ink);
  background: rgba(245, 243, 236, 0.12);
  transform: translateY(-1px);
}

body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(18px, 3vw, 40px);
  background: rgba(0, 0, 0, 0.96);
}

body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded img,
body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded video,
body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded .gif-freeze-frame {
  width: auto;
  max-width: calc(100vw - clamp(36px, 6vw, 80px));
  max-height: calc(100vh - clamp(36px, 6vw, 80px));
  object-fit: contain;
}

body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded .media-expand-control {
  display: none;
}

body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded .media-close-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.lucid-deck-theme.editorial-site .lucid-expandable-media.is-expanded .gif-control {
  right: 24px;
  bottom: 24px;
}

/* 20260614 Lucid impact exact role color */
body.lucid-deck-theme.editorial-site .case-impact-expanded dd,
body.lucid-deck-theme.editorial-site .case-impact-expanded dd p,
body.lucid-deck-theme.editorial-site .case-impact-expanded .lucid-highlight-links a {
  color: rgba(245, 243, 236, 0.78) !important;
}

/* 20260615 Lucid case content alignment */
body.lucid-deck-theme.editorial-site .case-study {
  grid-template-columns: 1fr !important;
}

body.lucid-deck-theme.editorial-site .case-copy,
body.lucid-deck-theme.editorial-site .case-aside .case-details div {
  grid-template-columns: var(--project-label-col) minmax(0, 1fr) !important;
  column-gap: var(--grid-gap) !important;
}

body.lucid-deck-theme.editorial-site .case-copy {
  max-width: none;
}

body.lucid-deck-theme.editorial-site .case-aside {
  grid-column: 1 / -1;
  width: 100%;
}

body.lucid-deck-theme.editorial-site .case-aside .case-details {
  margin-top: clamp(54px, 7vw, 92px);
}

body.lucid-deck-theme.editorial-site .case-aside .case-details dd {
  max-width: 980px;
}

@media (max-width: 760px) {
  body.lucid-deck-theme.editorial-site .case-copy,
  body.lucid-deck-theme.editorial-site .case-aside .case-details div {
    grid-template-columns: 1fr !important;
  }

  body.lucid-deck-theme.editorial-site .case-copy h3,
  body.lucid-deck-theme.editorial-site .case-aside .case-details,
  body.lucid-deck-theme.editorial-site .case-aside .case-details dd {
    grid-column: 1;
  }
}

/* 20260615 Lucid title-to-body spacing tighten */
body.lucid-deck-theme.editorial-site .case-study {
  row-gap: 0 !important;
}

body.lucid-deck-theme.editorial-site .case-aside .case-details {
  margin-top: clamp(32px, 4vw, 56px) !important;
}

/* 20260615 Lucid OpenAI interview pass */
body.lucid-deck-theme.editorial-site .case-subtitle {
  grid-column: 2;
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(245, 243, 236, 0.78) !important;
  font-size: 15px;
  line-height: 1.7;
}

body.lucid-deck-theme.editorial-site .case-aside .case-details {
  margin-top: clamp(38px, 4.8vw, 64px) !important;
}

body.lucid-deck-theme.editorial-site .lucid-media-kicker {
  margin: clamp(44px, 5.5vw, 72px) 0 16px;
  color: var(--lucid-gold) !important;
}

body.lucid-deck-theme.editorial-site .lucid-system-loop {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body.lucid-deck-theme.editorial-site .case-subtitle {
    grid-column: 1;
    margin-top: 12px;
  }
}

/* 20260615 Lucid product surface context */
body.lucid-deck-theme.editorial-site .lucid-surface-kicker {
  margin-top: clamp(52px, 6vw, 84px);
}

body.lucid-deck-theme.editorial-site .lucid-surface-loop {
  margin-bottom: 0;
}

body.lucid-deck-theme.editorial-site .lucid-surface-loop img {
  display: block;
  width: 100%;
  height: auto;
}

/* 20260615 Lucid case evidence pass */
body.lucid-deck-theme.editorial-site .case-impact-proof {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  margin: 0 0 18px;
}

body.lucid-deck-theme.editorial-site .case-impact-proof span {
  color: var(--lucid-ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

body.lucid-deck-theme.editorial-site .case-impact-proof p {
  margin: 0 !important;
}

body.lucid-deck-theme.editorial-site .lucid-surface-loop {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}

body.lucid-deck-theme.editorial-site .lucid-surface-loop img {
  opacity: 0.92;
}

@media (max-width: 760px) {
  body.lucid-deck-theme.editorial-site .case-impact-proof {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.lucid-deck-theme.editorial-site .lucid-surface-loop {
    max-width: 100%;
  }
}

/* 20260615 Lucid impact recognition label */
body.lucid-deck-theme.editorial-site .case-impact-expanded .case-impact-label {
  margin: 24px 0 6px !important;
  color: var(--lucid-ink) !important;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* 20260615 Lucid Derek Jenkins highlight */
body.lucid-deck-theme.editorial-site .case-impact-expanded a[href*="derek-jenkins"] {
  color: var(--lucid-gold) !important;
  border-bottom-color: rgba(211, 181, 126, 0.72) !important;
}

body.lucid-deck-theme.editorial-site .case-impact-expanded a[href*="derek-jenkins"]:hover,
body.lucid-deck-theme.editorial-site .case-impact-expanded a[href*="derek-jenkins"]:focus-visible {
  color: var(--lucid-ink) !important;
  border-bottom-color: var(--lucid-ink) !important;
}

/* 20260615 Lucid title reference links */
body.lucid-deck-theme.editorial-site .lucid-title-links {
  grid-column: 2;
  margin-top: 18px;
}

@media (max-width: 760px) {
  body.lucid-deck-theme.editorial-site .lucid-title-links {
    grid-column: 1;
  }
}

/* 20260615 Lucid recognition row color */
body.lucid-deck-theme.editorial-site .case-recognition-row dd,
body.lucid-deck-theme.editorial-site .case-recognition-row dd p {
  color: rgba(245, 243, 236, 0.78) !important;
}

body.lucid-deck-theme.editorial-site .case-recognition-row a[href*="derek-jenkins"] {
  color: var(--lucid-gold) !important;
  border-bottom-color: rgba(211, 181, 126, 0.72) !important;
}

body.lucid-deck-theme.editorial-site .case-recognition-row a[href*="derek-jenkins"]:hover,
body.lucid-deck-theme.editorial-site .case-recognition-row a[href*="derek-jenkins"]:focus-visible {
  color: var(--lucid-ink) !important;
  border-bottom-color: var(--lucid-ink) !important;
}

/* 20260615 Lucid footer gap tighten */
body.lucid-deck-theme.editorial-site.case-page main > .section {
  padding-bottom: clamp(28px, 3.5vw, 44px) !important;
}

body.lucid-deck-theme.editorial-site .lucid-system-loop {
  margin-bottom: 0 !important;
}

/* 20260615 home credibility line */
.home-page .home-hero .hero-proof-line {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.home-page .home-hero .lede + .hero-proof-line + .actions {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .home-page .home-hero .hero-proof-line {
    font-size: 10px;
    line-height: 1.8;
  }
}

/* 20260615 Lucid black overscroll background */
html:has(body.lucid-deck-theme),
html:has(body.lucid-deck-theme) body {
  background: #050505 !important;
}

body.lucid-deck-theme {
  overscroll-behavior-y: none;
}

/* 20260615 home integrated proof highlights */
.home-page .home-hero .lede-highlight {
  color: var(--ink);
  font-weight: 800;
  background: none;
}

/* 20260615 DLS white case page */
body.dls-case-theme.editorial-site .case-study {
  grid-template-columns: 1fr !important;
  row-gap: 0 !important;
}

body.dls-case-theme.editorial-site .case-copy,
body.dls-case-theme.editorial-site .case-aside .case-details div {
  grid-template-columns: var(--project-label-col) minmax(0, 1fr) !important;
  column-gap: var(--grid-gap) !important;
}

body.dls-case-theme.editorial-site .case-copy {
  max-width: none;
}

body.dls-case-theme.editorial-site .case-subtitle {
  grid-column: 2;
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

body.dls-case-theme.editorial-site .case-aside {
  grid-column: 1 / -1;
  width: 100%;
}

body.dls-case-theme.editorial-site .case-aside .case-details {
  margin-top: clamp(38px, 4.8vw, 64px) !important;
}

body.dls-case-theme.editorial-site .case-aside .case-details dd {
  max-width: 980px;
}

body.dls-case-theme.editorial-site .dls-reference-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 18px;
}

body.dls-case-theme.editorial-site .dls-reference-links a {
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}

body.dls-case-theme.editorial-site .dls-reference-links a:hover,
body.dls-case-theme.editorial-site .dls-reference-links a:focus-visible {
  opacity: 0.58;
}

body.dls-case-theme.editorial-site .dls-system-loop {
  width: 100%;
  margin: clamp(44px, 5.5vw, 72px) 0 clamp(28px, 3.5vw, 44px);
  background: #fff;
  overflow: hidden;
}

body.dls-case-theme.editorial-site .dls-system-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 900px);
  object-fit: contain;
  object-position: center;
  background: #fff;
}

@media (max-width: 760px) {
  body.dls-case-theme.editorial-site .case-copy,
  body.dls-case-theme.editorial-site .case-aside .case-details div {
    grid-template-columns: 1fr !important;
  }

  body.dls-case-theme.editorial-site .case-subtitle,
  body.dls-case-theme.editorial-site .dls-reference-links,
  body.dls-case-theme.editorial-site .case-copy h3,
  body.dls-case-theme.editorial-site .case-aside .case-details,
  body.dls-case-theme.editorial-site .case-aside .case-details dd {
    grid-column: 1;
  }
}


/* 20260615 DLS padding review */
body.dls-case-theme.editorial-site.case-page main > .section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

body.dls-case-theme.editorial-site .case-copy h3 {
  margin-bottom: 0;
}

body.dls-case-theme.editorial-site .case-subtitle {
  margin-top: 10px;
}

body.dls-case-theme.editorial-site .dls-reference-links {
  margin-top: 16px;
}

body.dls-case-theme.editorial-site .case-aside .case-details {
  margin-top: clamp(30px, 3.6vw, 46px) !important;
}

body.dls-case-theme.editorial-site .case-aside .case-details div {
  padding-top: 16px;
  padding-bottom: 16px;
}

body.dls-case-theme.editorial-site .dls-system-loop {
  margin-top: clamp(30px, 4vw, 48px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* 20260615 DLS OpenAI copy pass */
body.dls-case-theme.editorial-site .dls-video-caption {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}


/* 20260615 Lucid in-video annotation */
body.lucid-deck-theme.editorial-site .lucid-video-annotation {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--lucid-ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 760px) {
  body.lucid-deck-theme.editorial-site .lucid-video-annotation {
    top: 12px;
    left: 12px;
    min-height: 24px;
    font-size: 10px;
  }
}

/* 20260616 Lucid video chapters */
body.lucid-deck-theme.editorial-site .lucid-video-chapters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin: clamp(22px, 3vw, 36px) 0 0;
}

body.lucid-deck-theme.editorial-site .lucid-video-chapters div {
  min-width: 0;
}

body.lucid-deck-theme.editorial-site .lucid-video-chapters span {
  display: block;
  margin-bottom: 12px;
  color: var(--lucid-accent);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

body.lucid-deck-theme.editorial-site .lucid-video-chapters h4 {
  margin: 0 0 8px;
  color: var(--lucid-ink);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.lucid-deck-theme.editorial-site .lucid-video-chapters p {
  margin: 0;
  color: var(--lucid-muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  body.lucid-deck-theme.editorial-site .lucid-video-chapters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.lucid-deck-theme.editorial-site .lucid-video-chapters {
    grid-template-columns: 1fr;
  }
}

/* 20260616 case bottom return link */
.editorial-site.case-page .case-back-link {
  width: min(var(--content-max), calc(100% - 2 * var(--page-gutter)));
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: right;
}

.editorial-site.case-page .case-back-link a {
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-site.case-page .case-back-link a::after {
  content: " →";
}

.editorial-site.case-page .case-back-link a:hover,
.editorial-site.case-page .case-back-link a:focus-visible {
  opacity: 0.55;
}

body.lucid-deck-theme.editorial-site.case-page .case-back-link a {
  color: var(--lucid-ink);
}

/* 20260616 DLS video chapters */
body.dls-case-theme.editorial-site .dls-video-chapters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin: clamp(22px, 3vw, 36px) 0 0;
}

body.dls-case-theme.editorial-site .dls-video-chapters div {
  min-width: 0;
}

body.dls-case-theme.editorial-site .dls-video-chapters span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

body.dls-case-theme.editorial-site .dls-video-chapters h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.dls-case-theme.editorial-site .dls-video-chapters p {
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  body.dls-case-theme.editorial-site .dls-video-chapters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.dls-case-theme.editorial-site .dls-video-chapters {
    grid-template-columns: 1fr;
  }
}


/* 20260616 work index intro */
.work-page .work-index-intro {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  column-gap: var(--grid-gap);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.work-page .work-index-intro .eyebrow {
  margin: 0;
}

.work-page .work-index-intro h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.work-page .work-index-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .work-page .work-index-intro {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .work-page .work-index-intro h1 {
    line-height: 1;
  }
}

/* 20260616 align work proof labels */
.work-page .case-proof-points,
.work-page .case-proof-points div,
.work-page .case-proof-points dt,
.work-page .case-proof-points dd {
  text-align: left;
}

/* 20260616 align work proof paragraphs with section text */
.work-page .case-proof-points {
  padding-right: 0;
  padding-left: 0;
}

/* 20260616 work proof flush left */
.work-page .case-proof-points div {
  grid-template-columns: 1fr;
  gap: 8px;
}


/* 20260616 work layout pass */
.work-page .work-editorial .case-study {
  min-height: auto;
  padding-top: clamp(66px, 7vw, 92px);
  padding-bottom: clamp(66px, 7vw, 92px);
}

.work-page .work-editorial .case-study:first-child {
  padding-top: var(--first-content-offset);
}

.work-page .case-copy h1 {
  max-width: 760px;
  margin-bottom: 16px;
  line-height: 1.02;
}

.work-page .case-tags {
  gap: 8px 10px;
  margin-top: 0;
  margin-bottom: 30px;
}

.work-page .case-proof-points {
  gap: 22px;
  margin-top: 0;
  margin-bottom: 34px;
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
  background: transparent;
}

.work-page .case-proof-points div {
  gap: 8px;
}

.work-page .case-proof-points dt {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.work-page .case-proof-points dd {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.work-page .public-context {
  max-width: 640px;
  margin-top: 0;
  padding-top: 20px;
  opacity: 0.78;
}

.work-page .actions {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .work-page .work-editorial .case-study {
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .work-page .work-editorial .case-study {
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .work-page .work-editorial .case-study:first-child {
    padding-top: var(--first-content-offset);
  }

  .work-page .case-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .work-page .case-tags {
    margin-bottom: 26px;
  }

  .work-page .case-proof-points {
    gap: 20px;
    margin-bottom: 30px;
  }

  .work-page .case-proof-points dd {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 20260616 work media left */
.work-page .work-editorial .case-study {
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
}

.work-page .work-editorial .case-study > div {
  order: 2;
}

.work-page .work-editorial .case-study > figure {
  order: 1;
}

@media (max-width: 900px) {
  .work-page .work-editorial .case-study {
    grid-template-columns: 1fr;
  }

  .work-page .work-editorial .case-study > div,
  .work-page .work-editorial .case-study > figure {
    order: initial;
  }
}

/* 20260616 compact work sections */
.work-page .work-editorial .case-study {
  min-height: auto;
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
  gap: clamp(28px, 4vw, 52px);
}

.work-page .work-editorial .case-study:first-child {
  padding-top: clamp(64px, 7vw, 86px);
}

.work-page .case-copy h1 {
  max-width: 680px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.03;
}

.work-page .case-tags {
  margin-bottom: 22px;
}

.work-page .case-proof-points {
  gap: 16px;
  margin-bottom: 24px;
}

.work-page .case-proof-points dd {
  font-size: 14px;
  line-height: 1.55;
}

.work-page .public-context p {
  font-size: 12.5px;
  line-height: 1.55;
}

.work-page .actions {
  margin-top: 22px;
}

.work-page .work-editorial .case-visual.media-visual {
  aspect-ratio: 16 / 9;
}

@media (max-width: 720px) {
  .work-page .work-editorial .case-study,
  .work-page .work-editorial .case-study:first-child {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .work-page .case-copy h1 {
    font-size: clamp(30px, 9.5vw, 42px);
  }
}

/* 20260616 smaller work project titles */
.work-page .case-copy h1 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

@media (max-width: 720px) {
  .work-page .case-copy h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
}

/* 20260616 work titles match case study title */
.work-page .case-copy h1 {
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .work-page .case-copy h1 {
    font-size: 24px;
    line-height: 1.18;
  }
}

/* 20260616 quieter work media */
.work-page .work-editorial .case-study {
  grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
}

.work-page .work-editorial .case-visual.media-visual {
  align-self: start;
  max-width: 520px;
  background: #f7f7f7;
}

.work-page .work-editorial .case-visual.media-visual img,
.work-page .work-editorial .case-visual.media-visual video {
  filter: grayscale(1) contrast(0.92) brightness(0.96);
  opacity: 0.9;
}

@media (hover: hover) {
  .work-page .work-editorial .case-visual.media-visual:hover img,
  .work-page .work-editorial .case-visual.media-visual:hover video,
  .work-page .work-editorial .case-visual.media-visual:focus-within img,
  .work-page .work-editorial .case-visual.media-visual:focus-within video {
    filter: grayscale(0) contrast(0.98) brightness(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .work-page .work-editorial .case-study {
    grid-template-columns: 1fr;
  }
}

/* 20260616 homepage Lucid cover full-fit */
.home-page .selected-work-grid .work-tile:nth-child(3) .work-tile-media {
  background: #000;
}

.home-page .selected-work-grid .work-tile:nth-child(3) .project-cover-media {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
}

/* 20260616 homepage Lucid hover color restore */
.home-page .selected-work-grid .work-tile:nth-child(3) .project-cover-media {
  filter: grayscale(1) contrast(1.04);
  transition: filter 260ms ease, transform 260ms ease;
}

@media (hover: hover) {
  .home-page .selected-work-grid .work-tile:nth-child(3):hover .project-cover-media,
  .home-page .selected-work-grid .work-tile:nth-child(3):focus-visible .project-cover-media {
    filter: grayscale(0) contrast(1);
  }
}

/* 20260616 stronger Lucid letterbox crop */
.home-page .selected-work-grid .work-tile:nth-child(3) .work-tile-media {
  overflow: hidden;
}

.home-page .selected-work-grid .work-tile:nth-child(3) .project-cover-media {
  width: 100%;
  height: 116%;
  object-fit: cover !important;
  object-position: center center;
  transform: translateY(-8%) scale(1.08);
  clip-path: inset(7% 0 7% 0);
}

/* 20260616 stronger Lucid letterbox crop */
.home-page .selected-work-grid .work-tile:nth-child(3) .work-tile-media {
  overflow: hidden;
}

.home-page .selected-work-grid .work-tile:nth-child(3) .project-cover-media {
  width: 100%;
  height: 116%;
  object-fit: cover !important;
  object-position: center center;
  transform: translateY(-8%) scale(1.08);
  clip-path: inset(7% 0 7% 0);
}

/* 20260616 remove Lucid bottom black banner */
.home-page .selected-work-grid .work-tile:nth-child(3) .work-tile-media {
  overflow: hidden !important;
  background: #000;
}

.home-page .selected-work-grid .work-tile:nth-child(3) .project-cover-media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform-origin: center center !important;
  transform: scale(1.46) translateY(-4%) !important;
  clip-path: none !important;
}

/* 20260616 work page h1 label style final */
.work-page .case-copy h1 {
  font-family: var(--font-label) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  line-height: 1.4 !important;
  text-transform: uppercase !important;
}
