:root {
  --bg: #f7f5ee;
  --dynamic-bg: #f7f5ee;
  --dynamic-wash: rgba(30, 93, 232, 0.08);
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.42);
  --line: rgba(17, 17, 17, 0.12);
  --red: #e94335;
  --blue: #1e5de8;
  --yellow: #f5c841;
  --soft: #e8e4d9;
  --page-max: 1440px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--mouse-x, 72%) var(--mouse-y, 34%), var(--dynamic-wash), transparent 28rem),
    var(--dynamic-bg);
  color: var(--ink);
  transition: background-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.drawer-open {
  overflow: hidden;
}

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

.skeleton-section span,
.skeleton-section strong,
.skeleton-section p,
.skeleton-section i,
.site-nav span,
.meta-column span,
.micro-line,
.home-dot {
  display: block;
}

.skeleton-section span,
.skeleton-section strong,
.skeleton-section p,
.skeleton-section i,
.site-nav span,
.meta-column span,
.micro-line,
.home-dot {
  overflow: hidden;
  border-radius: 999px;
  background: currentColor;
  color: inherit;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: var(--blue);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(24px, 2.1vw, 40px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--dynamic-bg) 78%, transparent);
  backdrop-filter: blur(18px);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 18px;
}

.nav-center {
  justify-content: center;
  gap: 58px;
}

.nav-right {
  justify-content: flex-end;
}

.menu-button {
  display: grid;
  width: 30px;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 28px;
  height: 2px;
  background: var(--ink);
}

.home-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: visible;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  transition:
    border-radius 300ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms ease,
    background-color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-dot::before {
  content: "XZ";
}

.home-dot::after {
  position: absolute;
  right: -2px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--dynamic-bg);
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.home-dot:hover,
.home-dot:focus-visible {
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  transform: rotate(-5deg) scale(1.06);
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(17, 17, 17, 0.28);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 420ms ease;
}

.site-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(440px, calc(100vw - 28px));
  overflow-y: auto;
  padding: 24px 28px 26px;
  border-right: 1px solid var(--line);
  background: var(--bg);
  box-shadow: 24px 0 80px rgba(17, 17, 17, 0.12);
  transform: translateX(-104%);
  visibility: hidden;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 520ms;
}

.drawer-open .drawer-scrim {
  opacity: 1;
  pointer-events: auto;
}

.drawer-open .site-drawer {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-brand > b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
}

.drawer-brand > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(90deg);
}

.drawer-nav {
  margin-top: clamp(64px, 11vh, 112px);
  border-top: 1px solid var(--line);
}

.drawer-nav a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  grid-template-areas:
    "number title arrow"
    "number detail arrow";
  column-gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 15px 12px 15px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 260ms ease,
    background-color 260ms ease,
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-nav a > span {
  grid-area: number;
  align-self: start;
  padding-top: 4px;
  color: rgba(17, 17, 17, 0.42);
  font-size: 10px;
  font-weight: 900;
}

.drawer-nav a > b {
  grid-area: title;
  align-self: end;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.drawer-nav a > em {
  grid-area: detail;
  align-self: start;
  color: rgba(17, 17, 17, 0.54);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.drawer-nav a > i {
  grid-area: arrow;
  font-size: 18px;
  font-style: normal;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  padding-left: 12px;
  background: var(--ink);
  color: var(--bg);
}

.drawer-nav a:hover > span,
.drawer-nav a:hover > em,
.drawer-nav a:focus-visible > span,
.drawer-nav a:focus-visible > em {
  color: rgba(247, 245, 238, 0.64);
}

.drawer-nav a[aria-current="page"] {
  box-shadow: inset 4px 0 0 var(--blue);
}

.drawer-nav a[aria-current="page"] > span {
  color: var(--blue);
}

.drawer-foot {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 10px;
  font-weight: 800;
}

.drawer-foot a {
  color: var(--ink);
}

.nav-center span {
  width: 58px;
  height: 9px;
  color: var(--ink);
  opacity: 0.4;
}

.nav-right span {
  width: 92px;
  height: 12px;
  color: var(--ink);
  opacity: 0.32;
}

.meta-column {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 20;
  display: grid;
  gap: 16px;
}

.meta-column span {
  width: 88px;
  height: 9px;
  color: var(--ink);
  opacity: 0.32;
}

main {
  padding-top: 74px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(42px, 8vw, 124px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 72px clamp(24px, 6vw, 96px);
  opacity: 0;
  transform: translateY(28px);
  animation: sectionIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.micro-line {
  width: 210px;
  height: 12px;
  margin-bottom: 38px;
  color: var(--muted);
}

.intro-title {
  display: grid;
  gap: 18px;
  margin-bottom: 46px;
}

.intro-title span {
  height: clamp(64px, 10vw, 138px);
  color: var(--ink);
  border-radius: 16px;
}

.intro-title span:nth-child(1) {
  width: min(940px, 100%);
}

.intro-title span:nth-child(2) {
  width: min(760px, 82%);
}

.intro-title span:nth-child(3) {
  width: min(480px, 54%);
}

.intro-body,
.copy-lines {
  display: grid;
  gap: 12px;
}

.intro-body span,
.copy-lines span {
  height: 14px;
  color: var(--muted);
}

.intro-body span:nth-child(1),
.copy-lines span:nth-child(1) {
  width: min(620px, 100%);
}

.intro-body span:nth-child(2),
.copy-lines span:nth-child(2) {
  width: min(520px, 86%);
}

.copy-lines span:nth-child(3) {
  width: min(430px, 72%);
}

.intro-orbital {
  position: relative;
  min-height: 520px;
}

.orbital-circle,
.orbital-square,
.identity-card {
  position: absolute;
}

.orbital-circle {
  border-radius: 50%;
}

.orbital-circle.blue {
  top: 42px;
  right: 28px;
  width: 230px;
  height: 230px;
  background: var(--blue);
}

.orbital-circle.red {
  left: 10px;
  bottom: 60px;
  width: 190px;
  height: 190px;
  background: var(--red);
}

.orbital-square.yellow {
  top: 250px;
  right: 140px;
  width: 150px;
  height: 150px;
  background: var(--yellow);
  transform: rotate(14deg);
}

.identity-card {
  top: 50%;
  left: 50%;
  display: grid;
  width: 230px;
  min-height: 290px;
  place-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(247, 245, 238, 0.7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.avatar-entry {
  cursor: pointer;
  isolation: isolate;
  border-radius: 28px;
  transition:
    border-radius 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-entry::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 72% 18%, rgba(30, 93, 232, 0.22), transparent 34%),
    radial-gradient(circle at 22% 76%, rgba(233, 67, 53, 0.22), transparent 34%),
    rgba(247, 245, 238, 0.74);
  opacity: 0;
  content: "";
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-entry:hover,
.avatar-entry:focus-visible {
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.16),
    0 0 0 10px rgba(30, 93, 232, 0.06);
  transform: translate(-50%, -50%) scale(1.035) rotate(-1deg);
}

.avatar-entry:hover::before,
.avatar-entry:focus-visible::before {
  opacity: 1;
}

.avatar-entry:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 8px;
}

.avatar-slot {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(30, 93, 232, 0.95), rgba(245, 200, 65, 0.9)),
    var(--blue);
  box-shadow: inset 0 -18px 36px rgba(17, 17, 17, 0.18);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-slot::before,
.avatar-slot::after {
  position: absolute;
  left: 50%;
  background: rgba(247, 245, 238, 0.86);
  content: "";
  transform: translateX(-50%);
}

.avatar-slot::before {
  top: 23px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.avatar-slot::after {
  bottom: 19px;
  width: 66px;
  height: 42px;
  border-radius: 34px 34px 16px 16px;
}

.avatar-slot span {
  position: absolute;
  top: 22px;
  left: 25px;
  z-index: 2;
  width: 62px;
  height: 18px;
  border-radius: 999px 999px 12px 12px;
  background: var(--ink);
  opacity: 1;
  transform: rotate(-8deg);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-entry:hover .avatar-slot,
.avatar-entry:focus-visible .avatar-slot {
  border-radius: 38%;
  background:
    linear-gradient(135deg, rgba(233, 67, 53, 0.95), rgba(30, 93, 232, 0.94)),
    var(--red);
  transform: translateY(-4px) rotate(2deg);
}

.avatar-entry:hover .avatar-slot span,
.avatar-entry:focus-visible .avatar-slot span {
  transform: rotate(-14deg) translateY(-1px);
}

.avatar-lines {
  display: grid;
  justify-content: center;
  gap: 12px;
}

.identity-card .avatar-lines span {
  height: 14px;
  color: var(--ink);
  opacity: 0.38;
  transition:
    width 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.identity-card .avatar-lines span:first-child {
  width: 120px;
}

.identity-card .avatar-lines span:last-child {
  width: 82px;
}

.avatar-entry:hover .avatar-lines span,
.avatar-entry:focus-visible .avatar-lines span {
  opacity: 0.58;
}

.avatar-entry:hover .avatar-lines span:first-child,
.avatar-entry:focus-visible .avatar-lines span:first-child {
  width: 136px;
}

.avatar-entry:hover .avatar-lines span:last-child,
.avatar-entry:focus-visible .avatar-lines span:last-child {
  width: 96px;
}

.projects-section {
  min-height: 100vh;
  padding: 88px clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--line);
}

.section-meta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 88px;
}

.section-meta span {
  height: 11px;
  color: var(--ink);
  opacity: 0.32;
}

.section-meta span:first-child {
  width: 190px;
}

.section-meta span:last-child {
  width: 118px;
}

.project-list {
  display: grid;
  border-top: 1px solid var(--line);
  perspective: 1400px;
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 120px;
  gap: 28px;
  align-items: center;
  min-height: 132px;
  padding-inline: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition:
    min-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding-inline 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-row:hover {
  min-height: 156px;
  padding-inline: 26px;
  border-radius: 34px;
  background: color-mix(in srgb, var(--row-color, var(--blue)) 12%, transparent);
  color: var(--blue);
  transform: translateX(8px) rotateX(1deg);
}

.project-row::before {
  position: absolute;
  inset: 18px auto 18px 0;
  width: 0;
  border-radius: 999px;
  background: var(--row-color, var(--blue));
  content: "";
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-row:hover::before {
  width: 8px;
}

.project-row:nth-child(1) {
  --row-color: var(--red);
}

.project-row:nth-child(2) {
  --row-color: var(--blue);
}

.project-row:nth-child(3) {
  --row-color: var(--yellow);
}

.project-no,
.project-year {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.project-title {
  width: min(620px, 82%);
  height: clamp(42px, 6vw, 78px);
  border-radius: 12px;
  background: currentColor;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-row:hover .project-title {
  width: min(700px, 90%);
  border-radius: 999px;
}

.case-skeleton-section,
.process-index {
  padding: 108px clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-skeleton-section.is-visible,
.process-index.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: center;
  min-height: 620px;
}

.case-grid.reversed {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.case-grid.reversed .case-media {
  order: 2;
}

.case-media {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(247, 245, 238, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(247, 245, 238, 0.18) 1px, transparent 1px),
    var(--red);
  background-size: 28px 28px;
  border-radius: 42px;
  overflow: hidden;
  transition:
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-media:hover {
  border-radius: 64px;
  transform: scale(0.985);
}

.case-media.media-blue {
  background:
    linear-gradient(90deg, rgba(247, 245, 238, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(247, 245, 238, 0.18) 1px, transparent 1px),
    var(--blue);
  background-size: 28px 28px;
}

.case-media span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 160px;
  height: 14px;
  color: var(--bg);
}

.case-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.case-heading span {
  height: clamp(42px, 5vw, 84px);
  border-radius: 12px;
  color: var(--ink);
}

.case-heading span:first-child {
  width: min(720px, 100%);
}

.case-heading span:last-child {
  width: min(500px, 68%);
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.method-tags span {
  width: 124px;
  height: 34px;
  border-radius: 999px;
  color: var(--ink);
  opacity: 0.16;
}

.process-header {
  margin-bottom: 54px;
}

.process-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-cards::before {
  position: absolute;
  top: 48px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: rgba(17, 17, 17, 0.16);
  content: "";
}

.process-cards article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease;
}

.process-cards article:hover,
.process-cards article:focus-visible {
  outline: none;
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.12);
}

.process-cards article:nth-child(2) {
  background: var(--yellow);
}

.process-cards article:nth-child(3) {
  background: var(--blue);
  color: var(--bg);
}

.process-cards article:nth-child(4) {
  background: var(--red);
  color: var(--bg);
}

.process-step {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 58px;
  padding-bottom: 9px;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.process-cards strong {
  width: 82%;
  height: 32px;
  margin-bottom: 24px;
}

.process-cards p {
  width: 92%;
  height: 72px;
  opacity: 0.32;
}

.process-output {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-output small {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.56;
}

.process-output b {
  font-size: 14px;
  font-weight: 800;
}

.process-cards article:hover .process-output,
.process-cards article:focus-visible .process-output {
  opacity: 0.82;
  transform: translateY(0);
}

.hover-preview {
  position: fixed;
  z-index: 50;
  top: var(--preview-y, 50%);
  left: var(--preview-x, 50%);
  width: 360px;
  height: 250px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 38px;
  background: var(--bg);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9) rotate(var(--preview-rotate, -2deg));
  transition:
    opacity 0.24s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.hover-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(var(--preview-rotate, -2deg));
}

.preview-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.preview-frame:not(.preview-01)::after {
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    rgba(255, 255, 255, 0.14);
  background-size: 24px 24px;
  content: "";
}

.preview-frame.is-active {
  opacity: 1;
}

.preview-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-01 {
  background: var(--ink);
}

.preview-01 img {
  transform: scale(1.03);
}

.preview-01::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72));
  content: "";
}

.preview-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--bg);
}

.preview-caption b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 245, 238, 0.5);
  border-radius: 50%;
  font-size: 10px;
}

.preview-caption span {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 850;
}

.preview-02 {
  background:
    radial-gradient(circle at 34% 70%, var(--red), transparent 4rem),
    linear-gradient(135deg, var(--blue), #0a1a4d);
}

.preview-02::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.56));
  content: "";
}

.preview-03 {
  background:
    radial-gradient(circle at 28% 34%, var(--red) 0 13%, transparent 13.5%),
    radial-gradient(circle at 68% 58%, var(--blue) 0 19%, transparent 19.5%),
    linear-gradient(135deg, #fff2b8, var(--yellow));
}

.preview-03::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(17, 17, 17, 0.32));
  content: "";
}

.preview-03::after {
  display: none;
}

.preview-03 {
  background:
    radial-gradient(circle at 74% 74%, var(--blue), transparent 4rem),
    linear-gradient(135deg, var(--yellow), #8b6900);
}

.content-ready .skeleton-section p,
.content-ready .skeleton-section h1,
.content-ready .skeleton-section h2,
.content-ready .skeleton-section h3,
.content-ready .skeleton-section b,
.content-ready .skeleton-section .project-title,
.content-ready .skeleton-section .project-no,
.content-ready .skeleton-section .project-year {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.text-nav {
  gap: 28px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.text-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(17, 17, 17, 0.55);
  transition: color 0.28s ease;
}

.text-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-nav a:hover,
.text-nav a:focus-visible {
  color: var(--ink);
}

.text-nav a:hover::after,
.text-nav a:focus-visible::after {
  transform: scaleX(1);
}

.text-meta {
  gap: 12px;
  opacity: 0;
  transition: opacity 320ms ease;
}

.text-meta:hover,
.text-meta:focus-within,
.meta-at-end .text-meta {
  opacity: 1;
}

.text-meta a {
  width: fit-content;
  color: rgba(17, 17, 17, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  transition:
    color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-meta a:hover,
.text-meta a:focus-visible {
  color: var(--blue);
  transform: translateX(4px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 34px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-title-text {
  max-width: 980px;
  margin: 0 0 34px;
  font-size: clamp(58px, 8.8vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

.intro-body-text {
  max-width: 650px;
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 550;
  line-height: 1.38;
}

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

.hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 0.32s ease,
    color 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero-actions a:hover,
.hero-actions a:focus-visible {
  transform: translateY(-3px);
}

.text-section-meta p {
  margin: 0;
  color: rgba(17, 17, 17, 0.44);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-ready .project-title {
  width: auto;
  height: auto;
  font-size: clamp(34px, 5.8vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.content-ready .project-row:hover .project-title {
  width: auto;
}

.content-ready .project-no,
.content-ready .project-year {
  background: transparent;
  color: rgba(17, 17, 17, 0.62);
}

.case-title {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(44px, 5.6vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.case-summary,
.case-points p,
.resume-copy,
.resume-role,
.resume-item p {
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 520;
  line-height: 1.56;
}

.case-summary {
  max-width: 680px;
  margin: 0 0 28px;
}

.case-points {
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.case-points p {
  position: relative;
  margin: 0;
  padding-left: 24px;
}

.case-points p::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.34;
}

.content-ready .method-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(247, 245, 238, 0.62);
  color: rgba(17, 17, 17, 0.7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.visual-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 210px;
  margin: 0;
  color: rgba(247, 245, 238, 0.84);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.process-cards h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.process-cards p {
  width: auto;
  height: auto;
  margin: 0;
  color: currentColor;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.45;
  opacity: 0.68;
}

.resume-title {
  margin: 0 0 12px;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

.resume-role {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 650;
  line-height: 1.18;
}

.resume-copy {
  max-width: 760px;
  margin: 0;
  font-weight: 430;
  line-height: 1.6;
}

.resume-item {
  display: grid;
  gap: 8px;
}

.resume-item h2 {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
}

.resume-item p {
  margin: 0;
  font-weight: 450;
}

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-grid b {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.resume-page main {
  padding-top: 74px;
}

.resume-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1fr);
  gap: clamp(42px, 8vw, 118px);
  min-height: calc(100vh - 74px);
  padding: 96px clamp(24px, 6vw, 96px);
}

.resume-portrait {
  position: sticky;
  top: 112px;
  align-self: start;
  min-height: 520px;
}

.resume-avatar {
  position: relative;
  width: min(360px, 86vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 56px;
  background:
    radial-gradient(circle at 68% 28%, var(--yellow), transparent 22%),
    radial-gradient(circle at 30% 72%, var(--red), transparent 24%),
    linear-gradient(135deg, var(--blue), #0c1a4c);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.16);
}

.resume-avatar::before,
.resume-avatar::after {
  position: absolute;
  left: 50%;
  background: rgba(247, 245, 238, 0.9);
  content: "";
  transform: translateX(-50%);
}

.resume-avatar::before {
  top: 24%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
}

.resume-avatar::after {
  bottom: 18%;
  width: 54%;
  height: 34%;
  border-radius: 999px 999px 42px 42px;
}

.resume-content {
  display: grid;
  gap: 54px;
}

.resume-block {
  display: grid;
  gap: 18px;
  padding-block: 8px 46px;
  border-bottom: 1px solid var(--line);
}

.resume-block .micro-line {
  margin-bottom: 16px;
}

.resume-heading {
  display: grid;
  gap: 14px;
}

.resume-heading span {
  height: clamp(46px, 6vw, 88px);
  border-radius: 14px;
  color: var(--ink);
}

.resume-heading span:first-child {
  width: min(700px, 100%);
}

.resume-heading span:last-child {
  width: min(420px, 62%);
}

.resume-list {
  display: grid;
  gap: 14px;
}

.resume-list span {
  height: 16px;
  color: var(--muted);
}

.resume-list span:nth-child(1) {
  width: min(640px, 100%);
}

.resume-list span:nth-child(2) {
  width: min(540px, 84%);
}

.resume-list span:nth-child(3) {
  width: min(470px, 72%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.back-link:hover,
.back-link:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: 90px 1fr 90px;
  }

  .meta-column,
  .hover-preview {
    display: none;
  }

  .intro-section,
  .case-grid,
  .case-grid.reversed {
    grid-template-columns: 1fr;
  }

  .case-grid.reversed .case-media {
    order: 0;
  }

  .process-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .resume-portrait {
    position: relative;
    top: auto;
    min-height: 0;
  }
}

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

@media (max-width: 680px) {
  .site-drawer {
    width: calc(100vw - 12px);
    padding: 20px;
  }

  .drawer-nav {
    margin-top: 48px;
  }

  .drawer-nav a {
    min-height: 78px;
  }

  .drawer-nav a > b {
    font-size: 18px;
  }

  .site-nav {
    min-height: 62px;
    padding-inline: 18px;
  }

  .nav-center {
    display: none;
  }

  main {
    padding-top: 62px;
  }

  .intro-section,
  .projects-section,
  .case-skeleton-section,
  .process-index {
    padding-inline: 20px;
  }

  .project-row {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 110px;
  }

  .project-year {
    display: none;
  }

  .intro-orbital {
    min-height: 390px;
  }

  .case-media {
    min-height: 360px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-cards::before {
    display: none;
  }
}

/* Content-density pass: tuned after real copy was inserted. */
.content-ready .intro-section {
  grid-template-columns: minmax(420px, 0.92fr) minmax(300px, 0.68fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(92px, 10vh, 126px);
  padding-bottom: clamp(72px, 9vh, 112px);
}

.content-ready .intro-title-text {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.25vw, 78px);
  line-height: 1.02;
}

.content-ready .intro-body-text {
  max-width: 600px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

.content-ready .intro-orbital {
  min-height: clamp(420px, 47vw, 560px);
  transform: scale(0.94);
  transform-origin: center;
}

.content-ready .projects-section {
  min-height: auto;
  padding-top: clamp(86px, 9vw, 128px);
  padding-bottom: clamp(86px, 9vw, 128px);
}

.content-ready .section-meta {
  margin-bottom: clamp(46px, 5.8vw, 76px);
}

.content-ready .project-row {
  grid-template-columns: 108px minmax(0, 1fr) 112px;
  min-height: auto;
  padding: clamp(28px, 3.2vw, 46px) 0;
}

.content-ready .project-row:hover {
  min-height: auto;
  padding-inline: 22px;
}

.project-row.is-featured {
  background: linear-gradient(90deg, rgba(30, 93, 232, 0.075), transparent 68%);
}

.project-feature-label {
  display: block;
  margin-top: 9px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.content-ready .project-title {
  max-width: 1040px;
  font-size: clamp(30px, 3.45vw, 54px);
  line-height: 1.06;
}

.content-ready .project-no,
.content-ready .project-year {
  align-self: center;
  font-size: 13px;
  line-height: 1;
}

.project-link-hint {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.32s ease;
}

.project-row:hover .project-link-hint,
.project-row:focus-visible .project-link-hint {
  opacity: 1;
  color: currentColor;
  transform: translateY(0);
}

.project-row:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}

.content-ready .case-skeleton-section,
.content-ready .process-index {
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 118px);
}

.content-ready .case-grid,
.content-ready .case-grid.reversed {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
  min-height: auto;
}

.content-ready .case-grid.reversed {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
}

.content-ready .case-media {
  min-height: clamp(360px, 38vw, 520px);
  border-radius: 36px;
}

.content-ready .case-title {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(32px, 3.15vw, 50px);
  line-height: 1.08;
}

.content-ready .case-summary,
.content-ready .case-points p {
  max-width: 620px;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.58;
}

.content-ready .case-summary {
  margin-bottom: 24px;
}

.content-ready .case-points {
  gap: 10px;
}

.content-ready .method-tags {
  margin-top: 28px;
}

.case-index-preview {
  display: block;
  max-width: 620px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
  transition:
    background 0.32s ease,
    border-radius 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-index-preview:hover,
.case-index-preview:focus-visible {
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.case-index-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.case-index-head b,
.case-index-head em {
  display: block;
}

.case-index-head b {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.case-index-head em {
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 640;
  line-height: 1.35;
}

.case-index-head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--bg);
  font-size: 18px;
  font-weight: 900;
}

.content-ready .process-header {
  max-width: 760px;
}

.content-ready .process-cards article {
  min-height: 280px;
  border-radius: 28px;
}

.content-ready .process-step {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 64px;
  padding-bottom: 9px;
  overflow: visible;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
}

.content-ready .process-output {
  position: relative;
  padding-top: 32px;
  border-top: 0;
}

.content-ready .process-output::before {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.62;
}

.content-ready .resume-shell {
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 86px);
}

.content-ready .resume-title {
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.98;
}

@media (max-width: 1180px) {
  .content-ready .intro-section,
  .content-ready .case-grid,
  .content-ready .case-grid.reversed {
    grid-template-columns: 1fr;
  }

  .content-ready .intro-title-text {
    max-width: 920px;
    font-size: clamp(44px, 7.2vw, 70px);
  }

  .content-ready .intro-orbital {
    min-height: 420px;
    max-width: 560px;
  }

  .content-ready .case-grid.reversed .case-media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .content-ready .intro-section,
  .content-ready .projects-section,
  .content-ready .case-skeleton-section,
  .content-ready .process-index,
  .content-ready .resume-shell {
    padding-inline: 20px;
  }

  .content-ready .intro-title-text {
    font-size: clamp(40px, 12vw, 58px);
  }

  .content-ready .intro-body-text {
    font-size: 16px;
  }

  .content-ready .project-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding-block: 26px;
  }

  .project-link-hint {
    display: none;
  }

  .content-ready .project-title {
    font-size: clamp(28px, 10vw, 42px);
  }

  .content-ready .case-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .content-ready .case-media {
    min-height: 340px;
  }

  .case-index-preview {
    padding: 16px;
  }
}

.media-image {
  display: block;
  color: var(--bg);
}

.media-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-image:hover img,
.media-image:focus-visible img {
  transform: scale(1.035);
}

.media-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.48));
  content: "";
}

.media-image .visual-label {
  z-index: 2;
}

.case-page main {
  padding-top: 74px;
}

.case-process-nav {
  position: sticky;
  z-index: 8;
  top: 74px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(247, 245, 238, 0.94);
  backdrop-filter: blur(16px);
}

.case-process-nav a {
  display: grid;
  min-height: 112px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: color 260ms ease, background-color 260ms ease;
}

.case-process-nav a:last-child {
  border-right: 0;
}

.case-process-nav span,
.case-process-nav b,
.case-process-nav em {
  font-style: normal;
}

.case-process-nav span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 10px;
  font-weight: 900;
}

.case-process-nav b {
  align-self: end;
  font-size: 15px;
  font-weight: 900;
}

.case-process-nav em {
  overflow: hidden;
  color: rgba(17, 17, 17, 0.5);
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-process-nav a:hover,
.case-process-nav a:focus-visible,
.case-process-nav a.is-active {
  background: var(--ink);
  color: var(--bg);
}

.case-process-nav a:hover span,
.case-process-nav a:hover em,
.case-process-nav a:focus-visible span,
.case-process-nav a:focus-visible em,
.case-process-nav a.is-active span,
.case-process-nav a.is-active em {
  color: rgba(247, 245, 238, 0.62);
}

.case-hero,
.case-band {
  padding-inline: clamp(24px, 6vw, 96px);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  grid-template-areas:
    "copy visual"
    "meta meta";
  column-gap: clamp(42px, 5vw, 80px);
  row-gap: 44px;
  align-items: center;
  align-content: center;
  min-height: calc(100vh - 74px);
  padding-top: clamp(64px, 6vw, 88px);
  padding-bottom: clamp(64px, 6vw, 88px);
}

.case-hero-copy {
  grid-area: copy;
}

.case-hero-visual {
  grid-area: visual;
  justify-self: end;
  width: 100%;
  max-width: 800px;
}

.case-meta-grid {
  grid-area: meta;
}

.case-hero h1 {
  max-width: 640px;
  margin: 0 0 22px;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.case-hero-copy > p:not(.eyebrow),
.case-section-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 17px;
  font-weight: 540;
  line-height: 1.58;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.18fr;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pm-flow article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.case-meta-grid article {
  min-height: 112px;
  padding: 18px 24px 18px 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.case-meta-grid article + article {
  padding-left: 24px;
}

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

.case-meta-grid b,
.case-meta-grid span {
  display: block;
}

.case-meta-grid b {
  margin-bottom: 14px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-meta-grid span {
  color: var(--ink);
  max-width: 320px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.case-hero-visual,
.wide-visual,
.evidence-grid figure,
.artifact-pair figure {
  margin: 0;
}

.case-hero-visual {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.case-hero-visual img,
.wide-visual img,
.evidence-grid img,
.artifact-pair img {
  display: block;
  width: 100%;
  height: auto;
}

.case-hero-visual img {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.14);
}

.case-hero-visual figcaption,
.wide-visual figcaption,
.evidence-grid figcaption,
.artifact-pair figcaption {
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.case-hero-visual figcaption {
  padding: 10px 2px 0;
  color: rgba(17, 17, 17, 0.48);
}

.case-band {
  scroll-margin-top: 186px;
  padding-top: clamp(80px, 8vw, 122px);
  padding-bottom: clamp(80px, 8vw, 122px);
  border-top: 1px solid var(--line);
}

.case-section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.case-section-heading h2 {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(36px, 3.2vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
}

.pm-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pm-flow article {
  min-height: 280px;
  padding: 22px;
}

.pm-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 64px;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
}

.pm-flow h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.pm-flow p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.48;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.evidence-grid figure,
.artifact-pair figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.34);
}

.evidence-grid img {
  height: 300px;
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.evidence-grid figcaption,
.artifact-pair figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.evidence-grid figcaption b,
.artifact-pair figcaption b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.evidence-grid figcaption span,
.artifact-pair figcaption span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.45;
}

.wide-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--ink);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.14);
}

.wide-visual figcaption {
  padding: 16px 20px 20px;
  background: var(--bg);
}

.artifact-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.artifact-pair img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.studio-evidence-pair {
  margin-bottom: 18px;
}

.studio-team-visual {
  margin-top: clamp(34px, 5vw, 58px);
}

.studio-team-visual img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 44%;
  border-radius: 26px;
}

.compact-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.compact-flow article {
  min-height: 220px;
}

.compact-flow span {
  margin-bottom: 44px;
}

.decision-timeline {
  border-top: 1px solid var(--line);
}

.pivot-flow {
  margin: 0 0 clamp(52px, 6vw, 84px);
}

.pivot-flow figcaption {
  margin-bottom: 18px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pivot-flow ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pivot-flow li {
  position: relative;
  min-width: 0;
  padding: 20px 18px 4px 0;
  border-top: 3px solid var(--ink);
}

.pivot-flow li:not(:last-child)::after {
  position: absolute;
  top: -7px;
  right: -15px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  content: "";
  transform: rotate(45deg);
}

.pivot-flow li span,
.pivot-flow li b {
  display: block;
}

.pivot-flow li span {
  margin-bottom: 32px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pivot-flow li b {
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.pivot-flow li p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.decision-timeline article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 160px;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.decision-timeline article > span,
.decision-timeline article > strong,
.decision-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.decision-timeline article > span {
  color: rgba(17, 17, 17, 0.48);
}

.decision-timeline article > strong {
  justify-self: end;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  letter-spacing: 0;
  text-align: center;
}

.decision-label {
  margin: 0 0 9px;
  color: var(--blue);
}

.decision-timeline h3 {
  max-width: 840px;
  margin: 0 0 12px;
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.decision-timeline div > p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 16px;
  line-height: 1.55;
}

.requirements-matrix {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.requirements-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.requirements-row > * {
  min-height: 132px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.45;
}

.requirements-head > * {
  min-height: auto;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.requirements-row:not(.requirements-head) > *:first-child {
  color: var(--blue);
  font-weight: 850;
}

.handoff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.handoff-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.3);
}

.handoff-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.handoff-grid h3 {
  margin: 70px 0 12px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.handoff-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .case-hero {
    display: flex;
    flex-direction: column;
  }

  .case-hero-visual,
  .case-meta-grid {
    width: 100%;
  }

  .case-hero-visual {
    align-self: center;
  }

  .case-hero,
  .pm-flow,
  .evidence-grid,
  .artifact-pair,
  .compact-flow,
  .handoff-grid {
    grid-template-columns: 1fr;
  }

  .case-process-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-process-nav a:nth-child(3) {
    border-right: 0;
  }

  .case-process-nav a:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .decision-timeline article {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .pivot-flow ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .pivot-flow li:not(:last-child)::after {
    display: none;
  }

  .decision-timeline article > strong {
    grid-column: 2;
    justify-self: start;
  }

  .requirements-row {
    grid-template-columns: 1fr 1fr;
  }

  .case-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-hero h1 {
    font-size: 56px;
  }

  .pm-flow article {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .case-hero,
  .case-band {
    padding-inline: 20px;
  }

  .case-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .case-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .case-meta-grid {
    grid-template-columns: 1fr;
  }

  .case-meta-grid article,
  .case-meta-grid article + article {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-meta-grid article:last-child {
    border-bottom: 0;
  }

  .case-section-heading h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .pivot-flow ol {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pivot-flow li {
    padding-top: 15px;
  }

  .pivot-flow li span {
    margin-bottom: 12px;
  }

  .pivot-flow li b {
    min-height: auto;
  }

  .case-process-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-process-nav a,
  .case-process-nav a:nth-child(3) {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .case-process-nav a:nth-child(even) {
    border-right: 0;
  }

  .decision-timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .decision-timeline article > strong {
    grid-column: 1;
  }

  .requirements-row {
    grid-template-columns: 1fr;
  }

  .requirements-head {
    display: none;
  }

  .requirements-row > * {
    min-height: auto;
  }
}

/* Case 02: spatial service journey */
.access-page {
  --access-blue: #165fe8;
  --access-green: #42b96a;
  --access-coral: #ef6654;
  --access-bg: #f5f7f2;
  --dynamic-bg: var(--access-bg);
}

.access-page main {
  padding-top: 74px;
}

.access-hero {
  position: relative;
  min-height: min(920px, calc(100vh - 74px));
  overflow: hidden;
  background: #f6f3ec;
}

.access-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.access-hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(82px, 12vh, 142px);
  left: clamp(28px, 6vw, 112px);
  width: min(510px, 40vw);
}

.access-hero-copy .eyebrow {
  margin-bottom: 26px;
  color: rgba(17, 17, 17, 0.58);
}

.access-hero-copy h1 {
  max-width: 500px;
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.access-hero-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.55;
}

.access-hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(24px, 4vw, 58px);
  display: grid;
  max-width: 330px;
  gap: 5px;
  padding-left: 14px;
  border-left: 4px solid var(--access-coral);
}

.access-hero-note b,
.access-hero-note span {
  display: block;
}

.access-hero-note b {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-hero-note span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.access-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: clamp(24px, 6vw, 96px);
  border-block: 1px solid var(--line);
  background: var(--access-bg);
}

.access-summary article {
  min-height: 108px;
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line);
}

.access-summary article + article {
  padding-left: 24px;
}

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

.access-summary b,
.access-summary span {
  display: block;
}

.access-summary b {
  margin-bottom: 14px;
  color: rgba(17, 17, 17, 0.45);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.access-summary span {
  max-width: 330px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.4;
}

.access-layout {
  display: grid;
  grid-template-columns: 172px minmax(0, 1280px);
  gap: clamp(34px, 5vw, 82px);
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 96px);
  background: var(--access-bg);
}

.journey-rail {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 20px;
  min-height: 420px;
  margin-top: 112px;
  padding-left: 28px;
}

.journey-line {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 4px;
  width: 2px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.12);
}

.journey-line i {
  display: block;
  width: 100%;
  height: var(--journey-progress, 0%);
  background: var(--access-blue);
  transition: height 140ms linear;
}

.journey-rail a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 52px;
  color: rgba(17, 17, 17, 0.38);
  transition: color 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-rail a::before {
  position: absolute;
  top: 3px;
  left: -30px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #c8cbc6;
  box-shadow: 0 0 0 4px var(--access-bg);
  content: "";
  transition: background-color 240ms ease, transform 240ms ease;
}

.journey-rail a span {
  font-size: 9px;
  font-weight: 900;
}

.journey-rail a b {
  font-size: 12px;
  font-weight: 850;
}

.journey-rail a:hover,
.journey-rail a:focus-visible,
.journey-rail a.is-active {
  color: var(--ink);
  transform: translateX(4px);
}

.journey-rail a.is-active::before {
  background: var(--access-blue);
  transform: scale(1.35);
}

.journey-rail a.is-active b {
  font-weight: 950;
}

.journey-content {
  width: 100%;
  max-width: 1280px;
  min-width: 0;
}

.journey-section {
  scroll-margin-top: 98px;
  padding: clamp(84px, 8vw, 126px) 0;
  border-bottom: 1px solid var(--line);
}

.journey-heading {
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.journey-heading h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.journey-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 17px;
  line-height: 1.6;
}

.lost-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
}

.lost-sequence article {
  min-height: 230px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

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

.lost-sequence span,
.lost-sequence b {
  display: block;
}

.lost-sequence span {
  margin-bottom: 74px;
  color: var(--access-blue);
  font-size: 10px;
  font-weight: 900;
}

.lost-sequence b {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

.lost-sequence p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.evidence-stream {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.evidence-stream.reversed > div {
  order: 2;
}

.evidence-stream > div > span {
  display: block;
  margin-bottom: 18px;
  color: var(--access-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evidence-stream h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.evidence-stream p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 15px;
  line-height: 1.6;
}

.evidence-section .journey-heading {
  margin-bottom: 34px;
}

.evidence-section .case-visual-board--research {
  margin-top: clamp(30px, 4vw, 52px);
}

.evidence-stream figure {
  margin: 0;
}

.evidence-stream img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: top;
}

.evidence-stream figcaption {
  padding-top: 10px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 750;
}

.evidence-stream .ui-evidence img {
  max-height: 590px;
  aspect-ratio: auto;
  border: 0;
  object-fit: contain;
}

.junction-list {
  border-top: 1px solid var(--line);
}

.junction-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 106px;
  border-bottom: 1px solid var(--line);
}

.junction-list span {
  color: var(--access-blue);
  font-size: 10px;
  font-weight: 900;
}

.junction-list b {
  font-size: 22px;
  font-weight: 900;
}

.junction-list p {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.mode-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 38px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.mode-switch button {
  min-width: 150px;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, 0.54);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  transition: color 260ms ease, background-color 260ms ease;
}

.mode-switch button[aria-selected="true"] {
  background: var(--ink);
  color: var(--access-bg);
}

.mode-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  background: #101714;
  color: var(--access-bg);
  animation: mode-panel-in 250ms ease both;
}

@keyframes mode-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mode-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 15, 13, 0.94), rgba(9, 15, 13, 0.72)),
    url("assets/generated/campus-access-dual-scenario.png") center / cover;
  content: "";
  filter: grayscale(0.35) saturate(0.8);
  opacity: 0.34;
}

.mode-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(31, 215, 124, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(15, 29, 24, 0.22), rgba(20, 42, 70, 0.18));
  content: "";
}

.mode-panel[data-mode-panel="campus"]::before {
  background-position: 18% center;
}

.mode-panel[data-mode-panel="remote"]::before {
  background-position: 82% center;
}

.mode-panel[hidden] {
  display: none;
}

.mode-intro {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 34px;
  margin-bottom: 58px;
}

.mode-intro span {
  color: var(--access-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mode-intro h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 900;
  line-height: 1.06;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(247, 245, 238, 0.18);
  list-style: none;
}

.service-flow li {
  min-height: 200px;
  padding: 22px;
  background: rgba(8, 13, 11, 0.78);
  backdrop-filter: blur(3px);
}

.service-flow span,
.service-flow b {
  display: block;
}

.service-flow span {
  margin-bottom: 56px;
  color: var(--access-green);
  font-size: 11px;
  font-weight: 900;
}

.service-flow b {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

.service-flow p {
  margin: 0;
  color: rgba(247, 245, 238, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.prototype-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prototype-slots article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}

.prototype-slots span,
.prototype-slots b {
  display: block;
}

.prototype-slots span {
  margin-bottom: 92px;
  color: var(--access-blue);
  font-size: 10px;
  font-weight: 900;
}

.prototype-slots b {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

.prototype-slots p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.prototype-lab {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(320px, 400px);
  gap: clamp(44px, 5vw, 72px);
  align-items: stretch;
}

.prototype-lab[hidden] {
  display: none !important;
}

.case-visual-board {
  width: 100%;
  max-width: 1200px;
  margin: clamp(38px, 5vw, 72px) auto 0;
}

.case-visual-board--scenario {
  max-width: 1120px;
}

.case-visual-board--research {
  max-width: 1280px;
}

.case-visual-board > a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f5f2ec;
}

.case-visual-board--testing > a {
  border: 0;
  background: transparent;
}

.case-visual-board img {
  display: block;
  width: 100%;
  height: auto;
}

.case-visual-board--testing img {
  width: calc(100% + 40px);
  max-width: none;
  margin-left: -20px;
}

.case-visual-board figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

.case-visual-board figcaption span:last-child {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 850;
  text-transform: uppercase;
}

.prototype-demo {
  margin-top: clamp(32px, 4vw, 56px);
  border-block: 1px solid var(--line);
}

.prototype-demo summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.prototype-demo summary::-webkit-details-marker {
  display: none;
}

.prototype-demo summary span {
  display: grid;
  gap: 5px;
}

.prototype-demo summary small {
  color: rgba(17, 17, 17, 0.46);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prototype-demo summary b {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.prototype-demo summary i {
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.prototype-demo[open] summary i {
  color: var(--access-blue);
}

.prototype-demo .prototype-lab {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
}

.prototype-kicker {
  margin: 0 0 18px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prototype-state-list {
  border-top: 1px solid var(--line);
}

.prototype-state-list button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  width: 100%;
  gap: 6px 16px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: rgba(17, 17, 17, 0.42);
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease, padding-left 260ms ease;
}

.prototype-state-list button:hover,
.prototype-state-list button:focus-visible,
.prototype-state-list button[aria-selected="true"] {
  padding-left: 10px;
  color: var(--ink);
}

.prototype-state-list button[aria-selected="true"] span {
  background: var(--access-blue);
  color: white;
}

.prototype-state-list span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e2e5df;
  font-size: 9px;
  font-weight: 900;
}

.prototype-state-list b {
  font-size: 19px;
  font-weight: 900;
}

.prototype-state-list small {
  color: rgba(17, 17, 17, 0.54);
  font-size: 12px;
  line-height: 1.45;
}

.prototype-principles {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.prototype-principles article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.prototype-principles b {
  font-size: 11px;
  font-weight: 900;
}

.prototype-principles p {
  margin: 0;
  color: rgba(17, 17, 17, 0.54);
  font-size: 11px;
  line-height: 1.45;
}

.device-stage {
  display: grid;
  place-items: center;
  min-height: 0;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(22, 95, 232, 0.16), transparent 38%),
    linear-gradient(145deg, #e7eadf, #f3efe7 58%, #dfe5f5);
}

.device-scale {
  --device-scale: 0.52;
  width: calc(390px * var(--device-scale));
  height: calc(844px * var(--device-scale));
}

.ios-device {
  position: relative;
  width: 390px;
  height: 844px;
  padding: 9px;
  border: 2px solid #3c3c3d;
  border-radius: 52px;
  background: #080809;
  box-shadow: 0 34px 70px rgba(23, 25, 31, 0.26), 0 4px 10px rgba(0, 0, 0, 0.22);
  transform: scale(var(--device-scale));
  transform-origin: top left;
}

.device-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 8;
  width: 116px;
  height: 31px;
  border-radius: 18px;
  background: #050506;
  transform: translateX(-50%);
}

.device-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 43px;
  background: #f5f6f0;
}

.ios-status {
  position: absolute;
  inset: 0 0 auto;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  height: 44px;
  padding: 13px 22px 0;
  color: var(--ink);
  pointer-events: none;
}

.ios-status > span {
  font-size: 11px;
  font-weight: 900;
}

.ios-status > div {
  display: flex;
  gap: 5px;
  align-items: center;
}

.ios-status svg {
  width: 15px;
  height: 11px;
  fill: currentColor;
}

.prototype-screen {
  position: absolute;
  inset: 0;
  padding: 54px 17px 24px;
  overflow-y: auto;
  background: #f5f6f0;
  scrollbar-width: none;
}

.prototype-screen::-webkit-scrollbar {
  display: none;
}

.prototype-screen[hidden] {
  display: none;
}

.prototype-screen.is-active {
  animation: prototype-enter 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes prototype-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.app-header > div {
  display: grid;
  gap: 4px;
}

.app-header span,
.route-sheet span,
.remote-context span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-header b {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.04;
}

.app-avatar,
.app-back {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.app-back {
  order: -1;
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.1);
}

.intent-search {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: white;
  color: rgba(17, 17, 17, 0.54);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.intent-search svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.quick-intents {
  display: flex;
  gap: 7px;
  margin: 11px 0 14px;
}

.quick-intents button {
  flex: 1;
  min-height: 32px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 850;
}

.quick-intents button.is-selected {
  border-color: var(--access-blue);
  background: var(--access-blue);
  color: white;
}

.indoor-map {
  position: relative;
  height: 328px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(rgba(22, 95, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 95, 232, 0.03) 1px, transparent 1px),
    #e8ebdf;
  background-size: 18px 18px;
}

.map-room {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.62);
}

.room-a { inset: 20px 165px 214px 18px; }
.room-b { inset: 20px 18px 246px 215px; }
.room-c { inset: 126px 205px 88px 18px; }
.room-d { inset: 95px 18px 150px 185px; }
.room-e { inset: 250px 190px 18px 18px; }
.room-f { inset: 214px 18px 18px 220px; }

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

.route-line path {
  fill: none;
  stroke: var(--access-blue);
  stroke-linecap: round;
  stroke-width: 7;
}

.route-line circle {
  fill: var(--access-bg);
  stroke: var(--access-blue);
  stroke-width: 5;
}

.route-line circle:last-child {
  fill: var(--access-coral);
  stroke: white;
}

.map-label {
  position: absolute;
  padding: 5px 7px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 850;
}

.map-start { left: 24px; bottom: 22px; }
.map-end { top: 30px; right: 15px; }

.map-compass {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.1);
}

.route-sheet {
  position: relative;
  z-index: 2;
  margin: -42px 9px 0;
  padding: 16px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.13);
}

.route-sheet > div {
  display: grid;
  gap: 3px;
  padding-right: 66px;
}

.route-sheet b {
  font-size: 15px;
  font-weight: 900;
}

.route-sheet .route-confidence {
  position: absolute;
  top: 16px;
  right: 14px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(66, 185, 106, 0.14);
  color: #247443;
  font-size: 8px;
}

.route-sheet p {
  margin: 11px 0 13px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

.primary-app-action {
  width: 100%;
  min-height: 43px;
  border: 0;
  border-radius: 12px;
  background: var(--access-blue);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
}

.primary-app-action.is-confirmed {
  background: #247443;
}

.access-route-hero {
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 16px;
  background: var(--ink);
  color: white;
}

.access-route-hero p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.4;
}

.access-route-mark {
  display: flex;
  align-items: center;
}

.access-route-mark span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--access-green);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.access-route-mark i {
  flex: 1;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--access-green) 0 8px, transparent 8px 14px);
}

.route-options {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.route-options button {
  display: grid;
  grid-template-columns: 34px 1fr 16px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 13px;
  background: white;
  cursor: pointer;
  text-align: left;
}

.route-options button[aria-checked="true"] {
  border-color: var(--access-blue);
  box-shadow: inset 0 0 0 1px var(--access-blue);
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #eef1e9;
  color: var(--access-blue);
  font-size: 15px;
  font-weight: 900;
}

.route-options button > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.route-options b {
  font-size: 11px;
  font-weight: 900;
}

.route-options small {
  color: rgba(17, 17, 17, 0.5);
  font-size: 9px;
}

.route-options button > i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(17, 17, 17, 0.26);
  border-radius: 50%;
}

.route-options button[aria-checked="true"] > i {
  border: 4px solid var(--access-blue);
}

.guidance-toggles {
  margin-bottom: 14px;
  border-block: 1px solid rgba(17, 17, 17, 0.1);
}

.guidance-toggles label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 55px;
  cursor: pointer;
}

.guidance-toggles label + label {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.guidance-toggles label > span {
  display: grid;
  gap: 2px;
}

.guidance-toggles b {
  font-size: 10px;
  font-weight: 900;
}

.guidance-toggles small {
  color: rgba(17, 17, 17, 0.5);
  font-size: 8px;
}

.guidance-toggles input {
  position: absolute;
  opacity: 0;
}

.guidance-toggles i {
  position: relative;
  width: 36px;
  height: 21px;
  border-radius: 999px;
  background: #d2d5cf;
}

.guidance-toggles i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  content: "";
  transition: transform 180ms ease;
}

.guidance-toggles input:checked + i {
  background: var(--access-green);
}

.guidance-toggles input:checked + i::after {
  transform: translateX(15px);
}

.human-help-action {
  width: 100%;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.remote-screen {
  padding: 0 0 24px;
  background: #ecefe7;
}

.remote-scene {
  position: relative;
  height: 385px;
  overflow: hidden;
  background: #d9ddd4;
}

.remote-scene > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.remote-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.38), transparent 40%, rgba(0,0,0,.56));
  content: "";
}

.remote-overlay {
  position: absolute;
  inset: 50px 15px 18px;
  z-index: 2;
}

.live-pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(8, 8, 9, 0.64);
  color: white;
  font-size: 8px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--access-coral);
}

.remote-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 8, 9, 0.64);
  color: white;
  cursor: pointer;
  font-size: 18px;
  backdrop-filter: blur(12px);
}

.remote-location {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  color: white;
}

.remote-location span {
  color: rgba(255,255,255,.66);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.remote-location b {
  font-size: 16px;
  font-weight: 900;
}

.remote-content {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 15px 17px 10px;
  border-radius: 18px 18px 0 0;
  background: #ecefe7;
}

.remote-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 13px;
}

.remote-actions button {
  min-height: 36px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  font-weight: 850;
}

.remote-actions button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.remote-context {
  padding: 12px;
  border-radius: 12px;
  background: white;
}

.remote-context p {
  margin: 5px 0 0;
  color: rgba(17,17,17,.62);
  font-size: 9px;
  line-height: 1.4;
}

.remote-chat {
  margin: 13px 0;
}

.remote-chat label {
  display: block;
  margin-bottom: 6px;
  font-size: 8px;
  font-weight: 850;
}

.remote-chat > div {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 6px;
}

.remote-chat input {
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 11px;
  background: white;
  font: inherit;
  font-size: 9px;
}

.remote-chat button {
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 15px;
}

.prototype-toast {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
  z-index: 10;
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.ios-home-indicator {
  position: absolute;
  bottom: 7px;
  left: 50%;
  z-index: 12;
  width: 112px;
  height: 4px;
  border-radius: 99px;
  background: rgba(17,17,17,.82);
  transform: translateX(-50%);
}

.validation-plan {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 100px);
  margin-top: clamp(54px, 6vw, 82px);
  padding: clamp(30px, 4vw, 50px) 0;
  border-block: 3px solid var(--ink);
  color: var(--ink);
}

.validation-plan h3 {
  max-width: 380px;
  margin: 16px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.validation-plan ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.validation-plan li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.validation-plan li > span {
  color: var(--access-blue);
  font-size: 9px;
  font-weight: 900;
}

.validation-plan li div {
  display: grid;
  gap: 6px;
}

.validation-plan li b {
  font-size: 14px;
}

.validation-plan li p {
  margin: 0;
  color: rgba(17,17,17,.6);
  font-size: 13px;
  line-height: 1.5;
}

.ai-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ai-role-grid article {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.28);
}

.ai-role-grid span {
  color: var(--access-blue);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-role-grid h3 {
  margin: 76px 0 16px;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.06;
}

.ai-role-grid p {
  margin: 0;
  color: rgba(17,17,17,.58);
  font-size: 14px;
  line-height: 1.55;
}

.confidence-model {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 84px);
  margin-top: 100px;
  padding-top: 44px;
  border-top: 3px solid var(--ink);
}

.confidence-intro h3 {
  margin: 16px 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
}

.confidence-intro p {
  max-width: 420px;
  margin: 0;
  color: rgba(17,17,17,.6);
  font-size: 14px;
  line-height: 1.55;
}

.confidence-levels {
  display: grid;
}

.confidence-levels article {
  display: grid;
  grid-template-columns: 74px 110px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.confidence-levels span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.confidence-high span { background: rgba(66,185,106,.12); color: #346a47; }
.confidence-medium span { background: rgba(239,178,45,.13); color: #795c1c; }
.confidence-low span { background: rgba(239,102,84,.11); color: #884c44; }

.confidence-levels b {
  font-size: 18px;
  font-weight: 900;
}

.confidence-levels p {
  margin: 0;
  color: rgba(17,17,17,.58);
  font-size: 13px;
  line-height: 1.5;
}

.responsible-ai-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-block: 1px solid var(--line);
}

.responsible-ai-strip article {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.responsible-ai-strip article:last-child {
  border-right: 0;
}

.responsible-ai-strip b {
  display: block;
  margin-bottom: 48px;
  font-size: 13px;
  font-weight: 900;
}

.responsible-ai-strip p {
  margin: 0;
  color: rgba(17,17,17,.56);
  font-size: 12px;
  line-height: 1.5;
}

.access-reflection {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .7fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: end;
  padding-bottom: 150px;
}

.access-reflection h2 {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.access-reflection > div:last-child {
  align-self: end;
  max-width: 420px;
}

.reflection-points {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.reflection-points li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  color: rgba(17,17,17,.68);
  font-size: 14px;
  line-height: 1.45;
}

.reflection-points li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--access-blue);
  content: "";
}

.access-reflection a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-block: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .access-hero {
    min-height: 720px;
  }

  .access-hero-copy {
    width: min(440px, 45vw);
  }

  .access-layout {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 32px;
  }

  .lost-sequence,
  .service-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lost-sequence article:nth-child(2) {
    border-right: 0;
  }

  .evidence-stream {
    grid-template-columns: 1fr;
  }

  .evidence-stream.reversed > div {
    order: 0;
  }

  .prototype-lab {
    grid-template-columns: 1fr;
  }

  .device-scale {
    --device-scale: 0.72;
  }

  .prototype-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .prototype-kicker {
    grid-column: 1 / -1;
    margin-bottom: -12px;
  }

  .responsible-ai-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .responsible-ai-strip article:nth-child(2) {
    border-right: 0;
  }

  .responsible-ai-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .access-page main {
    padding-top: 62px;
  }

  .access-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .access-hero > img {
    position: relative;
    height: 54vh;
    min-height: 420px;
    object-position: 68% center;
  }

  .access-hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 42px 20px 30px;
    background: var(--access-bg);
  }

  .access-hero-copy h1 {
    font-size: 46px;
  }

  .access-hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 20px 36px;
  }

  .access-summary {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .access-summary article,
  .access-summary article + article {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .access-summary article:last-child {
    border-bottom: 0;
  }

  .access-layout {
    display: block;
    padding: 0 20px;
  }

  .journey-rail {
    position: sticky;
    z-index: 9;
    top: 62px;
    display: flex;
    min-height: 0;
    gap: 0;
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 247, 242, 0.94);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
  }

  .journey-rail::-webkit-scrollbar {
    display: none;
  }

  .journey-line {
    display: none;
  }

  .journey-rail a {
    flex: 0 0 auto;
    min-height: 64px;
    padding: 13px 18px 10px 0;
    scroll-snap-align: center;
  }

  .journey-rail a::before {
    display: none;
  }

  .journey-heading h2 {
    font-size: 38px;
  }

  .lost-sequence,
  .service-flow,
  .prototype-slots {
    grid-template-columns: 1fr;
  }

  .lost-sequence article,
  .lost-sequence article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lost-sequence span {
    margin-bottom: 34px;
  }

  .junction-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .junction-list p {
    grid-column: 2;
  }

  .mode-switch {
    display: grid;
  }

  .mode-switch button {
    min-width: 0;
  }

  .mode-panel {
    margin-inline: -20px;
    padding: 34px 20px;
  }

  .mode-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-flow li {
    min-height: 0;
  }

  .service-flow span {
    margin-bottom: 38px;
  }

  .prototype-controls,
  .validation-plan,
  .confidence-model,
  .access-reflection {
    grid-template-columns: 1fr;
  }

  .prototype-principles {
    display: none;
  }

  .device-stage {
    min-height: 0;
    margin-inline: -20px;
    padding: 28px 14px;
  }

  .device-scale {
    --device-scale: 0.82;
  }

  .validation-plan {
    margin-inline: -20px;
    padding: 34px 20px;
  }

  .ai-role-grid,
  .responsible-ai-strip {
    grid-template-columns: 1fr;
  }

  .ai-role-grid article {
    min-height: 260px;
  }

  .ai-role-grid h3 {
    margin-top: 52px;
  }

  .confidence-levels article {
    grid-template-columns: 58px 80px 1fr;
    gap: 10px;
    padding-inline: 0;
  }

  .responsible-ai-strip article,
  .responsible-ai-strip article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .responsible-ai-strip b {
    margin-bottom: 24px;
  }

  .access-reflection {
    padding-bottom: 110px;
  }
}

/* Responsive hardening: portfolio index and resume */
@media (max-width: 1100px) {
  .content-ready.resume-page .resume-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 72px;
    padding: 72px clamp(32px, 6vw, 64px) 96px;
  }

  .content-ready.resume-page .resume-portrait {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 28px 44px;
    align-items: end;
    min-height: 0;
  }

  .content-ready.resume-page .resume-portrait > .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .content-ready.resume-page .resume-avatar {
    width: 100%;
    max-width: 320px;
  }

  .content-ready.resume-page .back-link {
    align-self: end;
    margin: 0 0 4px;
  }

  .content-ready.resume-page .resume-content {
    gap: 44px;
  }

  .content-ready.resume-page .resume-title {
    max-width: 100%;
    font-size: clamp(54px, 9vw, 82px);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 980px) {
  .content-ready .projects-section {
    padding-inline: clamp(28px, 5vw, 48px);
  }

  .content-ready .section-meta {
    margin-bottom: 44px;
  }

  .content-ready .project-row {
    grid-template-columns: 78px minmax(0, 1fr) 72px;
    gap: 20px;
    padding-block: 30px;
  }

  .content-ready .project-title {
    max-width: 100%;
    font-size: clamp(32px, 5.4vw, 48px);
    overflow-wrap: anywhere;
  }

  .content-ready .project-row:hover {
    padding-inline: 14px;
    transform: translateX(3px);
  }
}

@media (max-width: 760px) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
    padding-inline: 16px;
  }

  .site-nav .nav-center {
    display: none;
  }

  .site-nav .nav-right {
    grid-column: 2;
  }

  .site-nav .nav-left {
    grid-column: 1;
  }

  .content-ready .intro-section {
    gap: 28px;
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .content-ready .intro-orbital {
    width: min(100%, 390px);
    min-height: 330px;
    margin: 0 auto -26px;
    transform: scale(0.78);
    transform-origin: center top;
  }

  .content-ready .projects-section {
    padding: 64px 20px 80px;
  }

  .content-ready .section-meta {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 34px;
  }

  .content-ready .project-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "number year"
      "title title";
    gap: 14px 18px;
    padding: 25px 0 30px;
  }

  .content-ready .project-no {
    grid-area: number;
    justify-self: start;
  }

  .content-ready .project-year {
    display: block;
    grid-area: year;
    justify-self: end;
  }

  .content-ready .project-title {
    grid-area: title;
    font-size: clamp(30px, 10vw, 42px);
    line-height: 0.98;
  }

  .content-ready .project-row:hover {
    padding-inline: 0;
    border-radius: 0;
    transform: none;
  }

  .access-reflection {
    gap: 34px;
  }

  .access-reflection h2 {
    max-width: 12ch;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .access-reflection > div:last-child {
    max-width: none;
  }

  .case-visual-board {
    margin-top: 34px;
  }

  .case-visual-board figcaption {
    flex-direction: column;
    gap: 5px;
    padding-inline: 2px;
  }

  .content-ready.resume-page .resume-shell {
    gap: 50px;
    padding: 52px 20px 80px;
  }

  .content-ready.resume-page .resume-portrait {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .content-ready.resume-page .resume-avatar {
    width: min(100%, 320px);
    border-radius: 40px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  }

  .content-ready.resume-page .back-link {
    margin: 0;
  }

  .content-ready.resume-page .resume-content {
    gap: 34px;
  }

  .content-ready.resume-page .resume-block {
    gap: 15px;
    padding-bottom: 34px;
  }

  .content-ready.resume-page .resume-title {
    font-size: clamp(45px, 14vw, 64px);
    line-height: 0.94;
  }

  .content-ready.resume-page .resume-role {
    font-size: clamp(21px, 6vw, 28px);
  }

  .content-ready.resume-page .resume-copy,
  .content-ready.resume-page .resume-item p {
    font-size: 16px;
    line-height: 1.52;
  }

  .content-ready.resume-page .resume-item h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
}

/* Touch devices must never inherit the desktop card hover treatment. */
@media (hover: none), (pointer: coarse) {
  .process-cards::before {
    display: none;
  }

  .process-cards article:hover {
    transform: none;
    box-shadow: none;
  }

  .process-output {
    opacity: 0.82;
    transform: none;
  }

  .project-row:hover,
  .content-ready .project-row:hover {
    min-height: 132px;
    padding-inline: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    transform: none;
  }

  .project-row:hover::before {
    width: 0;
  }

  .project-row:hover .project-title,
  .content-ready .project-row:hover .project-title {
    width: auto;
    border-radius: 0;
  }

  .project-row:hover .project-link-hint,
  .project-row:focus-visible .project-link-hint,
  .hover-preview {
    display: none;
  }

  .project-row.is-featured {
    background: linear-gradient(90deg, rgba(30, 93, 232, 0.075), transparent 82%);
  }

}

@media (max-width: 420px) {
  .content-ready .intro-title-text {
    font-size: clamp(38px, 11.5vw, 48px);
  }

  .content-ready .intro-orbital {
    left: 50%;
    width: 390px;
    margin-left: -195px;
    transform: scale(0.72);
  }

  .content-ready .project-title {
    font-size: clamp(29px, 9.4vw, 38px);
  }

  .content-ready.resume-page .resume-title {
    font-size: clamp(43px, 13vw, 56px);
  }

  .skill-grid {
    gap: 8px;
  }

  .skill-grid b {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 11px;
  }
}

/* Shared page frame and portrait integration */
.content-ready .intro-section,
.content-ready .projects-section,
.content-ready .case-skeleton-section,
.content-ready .process-index,
.content-ready.resume-page .resume-shell,
.case-page .case-hero,
.case-page .case-band,
.case-page .case-process-nav {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

@media (min-width: 1441px) {
  .content-ready .intro-section {
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.72fr);
  }

  .content-ready .intro-title-text {
    font-size: 76px;
  }
}

.content-ready .intro-orbital {
  justify-self: center;
  width: min(100%, 520px);
  min-height: 0;
  aspect-ratio: 1;
  transform: none;
}

.content-ready .orbital-circle.blue {
  top: 6%;
  right: 1%;
  width: 44%;
  height: auto;
  aspect-ratio: 1;
}

.content-ready .orbital-circle.red {
  bottom: 8%;
  left: 1%;
  width: 36%;
  height: auto;
  aspect-ratio: 1;
}

.content-ready .orbital-square.yellow {
  top: 46%;
  right: 18%;
  width: 29%;
  height: auto;
  aspect-ratio: 1;
}

.content-ready .identity-card {
  display: block;
  width: 44%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
}

.content-ready .avatar-slot {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: inherit;
}

.content-ready .avatar-slot img,
.resume-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-ready .avatar-slot img {
  object-position: center 38%;
  transform: none;
}

.content-ready .avatar-slot::before,
.content-ready .avatar-slot::after,
.content-ready .avatar-slot > span,
.resume-avatar::before,
.resume-avatar::after {
  display: none;
}

.content-ready .avatar-lines {
  display: none;
}

.content-ready .identity-card .avatar-lines span:first-child {
  width: 72%;
  max-width: 120px;
  margin-inline: auto;
}

.content-ready .identity-card .avatar-lines span:last-child {
  width: 48%;
  max-width: 82px;
  margin-inline: auto;
}

.content-ready.resume-page .resume-avatar {
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  margin: 0;
  background: #e9e2da;
}

.content-ready.resume-page .resume-avatar img {
  object-position: center 38%;
}

@media (max-width: 1180px) {
  .content-ready .intro-orbital {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .content-ready .intro-orbital {
    left: auto;
    width: min(100%, 350px);
    min-height: 0;
    margin: 0 auto;
    transform: none;
  }

  .content-ready .identity-card {
    border-radius: 24px;
  }

  .content-ready.resume-page .resume-avatar {
    width: min(100%, 340px);
    max-width: none;
    border-radius: 38px;
  }

}

@media (max-width: 420px) {
  .content-ready .intro-orbital {
    left: auto;
    width: min(100%, 330px);
    margin: 0 auto;
    transform: none;
  }
}

/* Homepage type hierarchy: strong headings, regular reading copy. */
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .intro-title-text,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .project-title,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .case-title {
  font-weight: 800;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .intro-title-text {
  max-width: 760px;
  font-size: clamp(48px, 4vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .intro-title-text span {
  display: block;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .intro-title-text .hero-role {
  font-size: clamp(52px, 4.2vw, 72px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .intro-title-text .hero-positioning {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.1vw, 38px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

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

  .hover-preview,
  .preview-frame,
  .project-row,
  .project-row::before,
  .project-link-hint {
    transition: none;
  }

  .process-cards article,
  .process-output {
    transition: none;
  }
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .intro-body-text,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .case-summary,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .case-points p {
  font-weight: 400;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .eyebrow,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .hero-actions a,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .text-section-meta p,
body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .method-tags b {
  font-weight: 650;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .case-index-head b {
  font-weight: 700;
}

body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .case-title {
  max-width: none;
  font-size: clamp(36px, 2.8vw, 48px);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

@media (min-width: 761px) {
  body.content-ready:not(.case-page):not(.access-page):not(.resume-page) .case-title {
    white-space: nowrap;
  }
}
