:root {
  --paper: #fbfbf8;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #7b7b75;
  --line: #ecebe5;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
  --coral: #f1d5cf;
  --sage: #dbe8dc;
  --sky: #dbeaf0;
  --butter: #f5e7b9;
  --lilac: #e7def1;
  --radius: 8px;
  --page-pad: clamp(18px, 4vw, 56px);
  --font-sans: "MiSans Web", "MiSans", "PingFang SC", "Microsoft YaHei UI",
    "Microsoft YaHei", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "MiSans Web", "MiSans", "PingFang SC", "Microsoft YaHei UI",
    "Microsoft YaHei", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "MiSans Web";
  src:
    local("MiSans Regular"),
    local("MiSans-Regular"),
    url("./asset-061.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "MiSans Web";
  src:
    local("MiSans Medium"),
    local("MiSans-Medium"),
    url("./asset-060.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 251, 248, 0.96)),
    var(--paper);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-frame {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px var(--page-pad) 64px;
}

.top-strip {
  overflow: hidden;
  padding: 6px 0 18px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  padding: 12px 18px 12px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow:
    0 24px 70px rgba(17, 17, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px) saturate(130%);
  transform: translateX(-50%);
}

.site-brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
  color: #111111;
  text-decoration: none;
}

.site-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #f1dfd2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.site-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-brand-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.site-brand-text strong {
  color: #1b1b1b;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
}

.site-brand-text span {
  color: #777777;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.project-menu {
  position: relative;
}

.project-menu::after {
  position: absolute;
  top: 100%;
  right: -16px;
  width: min(430px, calc(100vw - 40px));
  height: 16px;
  content: "";
  pointer-events: none;
}

.project-menu.is-open::after,
.project-menu:hover::after,
.project-menu:focus-within::after {
  pointer-events: auto;
}

.project-menu-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 10px 4px;
  color: #343434;
  background: transparent;
  border: 0;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
}

.project-menu-toggle:focus {
  outline: none;
}

.project-menu-toggle:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.1);
}

.project-menu-chevron {
  display: inline-flex;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #777777;
  font-size: 0;
  line-height: 0;
}

.project-menu-chevron::before {
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.project-menu.is-open .project-menu-chevron,
.project-menu:hover .project-menu-chevron,
.project-menu:focus-within .project-menu-chevron {
  transform: none;
}

.project-menu.is-open .project-menu-chevron::before,
.project-menu:hover .project-menu-chevron::before,
.project-menu:focus-within .project-menu-chevron::before {
  transform: translateY(2px) rotate(225deg);
}

.project-menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: -16px;
  display: grid;
  gap: 8px;
  width: min(430px, calc(100vw - 40px));
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  visibility: hidden;
  backdrop-filter: blur(20px) saturate(120%);
}

.project-menu.is-open .project-menu-panel,
.project-menu:hover .project-menu-panel,
.project-menu:focus-within .project-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.project-menu-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 68px;
  padding: 8px;
  color: #111111;
  border-radius: 16px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.project-menu-item:hover,
.project-menu-item:focus-visible {
  background: rgba(17, 17, 17, 0.055);
  transform: translateY(-1px);
}

.project-menu-logo {
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: #111111;
  border-radius: 999px;
}

.project-menu-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-menu-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.project-menu-copy strong,
.project-menu-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-menu-copy strong {
  color: #111111;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
}

.project-menu-copy span {
  color: #6f6f6f;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: #050505;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.18);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
}

.strip-track {
  display: flex;
  gap: clamp(8px, 1.3vw, 14px);
  align-items: center;
  min-height: 34px;
}

.strip-token,
.avatar-slot,
.brand-mark,
.visual-chip {
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.strip-token {
  width: clamp(22px, 3vw, 34px);
  height: clamp(22px, 3vw, 34px);
  flex: 0 0 auto;
  border-radius: 999px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.9fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: center;
  min-height: clamp(420px, 68vh, 660px);
  padding: clamp(26px, 6vw, 76px) 0 clamp(34px, 6vw, 88px);
}

.hero-copy {
  min-width: 0;
}

.brand-lockup {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(20px, 4vw, 42px);
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #111111 0 46%, transparent 46%),
    linear-gradient(135deg, var(--sky), var(--coral));
}

.brand-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.headline-stack,
.body-lines,
.card-heading,
.section-heading {
  display: grid;
  gap: 10px;
}

.headline-stack {
  gap: clamp(8px, 1.4vw, 14px);
}

.hero-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 0.98;
}

.hero-title span {
  display: block;
}

.hero-description {
  width: min(100%, 500px);
  margin: 26px 0 0;
  color: #4e4e49;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
}

.body-lines {
  width: min(100%, 440px);
  margin-top: 24px;
}

.text-slot {
  display: block;
  width: 100%;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(100deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.025), rgba(17, 17, 17, 0.08)),
    var(--line);
  background-size: 180% 100%;
  animation: sheen 2.8s ease-in-out infinite;
}

.text-slot-xs {
  width: 112px;
  height: 10px;
}

.text-slot-tiny {
  width: min(62%, 220px);
  height: 10px;
}

.text-slot-sm {
  width: min(42%, 230px);
  height: clamp(18px, 2.4vw, 24px);
}

.text-slot-md {
  width: min(70%, 340px);
  height: clamp(24px, 3vw, 34px);
}

.text-slot-xl {
  width: min(100%, 620px);
  height: clamp(48px, 8vw, 92px);
}

.text-slot-short {
  width: min(78%, 460px);
}

.text-slot-mid {
  width: 76%;
}

.text-slot.is-filled {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  animation: none;
}

.hero-visual {
  position: relative;
  min-height: clamp(300px, 44vw, 520px);
}

.media-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.045) 0 1px, transparent 1px 18px),
    var(--sky);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.media-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-slot::after {
  position: absolute;
  inset: 28%;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
}

.media-slot[data-filled="true"]::after {
  display: none;
}

.media-slot-hero {
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-left: auto;
  background: #f6f7f6;
  border-radius: 42% 58% 52% 48% / 44% 46% 54% 56%;
}

.visual-chip {
  position: absolute;
  width: clamp(58px, 9vw, 92px);
  height: clamp(58px, 9vw, 92px);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.chip-one {
  right: min(5vw, 42px);
  bottom: 9%;
  background-color: var(--butter);
}

.chip-two {
  top: 11%;
  left: 5%;
  background-color: var(--coral);
}

.avatar-row {
  display: flex;
  align-items: center;
  margin-top: clamp(26px, 4vw, 40px);
}

.avatar-slot {
  width: clamp(38px, 5.4vw, 58px);
  height: clamp(38px, 5.4vw, 58px);
  margin-left: -8px;
  background: var(--surface);
  border: 3px solid var(--paper);
  border-radius: 50%;
}

.avatar-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.avatar-slot:first-child {
  margin-left: 0;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(8px, 3vw, 22px) 0 clamp(40px, 8vw, 96px);
}

.entry-card {
  min-height: 252px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.045);
}

.card-heading {
  margin-bottom: 24px;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-stack input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfbfb;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--radius);
  outline: none;
}

.form-stack input:focus {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.form-stack button {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  background: linear-gradient(180deg, #1b1b1b, #050505);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.showcase-section {
  padding: clamp(24px, 6vw, 76px) 0 28px;
}

.showcase-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.showcase-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.showcase-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.9rem);
  font-weight: 500;
  line-height: 0.95;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: clamp(18px, 3vw, 36px);
}

.showcase-card {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.09);
  color: inherit;
  outline: none;
  text-decoration: none;
}

.showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 420ms ease;
}

.showcase-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 0%,
    rgba(17, 17, 17, 0.42) 45%,
    rgba(17, 17, 17, 0.86) 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.showcase-card-copy {
  position: absolute;
  right: clamp(22px, 3vw, 34px);
  bottom: clamp(22px, 3vw, 34px);
  left: clamp(22px, 3vw, 34px);
  z-index: 1;
  color: #ffffff;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.showcase-card-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  font-weight: 500;
  line-height: 1.2;
}

.showcase-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
}

.showcase-card:hover img,
.showcase-card.is-active img,
.showcase-card:focus img,
.showcase-card:focus-visible img {
  transform: scale(1.045);
}

.showcase-card:hover::after,
.showcase-card.is-active::after,
.showcase-card:focus::after,
.showcase-card:focus-visible::after,
.showcase-card:hover .showcase-card-copy,
.showcase-card.is-active .showcase-card-copy,
.showcase-card:focus .showcase-card-copy,
.showcase-card:focus-visible .showcase-card-copy {
  opacity: 1;
}

.showcase-card:hover .showcase-card-copy,
.showcase-card.is-active .showcase-card-copy,
.showcase-card:focus .showcase-card-copy,
.showcase-card:focus-visible .showcase-card-copy {
  transform: translateY(0);
}

.showcase-card:focus {
  box-shadow:
    0 0 0 4px rgba(17, 17, 17, 0.12),
    0 18px 48px rgba(17, 17, 17, 0.09);
}

.showcase-card:focus-visible {
  box-shadow:
    0 0 0 4px rgba(17, 17, 17, 0.12),
    0 18px 48px rgba(17, 17, 17, 0.09);
}

.showcase-card-small {
  grid-column: span 5;
  aspect-ratio: 1.18;
}

.showcase-card-wide {
  grid-column: span 7;
  aspect-ratio: 1.8;
}

.showcase-card-featured {
  grid-column: span 12;
  aspect-ratio: 2.35;
  min-height: 360px;
}

.tone-coral {
  background-color: var(--coral);
}

.tone-sage {
  background-color: var(--sage);
}

.tone-sky {
  background-color: var(--sky);
}

.tone-butter {
  background-color: var(--butter);
}

.tone-lilac {
  background-color: var(--lilac);
}

.tone-ink {
  background-color: #161616;
}

.case-page {
  background: #f2f2f0;
}

.case-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1180px, calc(100% - 2 * var(--page-pad)));
  margin: 0 auto;
  padding: 22px 0;
}

.case-brand,
.case-links {
  display: flex;
  align-items: center;
}

.case-brand {
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.case-brand strong,
.case-brand small {
  display: block;
}

.case-brand strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.case-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.case-links {
  gap: 20px;
}

.case-links a,
.case-footer a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.case-links a:hover,
.case-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.case-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 42px var(--page-pad) 72px;
}

.case-hero {
  padding: clamp(48px, 8vw, 92px) 0 clamp(32px, 5vw, 58px);
}

.case-eyebrow,
.case-section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-hero h1 {
  width: min(100%, 940px);
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 7.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: clamp(34px, 6vw, 64px) 0;
}

.case-meta-grid div {
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

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

.case-meta-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.case-meta-grid strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
  line-height: 1.3;
}

.case-hero-media,
.case-wide-media,
.solution-block figure {
  margin: 0;
  overflow: hidden;
  background: #111111;
  border-radius: var(--radius);
}

.case-hero-media img,
.case-wide-media img,
.solution-block img {
  display: block;
  width: 100%;
  height: auto;
}

.case-section {
  padding: clamp(52px, 8vw, 96px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.case-section-two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
}

.case-section h2 {
  margin: 0 0 clamp(22px, 4vw, 34px);
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.case-richtext {
  display: grid;
  gap: 18px;
}

.case-richtext p,
.challenge-grid p,
.solution-block p {
  margin: 0;
  color: #4d4d49;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 500;
  line-height: 1.9;
}

.case-wide-media {
  background: transparent;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.challenge-grid article {
  min-height: 220px;
  padding: clamp(22px, 3.2vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: var(--radius);
}

.challenge-grid h3,
.solution-block h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
}

.solution-stack {
  display: grid;
  gap: clamp(26px, 5vw, 54px);
}

.solution-block {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.solution-block-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.solution-block-reverse div {
  order: 2;
}

.solution-block-reverse figure {
  order: 1;
}

.solution-block p + p {
  margin-top: 14px;
}

.result-section {
  padding-bottom: 42px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.result-grid article {
  min-height: 170px;
  padding: clamp(22px, 3.2vw, 34px);
  color: #ffffff;
  background: #111111;
  border-radius: var(--radius);
}

.result-grid strong,
.result-grid span {
  display: block;
}

.result-grid strong {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
}

.result-grid span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.case-footer {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.source-case-page {
  background: #ffffff;
  color: #171717;
}

.source-case-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  padding: 30px 0;
}

.source-case-brand,
.source-case-links a,
.source-case-footer a {
  color: #111111;
  text-decoration: none;
}

.source-case-brand strong,
.source-case-brand span {
  display: block;
}

.source-case-brand strong {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}

.source-case-brand span {
  margin-top: 5px;
  color: #777777;
  font-size: 0.86rem;
  font-weight: 500;
}

.source-case-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.source-case-links a,
.source-case-footer a {
  font-size: 0.92rem;
  font-weight: 500;
}

.source-case-main {
  padding-top: 72px;
  padding-bottom: 96px;
}

.source-case-hero {
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  padding: 96px 0 52px;
}

.source-case-hero h1 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.source-case-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.source-case-meta div {
  padding-top: 18px;
  border-top: 1px solid #d7d7d7;
}

.source-case-meta span,
.source-case-meta strong {
  display: block;
}

.source-case-meta span {
  color: #858585;
  font-size: 0.95rem;
  font-weight: 500;
}

.source-case-meta strong {
  margin-top: 8px;
  color: #111111;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.35;
}

.source-text-section {
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  padding: 86px 0;
}

.source-text-section h2 {
  margin: 0 0 28px;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.source-text-section p,
.source-text-section li {
  color: #5f5f5f;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.92;
}

.source-text-section p {
  margin: 0;
}

.source-text-section p + p {
  margin-top: 22px;
}

.source-text-section strong {
  color: #111111;
  font-weight: 500;
}

.source-challenge-list {
  display: grid;
  gap: 34px;
}

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

.source-evidence-grid article,
.source-status-note {
  padding: clamp(22px, 3vw, 34px);
  background: #f4f4f4;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}

.source-evidence-grid article h3 {
  margin: 0 0 12px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.45;
}

.source-evidence-grid article p,
.source-status-note p {
  margin: 0;
}

.source-status-note p + p {
  margin-top: 22px;
}

.hyper-signal-grid,
.hyper-proof-grid,
.hyper-before-after,
.hyper-entry-system,
.hyper-scenario-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.hyper-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hyper-signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hyper-signal-grid article {
  padding: clamp(22px, 3vw, 32px);
  background: #111111;
  border-radius: 8px;
}

.hyper-signal-grid strong,
.hyper-signal-grid span,
.hyper-signal-grid p {
  display: block;
}

.hyper-signal-grid strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 0.96;
}

.hyper-signal-grid span {
  margin-top: 16px;
  color: #e8e0bb;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.35;
}

.hyper-signal-grid p {
  margin: 12px 0 0;
  color: #bdbdbd;
  font-size: 0.96rem;
  line-height: 1.65;
}

.hyper-proof-grid article,
.hyper-before-after article,
.hyper-entry-system article,
.hyper-scenario-board article,
.hyper-citation-flow article,
.hyper-rag-ladder article {
  padding: clamp(22px, 3vw, 32px);
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.hyper-proof-grid article span,
.hyper-before-after article span,
.hyper-entry-system article span,
.hyper-scenario-board article span,
.hyper-citation-flow article span,
.hyper-rag-ladder article span {
  display: block;
  color: #8b8b8b;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hyper-proof-grid article h3,
.hyper-before-after article h3,
.hyper-entry-system article h3,
.hyper-scenario-board article h3,
.hyper-citation-flow article h3,
.hyper-rag-ladder article h3 {
  margin: 14px 0 10px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.45;
}

.hyper-proof-grid article p,
.hyper-entry-system article p,
.hyper-scenario-board article p,
.hyper-citation-flow article p,
.hyper-rag-ladder article p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.hyper-before-after article {
  background: #f4f4f4;
}

.hyper-before-after article:nth-child(2) {
  background: #f2f7f4;
  border-color: #d9eadf;
}

.hyper-before-after ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hyper-before-after li {
  position: relative;
  padding-left: 18px;
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.65;
}

.hyper-before-after li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #111111;
  border-radius: 50%;
}

.hyper-competitor-matrix {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 1.15fr 1.25fr;
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  background: #dcdcdc;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

.hyper-competitor-matrix > * {
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 2.2vw, 28px);
  background: #ffffff;
}

.hyper-matrix-head {
  color: #111111;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  background: #efefef;
}

.hyper-competitor-matrix article {
  background: #f7f7f7;
}

.hyper-competitor-matrix article strong,
.hyper-competitor-matrix article span {
  display: block;
}

.hyper-competitor-matrix article strong {
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
}

.hyper-competitor-matrix article span {
  margin-top: 8px;
  color: #777777;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hyper-competitor-matrix p {
  margin: 0;
  color: #5f5f5f;
  font-size: 0.98rem;
  line-height: 1.72;
}

.hyper-competitor-matrix > p {
  margin-top: 0 !important;
}

.hyper-competitor-matrix p strong {
  color: #111111;
}

.hyper-opportunity-strip {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 34px);
  color: #111111;
  background: #f1f4ee;
  border: 1px solid #dce7d3;
  border-radius: 8px;
}

.hyper-opportunity-strip span {
  color: #6d7c61;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.hyper-opportunity-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
}

.hyper-flow-map,
.hyper-citation-flow,
.hyper-rag-ladder {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hyper-citation-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hyper-rag-ladder {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hyper-flow-map article,
.hyper-citation-flow article,
.hyper-rag-ladder article {
  position: relative;
}

.hyper-flow-map article {
  padding: 22px;
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.hyper-flow-map article:not(:last-child)::after,
.hyper-citation-flow article:not(:last-child)::after,
.hyper-rag-ladder article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 1;
  width: 20px;
  height: 20px;
  content: "→";
  color: #7a7a7a;
  font-size: 0.92rem;
  line-height: 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 999px;
  transform: translateY(-50%);
}

.hyper-flow-map article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 500;
  background: #e9f0e3;
  border-radius: 999px;
}

.hyper-flow-map article h3 {
  margin: 16px 0 8px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.36;
}

.hyper-flow-map article p {
  margin: 0;
  color: #5f5f5f;
  font-size: 0.96rem;
  line-height: 1.65;
}

.hyper-citation-anatomy {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 34px;
  padding: clamp(22px, 3vw, 36px);
  background: #161616;
  border-radius: 12px;
}

.hyper-answer-card,
.hyper-source-drawer {
  padding: clamp(20px, 3vw, 30px);
  background: #202020;
  border: 1px solid #393939;
  border-radius: 8px;
}

.hyper-answer-question,
.hyper-process-line,
.hyper-answer-text,
.hyper-source-drawer p {
  margin: 0;
  color: #b9b9b9;
  font-size: 0.96rem;
  line-height: 1.7;
}

.hyper-answer-question {
  color: #eeeeee;
  font-weight: 500;
}

.hyper-process-line {
  margin-top: 16px;
  padding: 10px 12px;
  color: #a9b89d;
  background: #283026;
  border-radius: 6px;
}

.hyper-answer-text {
  margin-top: 18px;
}

.hyper-answer-text span {
  display: inline-block;
  padding: 1px 8px;
  color: #111111;
  background: #ebe6c8;
  border-radius: 999px;
}

.hyper-file-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hyper-file-badges button {
  appearance: none;
  padding: 7px 11px;
  color: #f2f2f2;
  font: inherit;
  font-size: 0.82rem;
  background: #303030;
  border: 1px solid #4a4a4a;
  border-radius: 999px;
}

.hyper-source-drawer span {
  display: block;
  color: #8d8d8d;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.hyper-source-drawer article {
  margin-top: 14px;
  padding: 14px;
  background: #292929;
  border: 1px solid #3d3d3d;
  border-radius: 7px;
}

.hyper-source-drawer strong {
  display: block;
  color: #f4f4f4;
  font-size: 0.94rem;
  font-weight: 500;
}

.hyper-entry-system {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hyper-scenario-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hyper-ia-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding: clamp(24px, 3vw, 42px);
  background: #f3f3f3;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
}

.hyper-ia-root {
  grid-column: 1 / -1;
  padding: 22px;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

.hyper-ia-map section {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.hyper-ia-map section h3 {
  margin: 0 0 16px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
}

.hyper-ia-map section div {
  padding: 10px 12px;
  color: #5f5f5f;
  font-size: 0.92rem;
  line-height: 1.45;
  background: #f6f6f6;
  border-radius: 6px;
}

.hyper-ia-map section div + div {
  margin-top: 8px;
}

.hyper-hifi-section {
  width: min(1320px, calc(100% - 72px));
  border-top: 1px solid #e7e7e7;
}

.hyper-hifi-section > .zip-artifact-kicker,
.hyper-hifi-section > h2,
.hyper-hifi-section > .hyper-hifi-lead {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.hyper-hifi-lead {
  color: #555555;
}

.hyper-hifi-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.hyper-hifi-principles article,
.hyper-before-after-mini article,
.hyper-annotation-list article {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.hyper-hifi-principles article {
  padding: clamp(22px, 3vw, 30px);
}

.hyper-hifi-principles span,
.hyper-hifi-copy > span,
.hyper-before-after-mini span {
  display: block;
  color: #8a8a8a;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hyper-hifi-principles strong {
  display: block;
  margin-top: 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.35;
}

.hyper-hifi-principles p {
  margin-top: 12px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.68;
}

.hyper-hifi-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
  padding: clamp(56px, 7vw, 92px) 0;
  border-top: 1px solid #e5e5e5;
}

.hyper-hifi-case:first-of-type {
  margin-top: 64px;
}

.hyper-hifi-case.is-reversed {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.hyper-hifi-case.is-reversed .hyper-hifi-visual {
  order: -1;
}

.hyper-hifi-copy {
  position: sticky;
  top: 118px;
}

.hyper-hifi-copy h3 {
  margin: 16px 0 20px;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.hyper-hifi-copy p {
  color: #5f5f5f;
  font-size: 1.04rem;
  line-height: 1.78;
}

.hyper-decision-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hyper-decision-list li {
  display: grid;
  gap: 8px;
  padding: 16px 0 16px 18px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.62;
  border-left: 2px solid #111111;
}

.hyper-decision-list strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.hyper-decision-list span {
  color: #666666;
}

.hyper-before-after-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hyper-before-after-mini article {
  padding: 18px;
}

.hyper-before-after-mini article:last-child {
  border-color: #111111;
}

.hyper-before-after-mini strong {
  display: block;
  margin-top: 10px;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.hyper-before-after-mini p {
  margin-top: 12px;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.62;
}

.hyper-hifi-visual {
  min-width: 0;
}

.hyper-hifi-stack {
  display: grid;
  gap: 18px;
}

.hyper-annotated-board {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.hyper-annotated-board img {
  display: block;
  width: 100%;
  height: auto;
  background: #252525;
  border-radius: 7px;
}

.hyper-pin {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #ebe6c8;
  border: 2px solid #111111;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.hyper-pin::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(235, 230, 200, 0.55);
  border-radius: inherit;
}

.hyper-annotation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.hyper-annotation-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  min-width: 0;
  padding: 15px;
}

.hyper-annotation-list article span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #ebe6c8;
  border: 1px solid #111111;
  border-radius: 50%;
}

.hyper-annotation-list strong {
  color: #111111;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.38;
}

.hyper-annotation-list p {
  grid-column: 2;
  margin: 0;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.62;
}

@media (max-width: 1040px) {
  .hyper-hifi-section {
    width: min(100% - 48px, 980px);
  }

  .hyper-hifi-principles,
  .hyper-hifi-case,
  .hyper-hifi-case.is-reversed,
  .hyper-annotation-list,
  .hyper-before-after-mini {
    grid-template-columns: 1fr;
  }

  .hyper-hifi-case.is-reversed .hyper-hifi-visual {
    order: 0;
  }

  .hyper-hifi-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .hyper-hifi-section {
    width: min(100% - 32px, 980px);
  }

  .hyper-annotated-board {
    overflow-x: auto;
  }

  .hyper-annotated-board img {
    min-width: 760px;
  }

  .hyper-pin {
    display: none;
  }
}

.zip-artifact-section {
  border-top: 1px solid #e3e3e3;
}

.zip-foundation-section {
  border-top: 1px solid #e9e9e9;
}

.zip-artifact-kicker {
  margin-bottom: 14px;
  color: #8b8b8b;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zip-framing-grid,
.zip-recovery-grid,
.zip-validation-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.zip-framing-grid article,
.zip-recovery-grid article,
.zip-validation-board article,
.zip-success-criteria,
.zip-card-spec {
  padding: clamp(22px, 3vw, 34px);
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.zip-framing-grid article span,
.zip-recovery-grid article span {
  display: block;
  color: #8c8c8c;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zip-framing-grid article h3,
.zip-success-criteria h3,
.zip-recovery-grid article h3,
.zip-validation-board article h3,
.zip-card-spec h3 {
  margin: 12px 0 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.45;
}

.zip-framing-grid article p,
.zip-recovery-grid article p {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.72;
}

.zip-success-criteria {
  margin-top: 18px;
  background: #111111;
  border-color: #111111;
}

.zip-success-criteria h3 {
  margin-top: 0;
  color: #ffffff;
}

.zip-success-criteria ul,
.zip-validation-board ul,
.zip-card-spec ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zip-success-criteria li,
.zip-validation-board li,
.zip-card-spec li {
  position: relative;
  padding-left: 18px;
  color: #d7d7d7;
  font-size: 1rem;
  line-height: 1.72;
}

.zip-success-criteria li::before,
.zip-validation-board li::before,
.zip-card-spec li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.zip-success-criteria strong {
  color: #ffffff;
}

.zip-journey-map,
.zip-state-table {
  display: grid;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.zip-journey-row,
.zip-state-row {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1.45fr 1.25fr;
  min-width: 0;
  border-top: 1px solid #e7e7e7;
}

.zip-journey-row:first-child,
.zip-state-row:first-child {
  border-top: 0;
}

.zip-journey-row > *,
.zip-state-row > * {
  min-width: 0;
  padding: 16px;
  color: #626262;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
  border-left: 1px solid #e7e7e7;
}

.zip-journey-row > *:first-child,
.zip-state-row > *:first-child {
  border-left: 0;
}

.zip-journey-row strong,
.zip-state-row strong {
  color: #111111;
  font-weight: 500;
}

.zip-journey-head,
.zip-state-head {
  background: #111111;
}

.zip-journey-head > *,
.zip-state-head > * {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
  border-color: #2b2b2b;
}

.nexa-journey-map {
  display: grid;
  grid-template-columns: 112px repeat(6, minmax(0, 1fr));
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.nexa-journey-map > * {
  min-width: 0;
  min-height: 104px;
  padding: 16px;
  color: #636363;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
  background: #ffffff;
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.nexa-journey-map > *:nth-child(-n + 7) {
  border-top: 0;
}

.nexa-journey-map > *:nth-child(7n + 1) {
  border-left: 0;
}

.nexa-journey-label {
  display: grid;
  place-items: center;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  background: #f4f4f4;
}

.nexa-journey-stage {
  background: #111111;
}

.nexa-journey-stage strong,
.nexa-journey-stage span {
  display: block;
}

.nexa-journey-stage strong {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
}

.nexa-journey-stage span {
  margin-top: 10px;
  color: #bcbcbc;
  font-size: 0.86rem;
  line-height: 1.45;
}

.nexa-ia-diagram {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.nexa-ia-root,
.nexa-ia-crosscut {
  grid-column: 1 / -1;
}

.nexa-ia-root {
  display: grid;
  min-height: 76px;
  place-items: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 500;
  text-align: center;
  background: #111111;
  border-radius: 8px;
}

.nexa-ia-column {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.nexa-ia-column::before {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 14px;
  content: "";
  background: #cfcfcf;
}

.nexa-ia-column h3 {
  margin: 0 0 6px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.nexa-ia-column-primary {
  background: #111111;
  border-color: #111111;
}

.nexa-ia-column-primary h3 {
  color: #ffffff;
}

.nexa-ia-node {
  padding: 12px 14px;
  color: #4f4f4f;
  font-size: 0.92rem;
  line-height: 1.35;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 7px;
}

.nexa-ia-column-primary .nexa-ia-node {
  color: #ffffff;
  background: #222222;
  border-color: #343434;
}

.nexa-ia-crosscut {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.nexa-ia-crosscut span {
  color: #777777;
  font-size: 0.92rem;
  font-weight: 500;
}

.nexa-ia-crosscut strong {
  padding: 8px 12px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 999px;
}

.nexa-hifi-section {
  width: min(1320px, calc(100% - 72px));
  border-top: 1px solid #e7e7e7;
}

.nexa-hifi-section > .zip-artifact-kicker,
.nexa-hifi-section > h2,
.nexa-hifi-section > .nexa-hifi-lead {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.nexa-hifi-lead {
  color: #555555;
}

.nexa-hifi-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.nexa-hifi-process article {
  min-width: 0;
  padding: 24px;
  background: #ffffff;
  border-left: 1px solid #e8e8e8;
}

.nexa-hifi-process article:first-child {
  border-left: 0;
}

.nexa-hifi-process span,
.nexa-hifi-copy > span,
.nexa-ab-comparison span,
.nexa-state-system span {
  display: block;
  color: #8a8a8a;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nexa-hifi-process strong {
  display: block;
  margin-top: 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
}

.nexa-hifi-process p {
  margin-top: 12px;
  color: #666666;
  font-size: 0.94rem;
  line-height: 1.62;
}

.nexa-hifi-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
  padding: clamp(56px, 7vw, 92px) 0;
  border-top: 1px solid #e5e5e5;
}

.nexa-hifi-case:first-of-type {
  margin-top: 64px;
}

.nexa-hifi-case.is-reversed {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.nexa-hifi-case.is-reversed .nexa-hifi-visual {
  order: -1;
}

.nexa-hifi-case.is-compact {
  padding-bottom: 0;
}

.nexa-hifi-copy {
  position: sticky;
  top: 118px;
}

.nexa-hifi-copy h3 {
  margin: 16px 0 20px;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.nexa-hifi-copy p {
  color: #5f5f5f;
  font-size: 1.04rem;
  line-height: 1.78;
}

.nexa-decision-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.nexa-decision-list li {
  display: grid;
  gap: 8px;
  padding: 16px 0 16px 18px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.62;
  border-left: 2px solid #111111;
}

.nexa-decision-list strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.nexa-decision-list span {
  color: #666666;
}

.nexa-hifi-visual {
  min-width: 0;
}

.nexa-hifi-stack {
  display: grid;
  gap: 18px;
}

.nexa-annotated-board {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.nexa-annotated-board img {
  display: block;
  width: 100%;
  height: auto;
  background: #eeeeee;
  border-radius: 7px;
}

.nexa-annotated-board-dark img {
  background: #8d8d8d;
}

.nexa-pin {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #111111;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.nexa-pin::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: inherit;
}

.nexa-annotation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.nexa-annotation-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  min-width: 0;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.nexa-annotation-list article span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #111111;
  border-radius: 50%;
}

.nexa-annotation-list strong {
  color: #111111;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.38;
}

.nexa-annotation-list p {
  grid-column: 2;
  margin: 0;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.62;
}

.nexa-ab-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.nexa-ab-comparison article {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.nexa-ab-comparison article:last-child {
  border-color: #111111;
}

.nexa-ab-comparison strong {
  display: block;
  margin-top: 10px;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.nexa-ab-comparison p {
  margin-top: 12px;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.62;
}

.nexa-mini-flow {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.nexa-mini-flow i {
  display: block;
  padding: 9px 11px;
  color: #333333;
  font-style: normal;
  font-size: 0.84rem;
  line-height: 1.2;
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  border-radius: 7px;
}

.nexa-state-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.nexa-state-system article {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.nexa-state-system strong {
  display: block;
  margin-top: 10px;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
}

.nexa-state-system p {
  margin-top: 8px;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .nexa-hifi-section {
    width: min(100% - 48px, 980px);
  }

  .nexa-hifi-process,
  .nexa-hifi-case,
  .nexa-hifi-case.is-reversed,
  .nexa-annotation-list,
  .nexa-ab-comparison,
  .nexa-state-system {
    grid-template-columns: 1fr;
  }

  .nexa-hifi-case.is-reversed .nexa-hifi-visual {
    order: 0;
  }

  .nexa-hifi-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .nexa-hifi-section {
    width: min(100% - 32px, 980px);
  }

  .nexa-hifi-process article {
    border-top: 1px solid #e8e8e8;
    border-left: 0;
  }

  .nexa-hifi-process article:first-child {
    border-top: 0;
  }

  .nexa-annotated-board {
    overflow-x: auto;
  }

  .nexa-annotated-board img {
    min-width: 760px;
  }

  .nexa-pin {
    display: none;
  }
}

.xmodel-foundation-section,
.xmodel-artifact-section {
  border-top: 1px solid #e9e9e9;
}

.xmodel-audience-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.56fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 36px;
}

.xmodel-audience-map article,
.xmodel-bridge,
.xmodel-taxonomy-grid article,
.xmodel-trust-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.xmodel-audience-map article span,
.xmodel-taxonomy-grid article span,
.xmodel-trust-grid article span {
  display: block;
  color: #8c8c8c;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.xmodel-audience-map article h3,
.xmodel-trust-grid article h3,
.xmodel-container-panel h3 {
  margin: 12px 0 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.45;
}

.xmodel-audience-map article ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xmodel-audience-map article li {
  color: #666666;
  font-size: 1rem;
  line-height: 1.72;
}

.xmodel-bridge {
  display: grid;
  align-content: center;
  gap: 10px;
  color: #ffffff;
  text-align: center;
  background: #111111;
  border-color: #111111;
}

.xmodel-bridge strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
}

.xmodel-bridge span {
  display: block;
  padding: 9px 10px;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 500;
  background: #ffffff;
  border-radius: 999px;
}

.xmodel-ia-diagram {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.xmodel-ia-root {
  grid-column: 1 / -1;
  display: grid;
  min-height: 76px;
  place-items: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 500;
  text-align: center;
  background: #111111;
  border-radius: 8px;
}

.xmodel-ia-diagram section {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.xmodel-ia-diagram section h3 {
  margin: 0 0 6px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.xmodel-ia-diagram section div {
  padding: 12px 14px;
  color: #4f4f4f;
  font-size: 0.92rem;
  line-height: 1.35;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 7px;
}

.xmodel-taxonomy-grid,
.xmodel-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.xmodel-taxonomy-grid article {
  display: grid;
  align-content: start;
}

.xmodel-taxonomy-grid article strong {
  display: block;
  margin-top: 12px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
}

.xmodel-taxonomy-grid article p,
.xmodel-trust-grid article p,
.xmodel-container-panel p,
.xmodel-journey-map article p {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.72;
}

.xmodel-taxonomy-grid article p {
  margin-top: 12px;
}

.xmodel-journey-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.xmodel-journey-map article {
  display: grid;
  min-height: 310px;
  align-content: start;
  padding: 22px;
  background: #111111;
  border: 1px solid #292929;
  border-radius: 8px;
}

.xmodel-journey-map article span {
  color: #8c8c8c;
  font-size: 0.78rem;
  font-weight: 500;
}

.xmodel-journey-map article h3 {
  margin: 12px 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.42;
}

.xmodel-journey-map article p {
  color: #d5d5d5;
}

.xmodel-journey-map article strong {
  align-self: end;
  margin-top: 18px;
  padding-top: 14px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 500;
  border-top: 1px solid #333333;
}

.xmodel-container-diagram {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "task task input input output output"
    "params params input input output output"
    "example example example example example example";
  gap: 14px;
  margin-top: 36px;
}

.xmodel-container-panel {
  min-height: 220px;
  padding: clamp(22px, 3vw, 32px);
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.xmodel-container-panel span {
  display: block;
  color: #8c8c8c;
  font-size: 0.78rem;
  font-weight: 500;
}

.xmodel-container-task {
  grid-area: task;
}

.xmodel-container-input {
  grid-area: input;
  background: #111111;
  border-color: #111111;
}

.xmodel-container-output {
  grid-area: output;
  background: #111111;
  border-color: #111111;
}

.xmodel-container-params {
  grid-area: params;
}

.xmodel-container-example {
  grid-area: example;
  min-height: 160px;
}

.xmodel-container-input h3,
.xmodel-container-output h3 {
  color: #ffffff;
}

.xmodel-container-input p,
.xmodel-container-output p {
  color: #d7d7d7;
}

.xmodel-trust-grid {
  margin-top: 36px;
}

.xmodel-hifi-section {
  width: min(1320px, calc(100% - 72px));
  border-top: 1px solid #e7e7e7;
}

.xmodel-hifi-section > .zip-artifact-kicker,
.xmodel-hifi-section > h2,
.xmodel-hifi-section > .xmodel-hifi-lead {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.xmodel-hifi-lead {
  color: #555555;
}

.xmodel-validation-section {
  padding-bottom: 112px;
}

.xmodel-validation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  margin-top: 46px;
  border-top: 1px solid #dedede;
}

.xmodel-validation-label {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.xmodel-validation-checklist {
  padding-top: 24px;
}

.xmodel-validation-checklist article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid #e4e4e4;
}

.xmodel-validation-checklist article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #111111;
  border-radius: 50%;
}

.xmodel-validation-checklist h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.45;
}

.xmodel-validation-checklist article p {
  margin-top: 9px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.68;
}

.xmodel-release-signals {
  padding-top: 24px;
}

.xmodel-release-signals > div {
  display: grid;
  margin-top: 18px;
  overflow: hidden;
  background: #111111;
  border: 1px solid #111111;
  border-radius: 8px;
}

.xmodel-release-signals article {
  display: grid;
  grid-template-columns: minmax(118px, 0.68fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  border-top: 1px solid #2d2d2d;
}

.xmodel-release-signals article:first-child {
  border-top: 0;
}

.xmodel-release-signals strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.6vw, 3.45rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.xmodel-release-signals span {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.xmodel-release-signals article p {
  margin: 8px 0 0;
  color: #d7d7d7;
  font-size: 0.92rem;
  line-height: 1.58;
}

.xmodel-hifi-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.xmodel-hifi-principles article,
.xmodel-before-after-mini article,
.xmodel-annotation-list article {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.xmodel-hifi-principles article {
  padding: clamp(22px, 3vw, 30px);
}

.xmodel-hifi-principles span,
.xmodel-hifi-copy > span,
.xmodel-before-after-mini span {
  display: block;
  color: #8a8a8a;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xmodel-hifi-principles strong {
  display: block;
  margin-top: 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.35;
}

.xmodel-hifi-principles p {
  margin-top: 12px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.68;
}

.xmodel-hifi-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
  padding: clamp(56px, 7vw, 92px) 0;
  border-top: 1px solid #e5e5e5;
}

.xmodel-hifi-case:first-of-type {
  margin-top: 64px;
}

.xmodel-hifi-case.is-reversed {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.xmodel-hifi-case.is-reversed .xmodel-hifi-visual {
  order: -1;
}

.xmodel-hifi-copy {
  position: sticky;
  top: 118px;
}

.xmodel-hifi-copy h3 {
  margin: 16px 0 20px;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.xmodel-hifi-copy p {
  color: #5f5f5f;
  font-size: 1.04rem;
  line-height: 1.78;
}

.xmodel-decision-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.xmodel-decision-list li {
  display: grid;
  gap: 8px;
  padding: 16px 0 16px 18px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.62;
  border-left: 2px solid #111111;
}

.xmodel-decision-list strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.xmodel-decision-list span {
  color: #666666;
}

.xmodel-before-after-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.xmodel-before-after-mini article {
  padding: 18px;
}

.xmodel-before-after-mini article:last-child {
  border-color: #111111;
}

.xmodel-before-after-mini strong {
  display: block;
  margin-top: 10px;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.xmodel-before-after-mini p {
  margin-top: 12px;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.62;
}

.xmodel-hifi-visual {
  min-width: 0;
}

.xmodel-annotated-board {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.xmodel-annotated-board img {
  display: block;
  width: 100%;
  height: auto;
  background: #111111;
  border-radius: 7px;
}

.xmodel-annotated-board-dark img {
  background: #111111;
}

.xmodel-pin {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #111111;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.xmodel-pin::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.26);
  border-radius: inherit;
}

.xmodel-annotation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.xmodel-annotation-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  min-width: 0;
  padding: 15px;
}

.xmodel-annotation-list article span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  background: #111111;
  border-radius: 50%;
}

.xmodel-annotation-list strong {
  color: #111111;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.38;
}

.xmodel-annotation-list p {
  grid-column: 2;
  margin: 0;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.62;
}

@media (max-width: 1040px) {
  .xmodel-hifi-section {
    width: min(100% - 48px, 980px);
  }

  .xmodel-hifi-principles,
  .xmodel-hifi-case,
  .xmodel-hifi-case.is-reversed,
  .xmodel-annotation-list,
  .xmodel-before-after-mini,
  .xmodel-validation-layout {
    grid-template-columns: 1fr;
  }

  .xmodel-hifi-case.is-reversed .xmodel-hifi-visual {
    order: 0;
  }

  .xmodel-hifi-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .xmodel-hifi-section {
    width: min(100% - 32px, 980px);
  }

  .xmodel-annotated-board {
    overflow-x: auto;
  }

  .xmodel-annotated-board img {
    min-width: 760px;
  }

  .xmodel-pin {
    display: none;
  }
}

.tatto-proof-section {
  border-top: 1px solid #e9e9e9;
}

.tatto-evidence-group {
  margin-top: 24px;
  padding: 0 0 82px;
  background: #ffffff;
  border-top: 1px solid #e7e7e7;
  border-bottom: 0;
}

.tatto-evidence-group > .source-text-section {
  padding-top: 76px;
  padding-bottom: 0;
  border-top: 0;
}

.tatto-evidence-group > .source-image-panel {
  margin-top: 48px;
  margin-bottom: 0;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
}

.tatto-evidence-group > .tatto-secondary-evidence {
  margin-top: 20px;
}

.tatto-metric-grid,
.tatto-opportunity-map,
.tatto-model-scorecard,
.tatto-growth-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.tatto-metric-grid article,
.tatto-opportunity-map article,
.tatto-model-scorecard article,
.tatto-growth-loop article {
  padding: clamp(22px, 3vw, 34px);
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.tatto-metric-grid article {
  display: grid;
  grid-template-rows: minmax(52px, auto) auto 1fr;
  align-content: start;
  min-height: 230px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(20px, 2.3vw, 30px);
  background: #111111;
  border-color: #111111;
}

.tatto-metric-grid strong {
  display: block;
  align-self: start;
  color: #ffffff;
  font-family: var(--font-display);
  min-width: 0;
  max-width: 100%;
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 0.98;
  white-space: nowrap;
}

.tatto-metric-grid span {
  display: block;
  margin-top: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.tatto-metric-grid p {
  min-width: 0;
  margin: 16px 0 0;
  color: #dedede;
  font-size: 0.98rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.tatto-opportunity-map article span,
.tatto-model-scorecard article span,
.tatto-growth-loop article span,
.tatto-workflow article span,
.tatto-iteration-loop article span {
  display: block;
  color: #8c8c8c;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.tatto-opportunity-map article h3,
.tatto-model-scorecard article h3,
.tatto-growth-loop article h3,
.tatto-workflow article h3,
.tatto-iteration-loop article h3 {
  margin: 12px 0 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.45;
}

.tatto-opportunity-map article p,
.tatto-model-scorecard article p,
.tatto-growth-loop article p,
.tatto-workflow article p,
.tatto-iteration-loop article p {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.72;
}

.tatto-journey-map {
  display: grid;
  grid-template-columns: 112px repeat(6, minmax(0, 1fr));
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.tatto-journey-map > * {
  min-width: 0;
  min-height: 118px;
  padding: 16px;
  color: #636363;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
  background: #ffffff;
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.tatto-journey-map > *:nth-child(-n + 7) {
  border-top: 0;
}

.tatto-journey-map > *:nth-child(7n + 1) {
  border-left: 0;
}

.tatto-journey-label {
  display: grid;
  place-items: center;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  background: #f4f4f4;
}

.tatto-journey-map article {
  background: #111111;
}

.tatto-journey-map article strong,
.tatto-journey-map article span {
  display: block;
}

.tatto-journey-map article strong {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
}

.tatto-journey-map article span {
  margin-top: 10px;
  color: #bcbcbc;
  font-size: 0.86rem;
  line-height: 1.45;
}

.tatto-model-scorecard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tatto-workflow,
.tatto-iteration-loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.tatto-workflow article,
.tatto-iteration-loop article {
  min-height: 250px;
  padding: 22px;
  background: #111111;
  border: 1px solid #292929;
  border-radius: 8px;
}

.tatto-workflow article h3,
.tatto-iteration-loop article h3 {
  color: #ffffff;
}

.tatto-workflow article p,
.tatto-iteration-loop article p {
  color: #d5d5d5;
}

.tatto-product-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.tatto-product-root {
  grid-column: 1 / -1;
  display: grid;
  min-height: 76px;
  place-items: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 500;
  text-align: center;
  background: #111111;
  border-radius: 8px;
}

.tatto-product-map section {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.tatto-product-map section h3 {
  margin: 0 0 6px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.tatto-product-map section div {
  padding: 12px 14px;
  color: #4f4f4f;
  font-size: 0.92rem;
  line-height: 1.35;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 7px;
}

.tatto-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1380px, calc(100% - 72px));
  margin: 58px auto 96px;
}

.tatto-image-grid .source-image-panel {
  width: 100%;
  margin: 0;
}

.tatto-growth-loop article {
  position: relative;
}

.tatto-growth-loop article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  background: #f7f7f7;
  border-top: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  transform: translateY(-50%) rotate(45deg);
}

.tatto-flow-breakdown {
  width: min(1180px, calc(100% - 72px));
  padding-top: 24px;
}

.tatto-flow-breakdown > .zip-artifact-kicker,
.tatto-flow-breakdown > h2,
.tatto-flow-breakdown > p,
.tatto-interface-section > .zip-artifact-kicker,
.tatto-interface-section > h2,
.tatto-interface-section > p {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.tatto-flow-group > .tatto-flow-breakdown {
  padding-top: 72px;
  padding-bottom: 0;
}

.tatto-flow-analysis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.tatto-flow-analysis article {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  background: #111111;
  border-radius: 8px;
}

.tatto-flow-analysis article > span,
.tatto-interface-case-copy > span,
.tatto-structure-evolution > div > span {
  display: block;
  color: #8a8a8a;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.tatto-flow-analysis h3 {
  margin: 14px 0 16px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.38;
}

.tatto-flow-analysis p,
.tatto-flow-analysis li {
  color: #c9c9c9;
  font-size: 0.94rem;
  line-height: 1.68;
}

.tatto-flow-analysis ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.tatto-flow-analysis li + li {
  margin-top: 8px;
}

.tatto-interface-section {
  width: min(1180px, calc(100% - 72px));
  padding-top: 104px;
}

.tatto-interface-section > .zip-artifact-kicker {
  color: #5d5d5d;
}

.tatto-interface-section > p {
  color: #3f3f3f;
}

.tatto-structure-evolution {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 48px;
}

.tatto-structure-evolution > div:not(.tatto-evolution-arrow):not(.is-final) {
  padding: clamp(24px, 3vw, 34px);
  background: #fafafa;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
}

.tatto-structure-evolution > div.is-final {
  padding: clamp(24px, 3vw, 34px);
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

.tatto-structure-evolution h3 {
  margin: 12px 0 20px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
}

.tatto-structure-evolution .is-final h3 {
  color: #ffffff;
}

.tatto-structure-evolution > div > span {
  display: block;
  color: #5d5d5d;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.tatto-structure-evolution .is-final > span {
  color: #dedede;
}

.tatto-structure-evolution ol {
  margin: 0;
  padding-left: 20px;
}

.tatto-structure-evolution li {
  color: #3f3f3f;
  font-size: 0.96rem;
  line-height: 1.65;
}

.tatto-structure-evolution .is-final li {
  color: #ededed;
}

.tatto-structure-evolution p {
  margin-top: 22px;
  color: #505050;
  font-size: 0.94rem;
  line-height: 1.7;
}

.tatto-structure-evolution .is-final p {
  color: #dedede;
}

.tatto-evolution-arrow {
  display: grid;
  place-items: center;
  color: #111111;
  font-size: 1.8rem;
}

.tatto-interface-case {
  padding: 104px 0 0;
  border-top: 1px solid #e2e2e2;
  margin-top: 104px;
}

.tatto-interface-case-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  column-gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.tatto-interface-case-copy > span {
  grid-column: 1;
  color: #8a8a8a;
}

.tatto-interface-case-copy > h3 {
  grid-column: 1;
  margin: 14px 0 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 500;
  line-height: 1.22;
}

.tatto-interface-case-copy > p,
.tatto-interface-case-copy > dl,
.tatto-interface-case-copy > .tatto-system-points {
  grid-column: 2;
}

.tatto-interface-case-copy > p {
  grid-row: 1 / span 2;
  color: #4f4f4f;
  font-size: 1.05rem;
  line-height: 1.78;
}

.tatto-interface-case-copy dl {
  margin: 30px 0 0;
}

.tatto-interface-case-copy dl > div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid #e2e2e2;
}

.tatto-interface-case-copy dt {
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.tatto-interface-case-copy dd {
  margin: 0;
  color: #6a6a6a;
  font-size: 0.92rem;
  line-height: 1.62;
}

.tatto-interface-figure {
  margin: 42px 0 0;
  overflow: hidden;
  background: #f1f1f1;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}

.tatto-interface-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.tatto-system-points {
  margin: 28px 0 0;
  padding-left: 18px;
}

.tatto-system-points li {
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.7;
}

.tatto-system-points li + li {
  margin-top: 8px;
}

.zip-ia-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.zip-ia-map article {
  min-height: 190px;
  padding: 22px;
  background: #111111;
  border: 1px solid #292929;
  border-radius: 8px;
}

.zip-ia-map article h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.42;
}

.zip-ia-map article p {
  margin: 0;
  color: #d6d6d6;
  font-size: 0.96rem;
  line-height: 1.62;
}

.zip-card-anatomy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 18px;
}

.zip-card-preview {
  padding: clamp(24px, 4vw, 42px);
  color: #ffffff;
  background: #111111;
  border-radius: 8px;
}

.zip-card-preview span {
  display: block;
  color: #8c8c8c;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.zip-card-preview strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.22;
}

.zip-card-preview p {
  margin: 16px 0 0;
  color: #d7d7d7;
  font-size: 1rem;
  line-height: 1.58;
}

.zip-card-preview div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.zip-card-preview b {
  padding: 10px 14px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  background: #ffffff;
  border-radius: 999px;
}

.zip-card-spec {
  background: #f7f7f7;
}

.zip-card-spec h3 {
  margin-top: 0;
}

.zip-card-spec li,
.zip-validation-board li {
  color: #666666;
}

.zip-card-spec strong,
.zip-validation-board strong {
  color: #111111;
}

.zip-validation-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zip-validation-board article h3 {
  margin-top: 0;
}

.zip-architecture-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.zip-arch-stage {
  position: relative;
  min-height: 260px;
  padding: 22px;
  background: #111111;
  border: 1px solid #282828;
  border-radius: 8px;
}

.zip-arch-stage:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  background: #111111;
  border-top: 1px solid #424242;
  border-right: 1px solid #424242;
  transform: translateY(-50%) rotate(45deg);
}

.zip-arch-stage span,
.zip-rules-grid article span,
.zip-decision-points article span,
.zip-outcome-card span {
  display: block;
  color: #8c8c8c;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zip-arch-stage h3,
.zip-rules-grid article h3,
.zip-task-flow h3,
.zip-outcome-card h3 {
  margin: 12px 0 14px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.42;
}

.zip-arch-stage h3 {
  color: #ffffff;
}

.zip-arch-stage ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zip-arch-stage li {
  color: #d6d6d6;
  font-size: 0.96rem;
  line-height: 1.5;
}

.zip-control-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.zip-control-rail span {
  color: #777777;
  font-size: 0.92rem;
  font-weight: 500;
}

.zip-control-rail strong {
  padding: 8px 12px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 999px;
}

.zip-rules-grid,
.zip-decision-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.zip-rules-grid article,
.zip-decision-points article {
  padding: clamp(20px, 3vw, 30px);
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}

.zip-rules-grid article p,
.zip-decision-points article p,
.zip-outcome-card p {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.72;
}

.zip-state-flow {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-top: 42px;
}

.zip-state-flow span {
  position: relative;
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  background: #111111;
  border-radius: 8px;
}

.zip-state-flow span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 2;
  width: 8px;
  height: 1px;
  content: "";
  background: #111111;
}

.zip-state-table {
  display: grid;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.zip-state-row {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1.45fr 1.25fr;
  min-width: 0;
  border-top: 1px solid #e7e7e7;
}

.zip-state-row:first-child {
  border-top: 0;
}

.zip-state-row > * {
  min-width: 0;
  padding: 16px;
  color: #626262;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
  border-left: 1px solid #e7e7e7;
}

.zip-state-row > *:first-child {
  border-left: 0;
}

.zip-state-row strong {
  color: #111111;
  font-weight: 500;
}

.zip-state-head {
  background: #111111;
}

.zip-state-head > * {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
  border-color: #2b2b2b;
}

.zip-task-scenario {
  margin-top: 36px;
}

.zip-task-scenario blockquote {
  margin: 0 0 22px;
  padding: 26px clamp(22px, 4vw, 42px);
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.28;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.zip-task-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zip-task-flow li {
  min-height: 230px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.zip-task-flow li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 500;
  background: #111111;
  border-radius: 999px;
}

.zip-task-flow p {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.72;
}

.zip-decision-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zip-decision-points article span {
  color: #111111;
  font-size: 1rem;
}

.zip-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.zip-outcome-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.zip-outcome-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  background: #111111;
}

.zip-outcome-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
}

.source-challenge-list article h3,
.source-solution-step h3 {
  margin: 0 0 18px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.55;
}

.source-challenge-list article p {
  margin: 0;
}

.source-solution-section {
  padding-bottom: 32px;
}

.source-solution-step {
  margin: 0;
}

.source-solution-step + .source-solution-step {
  margin-top: 84px;
}

.source-solution-step h3 {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0;
}

.source-solution-step h3 span {
  color: #111111;
}

.source-solution-step ul,
.source-result-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-solution-step li,
.source-result-list li {
  position: relative;
  padding-left: 20px;
}

.source-solution-step li::before,
.source-result-list li::before {
  position: absolute;
  top: 0.86em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: #323232;
  border-radius: 50%;
}

.source-image-panel {
  width: min(1380px, calc(100% - 72px));
  margin: 58px auto 96px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 16px;
}

.source-image-panel-hero {
  margin-top: 18px;
}

/* Keep Zipone's case-study cover on the same crop as its homepage project card. */
.zipone-case-page .source-image-panel-hero {
  aspect-ratio: 1.42;
  padding: 0;
  overflow: hidden;
}

.zipone-case-page .source-image-panel-hero img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.source-image-panel-dark {
  background: #0d0d0d;
}

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

.source-solution-section .source-image-panel {
  width: min(1380px, calc(100vw - 72px));
  margin-top: 42px;
  margin-bottom: 86px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.source-image-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.source-device-grid img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.source-case-footer {
  display: flex;
  justify-content: center;
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  padding: 36px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes sheen {
  0% {
    background-position: 160% 0;
  }

  100% {
    background-position: -80% 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 680px);
    min-height: 68px;
    padding: 10px 12px 10px 14px;
  }

  .site-avatar {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    gap: 12px;
  }

  .project-menu-toggle {
    font-size: 0.9rem;
  }

  .site-contact {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .project-menu-panel {
    right: -74px;
    width: min(390px, calc(100vw - 32px));
  }

  .project-menu::after {
    right: -74px;
    width: min(390px, calc(100vw - 32px));
  }

  .source-device-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-frame {
    padding-bottom: 44px;
  }

  .strip-track {
    width: max-content;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 20px;
  }

  .hero-visual {
    min-height: auto;
  }

  .media-slot-hero {
    width: 86%;
    margin: 0 auto;
  }

  .chip-two {
    left: 4%;
  }

  .entry-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .showcase-card-small,
  .showcase-card-wide,
  .showcase-card-featured {
    grid-column: span 6;
    aspect-ratio: 1.34;
  }

  .case-nav {
    width: min(100%, calc(100% - 2 * var(--page-pad)));
  }

  .case-shell {
    padding-top: 22px;
  }

  .case-section-two-column,
  .solution-block,
  .solution-block-reverse {
    grid-template-columns: 1fr;
  }

  .solution-block-reverse div,
  .solution-block-reverse figure {
    order: initial;
  }

  .challenge-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  :root {
    --page-pad: 14px;
  }

  .page-frame {
    padding-top: 12px;
  }

  .hero-section {
    padding-bottom: 28px;
  }

  .text-slot-xl {
    height: clamp(42px, 16vw, 68px);
  }

  .hero-title {
    font-size: 3.15rem;
    line-height: 1.04;
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .entry-card {
    min-height: 220px;
  }

  .showcase-grid {
    gap: 12px;
  }

  .showcase-card {
    min-height: 240px;
  }

  .showcase-card-copy,
  .showcase-card::after {
    opacity: 1;
  }

  .showcase-card-copy {
    transform: none;
  }

  .case-nav {
    align-items: flex-start;
    gap: 18px;
  }

  .case-links {
    gap: 12px;
    padding-top: 5px;
  }

  .case-links a {
    font-size: 0.82rem;
  }

  .case-hero {
    padding-top: 34px;
  }

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

  .case-section {
    padding: 44px 0;
  }

  .challenge-grid article,
  .result-grid article {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .source-case-nav,
  .source-case-hero,
  .source-text-section,
  .source-case-footer {
    width: min(100%, calc(100% - 32px));
  }

  .source-case-nav {
    align-items: flex-start;
    gap: 18px;
  }

  .source-case-links {
    gap: 14px;
  }

  .source-case-hero {
    padding: 58px 0 30px;
  }

  .source-case-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
  }

  .source-text-section {
    padding: 56px 0;
  }

  .source-text-section p,
  .source-text-section li {
    font-size: 1rem;
    line-height: 1.82;
  }

  .tatto-flow-breakdown,
  .tatto-interface-section {
    width: min(100%, calc(100% - 32px));
  }

  .tatto-evidence-group {
    margin-top: 16px;
    padding-bottom: 52px;
  }

  .tatto-evidence-group > .source-text-section {
    padding-top: 52px;
  }

  .tatto-evidence-group > .source-image-panel {
    margin-top: 32px;
  }

  .tatto-flow-group > .tatto-flow-breakdown {
    padding-top: 52px;
  }

  .tatto-flow-analysis {
    grid-template-columns: 1fr;
  }

  .tatto-flow-analysis article {
    min-height: auto;
  }

  .tatto-structure-evolution {
    grid-template-columns: 1fr;
  }

  .tatto-evolution-arrow {
    min-height: 34px;
    transform: rotate(90deg);
  }

  .tatto-interface-case {
    margin-top: 72px;
    padding-top: 72px;
  }

  .tatto-interface-case-copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tatto-interface-case-copy > span,
  .tatto-interface-case-copy > h3,
  .tatto-interface-case-copy > p,
  .tatto-interface-case-copy > dl,
  .tatto-interface-case-copy > .tatto-system-points {
    grid-column: 1;
    grid-row: auto;
  }

  .tatto-interface-case-copy > p {
    margin-top: 24px;
  }

  .tatto-interface-case-copy dl {
    margin-top: 22px;
  }

  .tatto-interface-figure {
    margin-top: 30px;
    overflow-x: auto;
  }

  .tatto-interface-figure img {
    min-width: 760px;
  }

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

  .zip-framing-grid,
  .zip-recovery-grid,
  .zip-validation-board,
  .zip-ia-map,
  .zip-card-anatomy,
  .nexa-journey-map,
  .nexa-ia-diagram,
  .xmodel-audience-map,
  .xmodel-ia-diagram,
  .xmodel-taxonomy-grid,
  .xmodel-journey-map,
  .xmodel-container-diagram,
  .xmodel-trust-grid,
  .tatto-metric-grid,
  .tatto-opportunity-map,
  .tatto-journey-map,
  .tatto-model-scorecard,
  .tatto-workflow,
  .tatto-product-map,
  .tatto-iteration-loop,
  .tatto-image-grid,
  .tatto-growth-loop,
  .hyper-signal-grid,
  .hyper-proof-grid,
  .hyper-before-after,
  .hyper-competitor-matrix,
  .hyper-flow-map,
  .hyper-citation-flow,
  .hyper-citation-anatomy,
  .hyper-entry-system,
  .hyper-scenario-board,
  .hyper-rag-ladder,
  .hyper-ia-map,
  .zip-architecture-map,
  .zip-rules-grid,
  .zip-state-flow,
  .zip-task-flow,
  .zip-decision-points,
  .zip-outcome-grid {
    grid-template-columns: 1fr;
  }

  .zip-ia-map article {
    min-height: auto;
  }

  .nexa-journey-map {
    display: grid;
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .nexa-journey-map > * {
    min-height: auto;
    border: 1px solid #e2e2e2;
    border-top: 0;
    border-left: 1px solid #e2e2e2;
  }

  .nexa-journey-map > *:first-child {
    border-top: 1px solid #e2e2e2;
    border-radius: 8px 8px 0 0;
  }

  .nexa-journey-stage {
    margin-top: 14px;
    border-top: 1px solid #111111;
    border-radius: 8px 8px 0 0;
  }

  .nexa-journey-stage + .nexa-journey-stage {
    margin-top: 0;
    border-radius: 0;
  }

  .nexa-journey-label {
    justify-content: start;
    min-height: auto;
    padding: 12px 16px;
    text-align: left;
  }

  .nexa-ia-root,
  .nexa-ia-crosscut {
    grid-column: auto;
  }

  .nexa-ia-column::before {
    display: none;
  }

  .xmodel-journey-map article,
  .xmodel-container-panel {
    min-height: auto;
  }

  .xmodel-container-diagram {
    grid-template-areas:
      "task"
      "input"
      "params"
      "output"
      "example";
  }

  .tatto-metric-grid article,
  .tatto-workflow article,
  .tatto-iteration-loop article {
    min-height: auto;
  }

  .tatto-journey-map {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .tatto-journey-map > * {
    min-height: auto;
    border: 1px solid #e2e2e2;
    border-top: 0;
    border-left: 1px solid #e2e2e2;
  }

  .tatto-journey-map > *:first-child {
    border-top: 1px solid #e2e2e2;
    border-radius: 8px 8px 0 0;
  }

  .tatto-journey-map article {
    margin-top: 14px;
    border-top: 1px solid #111111;
    border-radius: 8px 8px 0 0;
  }

  .tatto-journey-map article + article {
    margin-top: 0;
    border-radius: 0;
  }

  .tatto-journey-label {
    justify-content: start;
    min-height: auto;
    padding: 12px 16px;
    text-align: left;
  }

  .tatto-product-root {
    grid-column: auto;
  }

  .tatto-growth-loop article:not(:last-child)::after {
    display: none;
  }

  .hyper-signal-grid article,
  .hyper-proof-grid article,
  .hyper-flow-map article,
  .hyper-citation-flow article,
  .hyper-rag-ladder article,
  .hyper-entry-system article,
  .hyper-scenario-board article {
    min-height: auto;
  }

  .hyper-competitor-matrix {
    gap: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .hyper-competitor-matrix > * {
    border: 1px solid #dedede;
    border-top: 0;
  }

  .hyper-competitor-matrix > *:first-child {
    border-top: 1px solid #dedede;
    border-radius: 8px 8px 0 0;
  }

  .hyper-matrix-head {
    display: none;
  }

  .hyper-competitor-matrix article {
    margin-top: 16px;
    border-top: 1px solid #111111;
    border-radius: 8px 8px 0 0;
  }

  .hyper-competitor-matrix article + p + p + p {
    border-radius: 0 0 8px 8px;
  }

  .hyper-opportunity-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hyper-flow-map article:not(:last-child)::after,
  .hyper-citation-flow article:not(:last-child)::after,
  .hyper-rag-ladder article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -11px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .hyper-citation-anatomy {
    padding: 18px;
  }

  .hyper-file-badges {
    display: grid;
  }

  .hyper-ia-root {
    grid-column: auto;
  }

  .tatto-image-grid {
    width: min(100%, calc(100vw - 32px));
    margin-top: 32px;
    margin-bottom: 58px;
    gap: 18px;
  }

  .zip-arch-stage {
    min-height: auto;
  }

  .zip-arch-stage:not(:last-child)::after,
  .zip-state-flow span:not(:last-child)::after {
    display: none;
  }

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

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

  .zip-state-head {
    display: none;
  }

  .zip-journey-head {
    display: none;
  }

  .zip-state-row > * {
    border-left: 0;
    border-top: 1px solid #e7e7e7;
  }

  .zip-journey-row > * {
    border-left: 0;
    border-top: 1px solid #e7e7e7;
  }

  .zip-state-row > *:first-child {
    border-top: 0;
  }

  .zip-journey-row > *:first-child {
    border-top: 0;
  }

  .zip-outcome-card {
    grid-template-columns: 1fr;
  }

  .zip-outcome-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .source-image-panel,
  .source-solution-section .source-image-panel {
    width: min(100%, calc(100vw - 32px));
    margin-top: 32px;
    margin-bottom: 58px;
    padding: 18px;
    border-radius: 12px;
  }

  .source-solution-step h3 {
    grid-template-columns: 30px minmax(0, 1fr);
    font-size: 1.04rem;
  }

  .source-solution-step + .source-solution-step {
    margin-top: 58px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 9px 10px;
  }

  .site-brand {
    gap: 9px;
  }

  .site-avatar {
    width: 40px;
    height: 40px;
  }

  .site-brand-text strong {
    font-size: 0.94rem;
  }

  .site-brand-text span {
    display: none;
  }

  .site-nav {
    gap: 8px;
  }

  .project-menu-toggle {
    gap: 3px;
    padding: 8px 0;
    font-size: 0.84rem;
  }

  .site-contact {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .project-menu-panel {
    top: calc(100% + 10px);
    right: -66px;
    width: calc(100vw - 24px);
    padding: 10px;
    border-radius: 18px;
  }

  .project-menu::after {
    right: -66px;
    width: calc(100vw - 24px);
    height: 10px;
  }

  .project-menu-item {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 62px;
  }

  .project-menu-logo {
    width: 46px;
    height: 46px;
  }

  .source-case-nav {
    width: min(100%, calc(100% - 28px));
    padding: 18px 0;
  }

  .source-case-links a {
    font-size: 0.8rem;
  }

  .source-case-hero,
  .source-text-section,
  .source-case-footer {
    width: min(100%, calc(100% - 28px));
  }

  .source-case-hero h1 {
    font-size: 2.58rem;
    line-height: 1.04;
  }

  .source-text-section h2 {
    font-size: 2rem;
  }

  .source-image-panel,
  .source-solution-section .source-image-panel {
    width: min(100%, calc(100vw - 28px));
    padding: 12px;
  }
}

.home-page {
  background: #ffffff;
}

.home-page body {
  background: #ffffff;
}

.home-frame {
  width: min(1440px, 100%);
  padding-right: clamp(16px, 3vw, 40px);
  padding-left: clamp(16px, 3vw, 40px);
  padding-top: 34px;
  padding-bottom: 0;
}

.home-page .site-header {
  width: min(1440px, calc(100% - 40px));
}

.home-main {
  padding-top: 122px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.86fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: 500px;
  padding: clamp(48px, 6vw, 78px) clamp(0px, 2.4vw, 34px) clamp(58px, 7vw, 96px);
}

.home-hero-copy {
  min-width: 0;
}

.home-kicker {
  margin: 0 0 12px;
  color: #8b8b8b;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.3;
}

.home-hero h1 {
  margin: 0;
  color: #101010;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.6vw, 4.35rem);
  font-weight: 500;
  line-height: 1.02;
}

.home-hero-description {
  width: min(100%, 500px);
  margin: 30px 0 0;
  color: #5d5d5d;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.86;
}

.home-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 560px);
  margin-top: 34px;
}

.home-strengths article {
  min-height: 112px;
  padding: 20px 18px;
  overflow: hidden;
  background: #f1f1f1;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.home-strengths article:hover {
  background: #eeeeee;
  transform: translateY(-2px);
}

.home-strengths h2 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.28;
}

.home-strengths p {
  margin: 10px 0 0;
  color: #666666;
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-project-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 34px;
}

.home-project-icon {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  background: #101010;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-project-icon:hover,
.home-project-icon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.16);
}

.home-project-icon:focus {
  outline: none;
}

.home-project-icon:focus-visible {
  box-shadow:
    0 0 0 4px rgba(17, 17, 17, 0.1),
    0 16px 32px rgba(17, 17, 17, 0.16);
}

.home-project-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-portrait {
  position: relative;
  display: grid;
  width: min(100%, 510px);
  min-height: 430px;
  margin: 0 auto;
  isolation: isolate;
  place-items: center;
  overflow: visible;
  border-radius: 40px;
  transform-style: preserve-3d;
}

.home-portrait::before {
  position: absolute;
  inset: 8% -10% 0 -18%;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 64% 36%, rgba(198, 255, 80, 0.42) 0 16%, transparent 38%),
    radial-gradient(circle at 78% 58%, rgba(70, 112, 255, 0.34) 0 18%, transparent 42%),
    radial-gradient(circle at 45% 70%, rgba(255, 223, 88, 0.24) 0 16%, transparent 38%),
    radial-gradient(circle at 55% 52%, rgba(230, 211, 255, 0.62) 0 20%, transparent 54%);
  filter: blur(22px);
  opacity: 0.92;
}

.home-portrait-avatar {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(72%, 390px);
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-portrait-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  color: #111111;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    0 18px 38px rgba(17, 17, 17, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(130%);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation:
    portraitChipFade 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards,
    portraitChipFloat 5.2s ease-in-out infinite;
}

.chip-ai {
  top: 16%;
  right: 4%;
  background: #b7ff43;
  animation-delay: 120ms, 720ms;
}

.chip-ux {
  top: 49%;
  left: 3%;
  background: #ffe367;
  animation-delay: 210ms, 420ms;
}

.chip-prototype {
  right: -4%;
  bottom: 28%;
  color: #ffffff;
  background: #3e73f3;
  animation-delay: 300ms, 980ms;
}

.chip-frontend {
  bottom: 13%;
  left: 23%;
  background: #b8ff43;
  animation-delay: 390ms, 180ms;
}

.chip-zero {
  top: 4%;
  left: 20%;
  background: rgba(255, 255, 255, 0.82);
  animation-delay: 480ms, 620ms;
}

.home-showcase {
  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(58px, 7vw, 72px) var(--page-pad) clamp(82px, 8vw, 108px);
  overflow: hidden;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.home-showcase-heading {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-showcase-heading h2 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.14;
}

.home-showcase-heading p {
  margin: 18px 0 0;
  color: #111111;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.4;
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.showcase-tab {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 6px 14px 6px 7px;
  color: #4a4a4a;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.showcase-tab img {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  background: #111111;
  border-radius: 999px;
}

.showcase-tab:hover,
.showcase-tab:focus-visible {
  color: #111111;
  background: #f2f2f2;
  transform: translateY(-1px);
}

.showcase-tab:focus {
  outline: none;
}

.showcase-tab:focus-visible {
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.showcase-tab.is-active {
  color: #111111;
  background: #eeeeee;
}

.featured-projects {
  margin-top: clamp(38px, 5vw, 68px);
}

.featured-project {
  display: none;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.16fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  animation: homePanelIn 240ms ease both;
}

.featured-project.is-active {
  display: grid;
}

.featured-project-copy {
  min-width: 0;
}

.featured-project-kicker {
  margin: 0 0 16px;
  color: #8a8a8a;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.featured-project h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.18;
}

.featured-project-copy > p:not(.featured-project-kicker) {
  width: min(100%, 430px);
  margin: 24px 0 0;
  color: #565656;
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.82;
}

.home-pill-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 36px;
  padding: 0 24px;
  color: #ffffff;
  background: #050505;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-pill-link:hover,
.home-pill-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.2);
}

.home-pill-link span {
  font-size: 0.9rem;
}

.featured-project-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111111;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.14);
}

.featured-project-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 420ms ease;
}

.featured-project-media:hover img {
  transform: scale(1.035);
}

.home-project-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(286px, 0.83fr) minmax(560px, 1.55fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: center;
  /* Match the hero's inner edge: 1440px frame - 40px frame pad - 34px hero pad. */
  width: min(1292px, 100%);
  margin: clamp(56px, 6vw, 64px) auto 0;
}

.project-rail {
  display: flex;
  flex-direction: column;
  align-self: center;
  height: clamp(438px, 34vw, 466px);
  min-height: 0;
}

.project-rail-item {
  position: relative;
  display: flex;
  flex: 0 0 58px;
  flex-direction: column;
  min-height: 0;
  opacity: 0.75;
  border-bottom: 1px solid #d8d8d8;
  transition:
    flex-basis 360ms cubic-bezier(0.22, 1, 0.36, 1),
    flex-grow 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    border-color 220ms ease;
}

.project-rail-item:first-child {
  border-top: 0;
}

.project-rail-item.is-active {
  flex: 1 1 auto;
  opacity: 1;
  border-color: transparent;
}

.project-rail-button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0;
  color: #111111;
  text-align: left;
  background: transparent;
  border: 0;
}

.project-rail-button:focus {
  outline: none;
}

.project-rail-button:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.project-rail-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-self: center;
  justify-self: start;
  overflow: hidden;
  place-items: center;
  background: #111111;
  border-radius: 999px;
}

.project-rail-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-rail-button span:last-child {
  display: block;
  padding-top: 1px;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}

.project-rail-item.is-active .project-rail-icon {
  width: 28px;
  height: 28px;
}

.project-rail-item.is-active .project-rail-button {
  grid-template-columns: 28px minmax(0, 1fr);
}

.project-rail-item.is-active .project-rail-button span:last-child {
  font-size: 1.55rem;
  line-height: 1.08;
}

.project-rail-body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 0;
  min-height: 0;
  padding-top: 0;
  padding-left: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease 80ms,
    transform 240ms ease 80ms;
}

.project-rail-item.is-active .project-rail-body {
  max-height: 156px;
  padding-top: 20px;
  opacity: 1;
  transform: translateY(0);
}

.project-rail-body p {
  max-width: 286px;
  margin: 0;
  color: #6b6b6b;
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.55;
}

.project-rail-body a {
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 2px;
  color: #111111;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.project-preview-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.project-preview-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.018);
  transition:
    opacity 260ms ease,
    transform 520ms ease;
}

.project-preview-panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.project-preview-panel img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: center;
  background: #f1f1f1;
  border-radius: 8px;
  box-shadow: none;
}

.home-career {
  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(52px, 7vw, 96px) 0 clamp(46px, 7vw, 82px);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 920px;
  border-top: 1px solid #f0f0f0;
}

.home-career-heading {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-career-heading p {
  margin: 0 0 14px;
  color: #8a8a8a;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
}

.home-career-heading h2 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.home-career-heading span {
  display: block;
  width: min(560px, 100%);
  margin: 16px auto 0;
  color: #5f5f5f;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.7;
}

.career-wall {
  display: flex;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: flex-start;
  width: 100%;
  margin: clamp(42px, 6vw, 74px) 0 0;
  padding: 0 clamp(14px, 2vw, 32px) 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.career-wall::-webkit-scrollbar {
  display: none;
}

.career-wall.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.career-wall.is-dragging .career-photo {
  pointer-events: none;
}

.career-photo {
  flex: 0 0 auto;
  margin: 0;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transform-origin: top center;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.career-photo.is-active,
.career-photo:hover {
  opacity: 1;
  transform: scale(1);
}

.career-photo-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: end start;
  min-height: 260px;
  padding: 18px;
  background: #eeeeee;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 6px;
}

.career-photo-placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 42%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.16) 0,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: soft-light;
}

.career-photo-placeholder span {
  position: relative;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}

.career-photo-tall .career-photo-placeholder {
  width: clamp(270px, 23vw, 380px);
  aspect-ratio: 0.72;
}

.career-photo-wide .career-photo-placeholder {
  width: clamp(390px, 34vw, 560px);
  aspect-ratio: 1.42;
}

.career-photo-small .career-photo-placeholder {
  width: clamp(280px, 24vw, 390px);
  aspect-ratio: 1.18;
}

.career-photo-image {
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #f1f1f1;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 6px;
}

.career-photo-tall .career-photo-image {
  width: clamp(270px, 23vw, 380px);
  aspect-ratio: 0.72;
}

.career-photo-wide .career-photo-image {
  width: clamp(390px, 34vw, 560px);
  aspect-ratio: 1.42;
}

.career-photo-small .career-photo-image {
  width: clamp(280px, 24vw, 390px);
  aspect-ratio: 1.18;
}

.placeholder-01 {
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.48), transparent 30%),
    linear-gradient(135deg, #dce9dd, #95a989 48%, #2a302b);
}

.placeholder-02 {
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #eef2ef, #bbc8ce 44%, #4a4f55);
}

.placeholder-03 {
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 229, 120, 0.4), transparent 34%),
    linear-gradient(135deg, #f1eadf, #c6a78b 48%, #201c19);
}

.placeholder-04 {
  background:
    radial-gradient(circle at 30% 22%, rgba(181, 255, 76, 0.42), transparent 32%),
    linear-gradient(135deg, #eef5ed, #bfcadf 46%, #111111);
}

.placeholder-05 {
  background:
    radial-gradient(circle at 72% 18%, rgba(63, 111, 244, 0.42), transparent 30%),
    linear-gradient(135deg, #f5f5f1, #d2d0cf 42%, #343333);
}

.placeholder-06 {
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 226, 94, 0.5), transparent 34%),
    linear-gradient(135deg, #f4f0e7, #a9b5a5 45%, #1c201d);
}

.placeholder-07 {
  background:
    radial-gradient(circle at 66% 30%, rgba(229, 211, 255, 0.6), transparent 34%),
    linear-gradient(135deg, #f2f4f8, #aeb9d0 45%, #151a25);
}

.placeholder-08 {
  background:
    radial-gradient(circle at 56% 28%, rgba(184, 255, 67, 0.42), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(65, 113, 243, 0.4), transparent 30%),
    linear-gradient(135deg, #f8f8f5, #ded8eb 48%, #111111);
}

.career-photo figcaption {
  display: grid;
  gap: 4px;
  width: 100%;
  margin-top: 10px;
  color: #5f5f5f;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.career-photo figcaption strong {
  color: #3f3f3f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.career-photo figcaption span {
  color: #8a8a8a;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.2;
}

.career-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: min(520px, 100%);
  margin: clamp(20px, 3vw, 34px) auto 0;
}

.career-timeline::before {
  position: absolute;
  top: 8px;
  right: 20px;
  left: 20px;
  height: 1px;
  content: "";
  background: #d8d8d8;
}

.career-timepoint {
  position: relative;
  display: inline-grid;
  gap: 9px;
  justify-items: center;
  min-width: 56px;
  padding: 0;
  color: rgba(17, 17, 17, 0.48);
  background: transparent;
  border: 0;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.career-timepoint::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px #ffffff;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.career-timepoint:hover,
.career-timepoint:focus-visible,
.career-timepoint.is-active {
  color: #111111;
}

.career-timepoint:hover {
  transform: translateY(-1px);
}

.career-timepoint:focus {
  outline: none;
}

.career-timepoint:focus-visible::before {
  box-shadow:
    inset 0 0 0 5px #ffffff,
    0 0 0 4px rgba(17, 17, 17, 0.08);
}

.career-timepoint.is-active::before {
  background: #111111;
  border-color: #111111;
  box-shadow: inset 0 0 0 5px #111111;
}

.home-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: clamp(600px, 46vw, 680px);
  margin: 0;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 6vw, 72px) 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 680px;
  background: #ffffff;
  border: 0;
  border-radius: 0;
}

.home-contact-copy {
  position: relative;
  z-index: 3;
  text-align: center;
}

.home-contact-copy h2 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.home-contact-copy p {
  margin: 18px 0 0;
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.home-contact-copy .home-pill-link {
  margin-top: 24px;
}

.home-contact-visual {
  position: absolute;
  inset: auto 0 0;
  height: clamp(310px, 34vw, 390px);
  pointer-events: none;
}

.home-contact-figure {
  position: absolute;
  bottom: -122px;
  left: 50%;
  z-index: 2;
  width: min(520px, 46vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.home-contact-glow {
  position: absolute;
  right: 50%;
  bottom: -56%;
  z-index: 1;
  width: min(700px, 64vw);
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 31% 63%, rgba(88, 241, 167, 0.62) 0 14%, rgba(88, 241, 167, 0.32) 34%, transparent 58%),
    radial-gradient(circle at 68% 38%, rgba(125, 78, 237, 0.6) 0 15%, rgba(125, 78, 237, 0.3) 35%, transparent 59%),
    rgba(225, 231, 240, 0.42);
  border-radius: 50%;
  filter: blur(42px) saturate(112%);
  opacity: 0;
  transform: translateX(50%) scale(0.64);
  transform-origin: 50% 50%;
}

.home-contact-person {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  filter: blur(8px) saturate(88%);
  transform: translate3d(0, 108px, 0) scale(0.965);
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}

.home-contact-bulb {
  position: absolute;
  top: 14%;
  right: 20%;
  z-index: 3;
  width: clamp(46px, 4vw, 62px);
  height: auto;
  opacity: 0;
  filter: blur(12px) brightness(1.8);
  transform: scale(0.46) rotate(7deg);
  transform-origin: 50% 54%;
  will-change: transform, opacity, filter;
}

.home-contact-card.is-visible .home-contact-person {
  animation: contactPersonRise 1050ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.home-contact-card.is-visible .home-contact-glow {
  animation: contactGlowReveal 1100ms cubic-bezier(0.16, 1, 0.3, 1) 390ms both;
}

.home-contact-card.is-visible .home-contact-bulb {
  animation: contactIdeaFlash 900ms cubic-bezier(0.16, 1, 0.3, 1) 1220ms both;
}

.contact-page {
  min-height: 100vh;
  background: #ffffff;
}

.contact-main {
  min-height: 100vh;
  padding: clamp(112px, 12vh, 150px) var(--page-pad) clamp(42px, 7vh, 82px);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(100vh - 210px);
  margin: 0 auto;
}

.contact-copy {
  min-width: 0;
}

.contact-kicker {
  margin: 0 0 18px;
  color: #8a8a8a;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-copy h1 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 500;
  line-height: 1.16;
}

.contact-subtitle {
  margin: 32px 0 0;
  color: #777777;
  font-size: clamp(1.2rem, 1.8vw, 1.68rem);
  font-weight: 400;
  line-height: 1.55;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: clamp(72px, 13vh, 150px);
}

.contact-method {
  display: inline-grid;
  height: 40px;
  min-width: 0;
  color: #111111;
  text-decoration: none;
  perspective: 720px;
}

.contact-method-flip {
  position: relative;
  display: block;
  min-width: 190px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-method:first-child .contact-method-flip {
  width: 292px;
}

.contact-method:nth-child(2) .contact-method-flip {
  width: 192px;
}

.contact-method:hover .contact-method-flip,
.contact-method:focus-visible .contact-method-flip {
  transform: rotateX(180deg) translateY(-1px);
}

.contact-method:focus {
  outline: none;
}

.contact-method:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.contact-method-face {
  position: absolute;
  inset: 0;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  min-width: 100%;
  padding: 0 2px;
  color: #252525;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  backface-visibility: hidden;
}

.contact-method-back {
  transform: rotateX(180deg);
}

.contact-method-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
  background: #111111;
  border-radius: 4px;
}

.contact-method:nth-child(2) .contact-method-icon {
  font-size: 0.86rem;
}

.contact-method-arrow {
  display: inline-block;
  color: #111111;
  font-size: 1.04rem;
  transform: translateY(-1px);
}

.contact-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 0.76;
  background: #111111;
  border-radius: 8px;
}

.contact-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12));
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
}

@media (max-width: 900px) {
  .contact-main {
    padding-top: 118px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }

  .contact-methods {
    margin-top: 58px;
  }

  .contact-photo {
    width: min(100%, 520px);
    margin: 0 auto;
    aspect-ratio: 0.88;
  }
}

@media (max-width: 620px) {
  .contact-main {
    padding: 104px 18px 44px;
  }

  .contact-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .contact-subtitle {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 42px;
  }

  .contact-method,
  .contact-method:first-child .contact-method-flip,
  .contact-method:nth-child(2) .contact-method-flip {
    width: 100%;
  }

  .contact-method-face {
    width: 100%;
    font-size: 0.96rem;
  }

  .contact-method-face span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-photo {
    aspect-ratio: 0.82;
  }
}

@keyframes contactPersonRise {
  0% {
    opacity: 0;
    filter: blur(8px) saturate(88%);
    transform: translate3d(0, 108px, 0) scale(0.965);
  }

  46% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    filter: blur(0) saturate(100%);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes contactGlowReveal {
  0% {
    opacity: 0;
    filter: blur(56px) saturate(104%);
    transform: translateX(50%) scale(0.64);
  }

  62% {
    opacity: 0.92;
  }

  100% {
    opacity: 0.78;
    filter: blur(42px) saturate(112%);
    transform: translateX(50%) scale(1);
  }
}

@keyframes contactIdeaFlash {
  0% {
    opacity: 0;
    filter: blur(12px) brightness(2.1);
    transform: scale(0.46) rotate(7deg);
  }

  48% {
    opacity: 1;
    filter: blur(0) brightness(1.75);
    transform: scale(1.12) rotate(-2deg);
  }

  72% {
    filter: blur(0) brightness(1.1);
    transform: scale(0.97) rotate(0);
  }

  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1) rotate(0);
  }
}

.home-color-block {
  position: absolute;
  display: block;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.home-color-block-yellow {
  top: 34%;
  left: 28%;
  width: clamp(72px, 10vw, 112px);
  height: clamp(72px, 10vw, 112px);
  background: #ffeb5c;
}

.home-color-block-pink {
  top: 20%;
  right: 35%;
  width: clamp(52px, 7vw, 70px);
  height: clamp(52px, 7vw, 70px);
  background: #df55ee;
}

.home-color-block-blue {
  right: 32%;
  bottom: 22%;
  width: clamp(56px, 8vw, 74px);
  height: clamp(56px, 8vw, 74px);
  background: #5ca7f2;
}

@keyframes homePanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes portraitChipFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes portraitChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .home-main {
    padding-top: 106px;
  }

  .home-hero,
  .home-contact-card {
    grid-template-columns: 1fr;
  }

  .home-hero {
    gap: 36px;
    padding-right: 0;
    padding-left: 0;
  }

  .home-portrait {
    width: min(76vw, 360px);
    min-height: 390px;
  }

  .home-portrait-chip {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .chip-ai {
    right: -5%;
  }

  .chip-prototype {
    right: -8%;
  }

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

  .home-contact-card {
    min-height: 620px;
  }

  .home-contact-visual {
    height: 320px;
  }

  .home-project-stage {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-rail {
    height: 460px;
  }

  .project-preview-stage {
    order: -1;
  }
}

@media (max-width: 620px) {
  .home-frame {
    padding-top: 18px;
  }

  .home-main {
    padding-top: 94px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .home-hero h1 {
    font-size: 2.5rem;
  }

  .home-hero-description {
    font-size: 0.98rem;
  }

  .home-strengths {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-strengths article {
    min-height: auto;
    padding: 18px;
  }

  .home-portrait {
    width: min(88vw, 340px);
    min-height: 340px;
  }

  .home-portrait-avatar {
    width: min(78%, 270px);
  }

  .home-portrait-chip {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.76rem;
  }

  .chip-ai {
    top: 14%;
    right: 0;
  }

  .chip-ux {
    top: 48%;
    left: -2%;
  }

  .chip-prototype {
    right: -2%;
    bottom: 25%;
  }

  .chip-frontend {
    bottom: 10%;
    left: 20%;
  }

  .chip-zero {
    top: 3%;
    left: 16%;
  }

  .home-project-icons {
    gap: 7px;
  }

  .home-project-icon {
    width: 40px;
    height: 40px;
  }

  .home-showcase {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .home-career {
    padding-top: 48px;
  }

  .career-wall {
    gap: 16px;
    margin-right: 0;
    margin-left: 0;
  }

  .career-photo:nth-child(n) {
    margin-top: 0;
  }

  .career-photo-tall .career-photo-placeholder {
    width: 250px;
  }

  .career-photo-tall .career-photo-image {
    width: 250px;
  }

  .career-photo-wide .career-photo-placeholder {
    width: 340px;
  }

  .career-photo-wide .career-photo-image {
    width: 340px;
  }

  .career-photo-small .career-photo-placeholder {
    width: 270px;
  }

  .career-photo-small .career-photo-image {
    width: 270px;
  }

  .career-timeline {
    justify-content: flex-start;
    gap: 14px;
    width: auto;
    margin-right: calc(var(--page-pad) * -1);
    margin-left: calc(var(--page-pad) * -1);
    padding: 0 var(--page-pad) 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .career-timeline::-webkit-scrollbar {
    display: none;
  }

  .career-timeline::before {
    right: var(--page-pad);
    left: var(--page-pad);
    min-width: 360px;
  }

  .career-timepoint {
    min-width: 52px;
  }

  .home-project-stage {
    margin-top: 34px;
  }

  .project-rail {
    height: 430px;
  }

  .project-rail-item {
    flex-basis: 54px;
  }

  .project-rail-button {
    min-height: 54px;
  }

  .project-rail-body {
    padding-left: 0;
  }

  .project-rail-item.is-active .project-rail-body {
    padding-top: 14px;
  }

  .project-preview-panel img {
    aspect-ratio: 1.42;
  }

  .home-contact-copy h2 {
    font-size: 2.15rem;
  }

  .featured-project-copy > p:not(.featured-project-kicker) {
    font-size: 0.98rem;
  }

  .featured-project-media img {
    aspect-ratio: 1.28;
  }

  .home-contact-card {
    margin: 0;
    min-height: 580px;
    padding: 34px 22px 0;
  }

  .home-contact-person {
    width: 100%;
  }

  .home-contact-figure {
    bottom: -82px;
    width: min(460px, 112vw);
  }

  .home-contact-glow {
    bottom: -18%;
    width: 135vw;
    height: auto;
  }

  .home-contact-bulb {
    top: 18%;
    right: 28%;
    bottom: auto;
    left: auto;
    width: 48px;
  }

  .home-color-block-yellow {
    left: 6%;
  }

  .home-color-block-pink {
    right: 16%;
  }

  .home-color-block-blue {
    right: 10%;
  }
}

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

  .home-contact-glow,
  .home-contact-person,
  .home-contact-bulb {
    opacity: 1;
    filter: none;
  }

  .home-contact-glow {
    opacity: 0.78;
    transform: translateX(50%) scale(1);
  }

  .home-contact-person {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .home-contact-bulb {
    transform: scale(1) rotate(0);
  }
}

/* Keep the homepage project cards and each case-study cover on the same visual crop. */
.source-cover-hero,
.zipone-case-page .source-image-panel-hero.source-cover-hero {
  aspect-ratio: 1.62;
  padding: 0;
  overflow: hidden;
}

.source-cover-hero img,
.zipone-case-page .source-cover-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-preview-panel[data-showcase-panel="tattoai"] img,
.source-cover-tattoai img {
  object-position: center 53%;
}

.project-preview-panel[data-showcase-panel="hyperlink"] img,
.source-cover-hyperlink img {
  object-position: center 49%;
}

.project-preview-panel[data-showcase-panel="nexa"] img,
.source-cover-nexa img {
  object-position: center 46%;
}

.project-preview-panel[data-showcase-panel="xmodel"] img,
.source-cover-xmodel img {
  object-position: center 47%;
}

.project-preview-panel[data-showcase-panel="zipone"] img,
.source-cover-zipone img {
  object-position: center 55%;
}

@media (min-width: 901px) {
  .home-project-stage {
    grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1.46fr);
    gap: clamp(44px, 4vw, 66px);
    width: min(1292px, 100%);
  }

  .project-rail {
    height: clamp(438px, 32vw, 520px);
  }

  .project-rail-body p {
    max-width: 252px;
  }

  .project-preview-panel img {
    aspect-ratio: 1.62;
  }
}

@media (max-width: 900px) {
  .source-cover-hero,
  .zipone-case-page .source-image-panel-hero.source-cover-hero {
    aspect-ratio: 1.42;
  }
}

.hyper-pin,
.nexa-pin,
.xmodel-pin {
  display: none;
}
