:root {
  --bg: #f6f7f5;
  --surface: #ffffff;
  --surface-soft: #edf0ed;
  --ink: #121416;
  --muted: #686e70;
  --line: #d8ddda;
  --line-strong: #aeb6b1;
  --accent: #ce563d;
  --accent-cool: #3e746d;
  --dark: #181b1d;
  --dark-soft: #222629;
  --white: #ffffff;
  --header-height: 72px;
  --shell: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Inter", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei",
    system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

figure,
blockquote,
dl,
dd,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(220px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 245, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(246, 247, 245, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-code {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.nav a {
  position: relative;
  padding: 26px 0 24px;
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-status {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
}

.header-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent-cool);
  box-shadow: 0 0 0 4px rgba(62, 116, 109, 0.11);
}

.section-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: 24px;
  padding: 72px 0 92px;
}

.hero-main {
  grid-column: 1 / span 7;
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 24px;
}

h1 {
  font-size: 104px;
  font-weight: 760;
  line-height: 0.88;
}

h1 span,
h1 small {
  display: block;
}

h1 small {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-statement {
  margin-top: 44px;
  font-size: 42px;
  font-weight: 620;
  line-height: 1.14;
}

.hero-lead {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-profile {
  grid-column: 9 / -1;
  align-self: center;
  min-width: 0;
}

.asset-slot {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  transition: background-color 300ms ease, border-color 300ms ease;
}

.asset-slot:hover {
  border-color: var(--ink);
  background: #e7ebe7;
}

.slot-meta {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 20, 22, 0.12);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.slot-cross {
  position: absolute;
  top: 43px;
  right: 0;
  bottom: 105px;
  left: 0;
}

.slot-cross::before,
.slot-cross::after {
  position: absolute;
  background: rgba(18, 20, 22, 0.12);
  content: "";
}

.slot-cross::before {
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
}

.slot-cross::after {
  top: 7%;
  bottom: 7%;
  left: 50%;
  width: 1px;
}

.slot-cross span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 20, 22, 0.26);
  border-radius: 50%;
  background: var(--surface-soft);
  transform: translate(-50%, -50%);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease;
}

.slot-cross span::before,
.slot-cross span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.slot-cross span::before {
  width: 12px;
  height: 1px;
}

.slot-cross span::after {
  width: 1px;
  height: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .asset-slot:hover .slot-cross span {
    background: var(--white);
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.asset-slot figcaption {
  position: relative;
  z-index: 2;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(18, 20, 22, 0.12);
  background: inherit;
}

.asset-slot figcaption strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.asset-slot figcaption p {
  max-width: 700px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.portrait-slot {
  min-height: 330px;
}

.profile-list {
  margin-top: 18px;
  border-top: 1px solid var(--ink);
}

.profile-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.45;
}

.profile-list dt {
  color: var(--muted);
}

.profile-list dd {
  font-weight: 700;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.profile-overview {
  background: var(--surface);
}

.profile-overview-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
}

.profile-overview-heading > div {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px;
  align-items: end;
}

.profile-overview-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.profile-overview-heading h2 {
  font-size: 58px;
}

.profile-overview-heading > div > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.resume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resume-block {
  min-width: 0;
  min-height: 420px;
  padding: 32px 36px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resume-experience {
  grid-column: 1 / -1;
}

.resume-block > header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 32px;
}

.resume-block > header > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.resume-block > header p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.resume-block > header h3 {
  font-size: 28px;
}

.company-record {
  border-top: 1px solid var(--ink);
}

.company-record + .company-record {
  margin-top: 36px;
}

.company-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}

.company-head time,
.company-head > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.company-head h4 {
  font-size: 19px;
  font-weight: 680;
}

.company-head h4 small {
  margin-left: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.company-head strong {
  display: block;
  margin-top: 7px;
  color: var(--accent-cool);
  font-size: 12px;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-details > div {
  min-height: 180px;
  padding: 22px 26px 10px 0;
}

.company-details > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.company-details h5,
.skill-columns h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
}

.company-details ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.company-details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.company-record.is-placeholder {
  color: #565b5d;
}

.company-record.is-placeholder .company-head,
.company-record.is-placeholder .company-details {
  background: var(--surface-soft);
}

.company-record.is-placeholder .company-head {
  padding-right: 18px;
  padding-left: 18px;
}

.company-record.is-placeholder .company-details > div:first-child {
  padding-left: 18px;
}

.resume-entry {
  padding: 20px 0 24px;
  border-top: 1px solid var(--ink);
}

.resume-entry time {
  color: var(--muted);
  font-size: 11px;
}

.resume-entry h4 {
  margin-top: 18px;
  font-size: 19px;
}

.resume-entry strong {
  display: block;
  margin-top: 8px;
  color: var(--accent-cool);
  font-size: 12px;
}

.resume-entry p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.resume-entry.is-placeholder {
  padding: 22px;
  background: var(--surface-soft);
  border-top-color: var(--line-strong);
}

.skill-columns {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(250px, 1.3fr);
  gap: 30px;
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}

.skill-columns > div:first-child p {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.software-placeholder p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.5;
}

.software-placeholder span {
  color: var(--muted);
}

.software-placeholder strong {
  font-weight: 650;
}

.home-contact-list {
  border-top: 1px solid var(--ink);
}

.home-contact-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.55;
}

.home-contact-list dt {
  color: var(--muted);
}

.home-contact-list dd {
  font-weight: 700;
}

.skills-section {
  overflow: hidden;
  background: #e7ebe8;
}

.skills-shell {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(460px, 1.04fr) minmax(480px, 0.96fr);
  gap: 72px;
  align-items: center;
}

.skills-copy {
  min-width: 0;
}

.skills-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
}

.skills-heading .section-index {
  padding-top: 4px;
}

.skills-heading h2 {
  max-width: 620px;
  margin-top: 16px;
  font-size: 56px;
}

.skills-heading > div > p:last-child {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.skill-switcher {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.skill-switch {
  display: grid;
  width: 100%;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 20, 22, 0.16);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.skill-switch > span {
  padding-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.skill-switch > div {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 80px;
  gap: 14px;
  align-items: baseline;
}

.skill-switch strong {
  font-size: 15px;
  font-weight: 700;
}

.skill-switch small {
  justify-self: end;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.skill-switch p {
  overflow: hidden;
  max-height: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.skill-switch.is-active > span,
.skill-switch.is-active small {
  color: var(--accent);
}

.skill-switch.is-active p {
  max-height: 88px;
  margin-top: 3px;
  opacity: 1;
  transform: translateY(0);
}

.product-skill-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0 80px;
}

.product-skill-line span {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.software-visual {
  position: relative;
  min-width: 0;
}

.orbit-field {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(18, 20, 22, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 38%;
  height: 38%;
}

.orbit-ring-2 {
  width: 66%;
  height: 66%;
}

.orbit-ring-3 {
  width: 92%;
  height: 92%;
}

.orbit-field::before,
.orbit-field::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(18, 20, 22, 0.09);
  content: "";
  transform: translate(-50%, -50%);
}

.orbit-field::before {
  width: 92%;
  height: 1px;
}

.orbit-field::after {
  width: 1px;
  height: 92%;
}

.software-node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(18, 20, 22, 0.16);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(18, 20, 22, 0.08);
  will-change: transform;
}

.software-node::after {
  position: absolute;
  inset: -7px;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  transition: border-color 240ms ease, transform 240ms ease;
}

.software-node.is-active::after {
  border-color: var(--accent);
  transform: scale(1.05);
}

.software-node img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.software-node > span {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  padding: 4px 7px;
  background: rgba(231, 235, 232, 0.9);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.node-keyshot {
  background: #17191a;
}

.node-keyshot img {
  width: 38px;
  height: 38px;
}

.node-photoshop {
  background: #001e36;
}

.node-photoshop img {
  filter: invert(63%) sepia(94%) saturate(1792%) hue-rotate(168deg) brightness(102%);
}

.node-comfyui {
  overflow: hidden;
  padding: 0;
  background: #051d2a;
}

.node-comfyui img {
  width: 100%;
  height: 100%;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.orbit-center > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 800;
}

.orbit-center strong {
  max-width: 120px;
  margin: 10px 0 8px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit-center small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.orbit-center b {
  color: #e77b63;
  font-weight: 800;
}

.orbit-caption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.section-band {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.4fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 84px;
}

.section-index {
  color: var(--line-strong);
  font-size: 12px;
  font-weight: 800;
}

h2 {
  max-width: 820px;
  margin-top: 15px;
  font-size: 60px;
  font-weight: 680;
  line-height: 1.04;
}

.section-intro {
  align-self: end;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.case + .case {
  margin-top: 144px;
}

.case-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding: 26px 0 38px;
  border-top: 1px solid var(--ink);
}

.case-number {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-type {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.case-title-wrap {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(260px, 1fr);
  gap: 40px;
}

h3 {
  font-size: 48px;
  font-weight: 680;
  line-height: 1.06;
}

.case-title-wrap > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.asset-slot-main {
  min-height: 650px;
}

.case-framework {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.framework-lead h4,
.research-column h4 {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.28;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.framework-grid div {
  min-height: 130px;
  padding: 18px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.framework-grid div:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.framework-grid div:nth-child(even) {
  padding-left: 28px;
}

.framework-grid dt {
  margin-bottom: 12px;
  color: var(--accent-cool);
  font-size: 11px;
  font-weight: 800;
}

.framework-grid dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.evolution {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 56px 0;
}

.evolution-step {
  position: relative;
  min-height: 150px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.evolution-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.evolution-step span {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.evolution-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.evolution-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.asset-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.asset-slot-support {
  min-height: 420px;
}

.case-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.case-note span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-note p {
  max-width: 850px;
  font-size: 18px;
  line-height: 1.75;
}

.unicorn-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: 590px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.unicorn-hero figure {
  min-width: 0;
  overflow: hidden;
}

.unicorn-hero figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.unicorn-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  border-left: 1px solid var(--line);
}

.unicorn-hero-copy h4 {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.32;
}

.unicorn-hero-copy > p:not(.eyebrow) {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.unicorn-hero-copy dl {
  margin-top: 38px;
  border-top: 1px solid var(--ink);
}

.unicorn-hero-copy dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}

.unicorn-hero-copy dt {
  color: var(--muted);
}

.unicorn-hero-copy dd {
  font-weight: 650;
}

.product-phase {
  margin-top: 80px;
}

.phase-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 64px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--ink);
}

.phase-heading > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.phase-heading > div {
  display: grid;
  grid-template-columns: minmax(210px, 0.66fr) minmax(260px, 1fr);
  gap: 40px;
}

.phase-heading h4 {
  font-size: 30px;
  font-weight: 660;
  line-height: 1.25;
}

.phase-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.unicorn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.unicorn-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.unicorn-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.unicorn-card > div {
  min-height: 144px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.unicorn-card > div > span {
  display: block;
  min-height: 28px;
  color: var(--accent-cool);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
}

.unicorn-card .unicorn-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.unicorn-card.show-detail .unicorn-detail {
  opacity: 1;
}

.image-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 28px);
  height: 28px;
  padding: 2px;
  border: 1px solid rgba(18, 20, 22, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.image-toggle span {
  display: grid;
  min-height: 0;
  place-items: center;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.image-toggle span:first-child,
.unicorn-card.show-detail .image-toggle span:last-child {
  background: var(--ink);
  color: var(--white);
}

.unicorn-card.show-detail .image-toggle span:first-child {
  background: transparent;
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .unicorn-card:hover img {
    transform: scale(1.025);
  }

  .unicorn-card:hover .unicorn-detail {
    opacity: 1;
  }
}

.unicorn-card h5 {
  margin: 4px 0 8px;
  font-size: 17px;
  font-weight: 680;
}

.unicorn-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.unicorn-grid-og .unicorn-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.unicorn-grid-og .unicorn-card.is-featured img {
  aspect-ratio: 1.35;
}

.unicorn-grid-og .unicorn-card.is-featured > div {
  min-height: 138px;
}

.source-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.source-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.artline-hero {
  position: relative;
  overflow: hidden;
  background: #e8e9e7;
}

.artline-hero > img {
  display: block;
  width: 100%;
  height: auto;
}

.artline-hero figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(520px, 48%);
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 24px;
  background: rgba(246, 247, 245, 0.94);
  backdrop-filter: blur(14px);
}

.artline-hero figcaption span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.artline-hero figcaption p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.artline-framework {
  border-bottom: 0;
}

.artline-framework .research-list {
  margin-top: 0;
}

.research-story {
  margin-top: clamp(68px, 7vw, 96px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.research-story-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
  padding: clamp(34px, 4vw, 54px) 0;
}

.research-story-header h4 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 690;
  line-height: 1.08;
}

.research-story-header > p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  text-wrap: pretty;
}

.research-conversion {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-conversion > div {
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 4px;
  padding: 20px clamp(14px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.research-conversion > div:first-child {
  padding-left: 0;
}

.research-conversion > div:last-child {
  border-right: 0;
}

.research-conversion strong {
  color: var(--accent);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 710;
  line-height: 1;
}

.research-conversion span {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 720;
}

.research-conversion small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.research-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-principles article {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.research-principles article:nth-child(odd) {
  padding-right: clamp(26px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.research-principles article:nth-child(even) {
  padding-left: clamp(26px, 4vw, 58px);
}

.research-principles article > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.research-principles h5 {
  font-size: 16px;
  font-weight: 720;
  line-height: 1.35;
}

.research-principles p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.research-decisions {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  background: #f4f4f4;
}

.research-decisions > div {
  min-width: 0;
  padding: 22px 26px 24px;
}

.research-decisions > div + div {
  border-left: 1px solid var(--line);
}

.research-decisions span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.research-decisions p {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  line-height: 1.7;
}

.research-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.research-evidence figure {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f4f4;
}

.research-evidence img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: top;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.research-evidence figcaption {
  display: grid;
  min-height: 114px;
  grid-template-columns: 64px minmax(130px, 0.52fr) minmax(180px, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #fff;
}

.research-evidence figcaption span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.research-evidence figcaption strong {
  font-size: 14px;
}

.research-evidence figcaption p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .research-evidence figure:hover img {
    transform: scale(1.025);
  }
}

@media (max-width: 860px) {
  .research-story-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .research-conversion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-conversion > div:first-child {
    padding-left: 18px;
  }

  .research-conversion > div:nth-child(2) {
    border-right: 0;
  }

  .research-conversion > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .research-principles {
    grid-template-columns: 1fr;
  }

  .research-principles article:nth-child(odd),
  .research-principles article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .research-decisions,
  .research-evidence {
    grid-template-columns: 1fr;
  }

  .research-decisions > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .research-story-header h4 {
    font-size: 34px;
  }

  .research-conversion > div {
    min-height: 108px;
    padding: 18px;
  }

  .research-evidence figcaption {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .research-evidence figcaption p {
    grid-column: 2;
  }
}

.briefs-section {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--ink);
}

.briefs-header {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1.68fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(20px, 2.5vw, 30px) 0;
  border-bottom: 1px solid var(--line);
}

.briefs-header > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.briefs-header h4 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
}

.briefs-header p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.brief-copy dt {
  color: var(--accent);
  font-weight: 800;
}

.brief-copy dd {
  color: #333;
}

.research-board {
  margin-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.research-board img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f4f4f4;
}

.research-board figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.research-board figcaption span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.research-findings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
  margin-top: clamp(42px, 5vw, 68px);
  padding: clamp(34px, 4vw, 54px) 0;
  border-top: 1px solid var(--ink);
}

.research-findings-layout .research-board {
  overflow: hidden;
  margin: 0;
  border-top: 0;
}

.research-findings-layout .research-board img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.research-findings {
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 56px);
}

.research-findings > header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}

.research-findings > header h5 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.research-findings > header > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.research-findings ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.research-findings li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.research-findings li > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.research-findings li strong {
  font-size: 15px;
}

.research-findings li p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.research-transfer {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding: 18px 20px;
  background: #f4f4f4;
}

.research-transfer span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.research-transfer p {
  color: #333;
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .research-findings-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .research-findings-layout .research-board {
    width: min(100%, 680px);
  }

  .research-findings-layout .research-board img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .research-findings {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 32px;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .research-findings-layout {
    gap: 28px;
    margin-top: 36px;
    padding: 28px 0;
  }

  .research-findings li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .research-transfer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.brief-list {
  border-top: 1px solid var(--line);
}

.brief-item {
  display: grid;
  min-height: 208px;
  grid-template-columns: 64px minmax(300px, 1.05fr) minmax(320px, 0.95fr);
  border-bottom: 1px solid var(--line);
}

.brief-index {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 12px 22px 0;
}

.brief-index strong {
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.brief-index span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.brief-copy {
  padding: 22px clamp(22px, 2.5vw, 34px);
  border-left: 1px solid var(--line);
}

.brief-copy h5 {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.18;
}

.brief-copy > p {
  max-width: 560px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.brief-copy dl {
  margin-top: 13px;
  border-top: 1px solid var(--line);
}

.brief-copy dl > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
}

.brief-item figure {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 14px clamp(18px, 2vw, 28px) 12px;
  border-left: 1px solid var(--line);
  background: #fff;
}

.brief-item figure img {
  display: block;
  width: 100%;
  height: 164px;
  object-fit: contain;
  background: #fff;
}

.brief-item figcaption {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .brief-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .brief-item figure {
    grid-column: 2;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .briefs-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .research-board figcaption {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .brief-item {
    grid-template-columns: 1fr;
  }

  .brief-index {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 24px 0 18px;
  }

  .brief-copy {
    padding: 24px 0 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .brief-item figure {
    grid-column: 1;
    padding: 20px 0 16px;
    border-left: 0;
  }

  .brief-item figure img {
    height: auto;
    max-height: 230px;
  }
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.evidence-grid figure {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
}

.evidence-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
}

.evidence-grid figcaption {
  display: grid;
  min-height: 126px;
  grid-template-columns: 66px minmax(140px, 0.55fr) minmax(180px, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
}

.evidence-grid figcaption span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.evidence-grid figcaption strong {
  font-size: 14px;
}

.evidence-grid figcaption p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.art-product-list {
  margin-top: 100px;
  border-top: 1px solid var(--ink);
}

.art-product {
  padding: 48px 0 72px;
  border-bottom: 1px solid var(--line);
}

.art-product header {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 30px;
}

.art-product header > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.art-product header > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(260px, 1fr);
  gap: 40px;
}

.art-product h4 {
  font-size: 30px;
  font-weight: 660;
  line-height: 1.25;
}

.art-product header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.art-product-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.art-product-media figure {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.art-product-media img,
.art-product-media video {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: contain;
  background: var(--surface);
}

.case-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
}

.asset-slot-tall {
  min-height: 760px;
}

.research-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.research-list {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.research-list > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.research-list span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.research-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.research-list strong {
  margin-right: 12px;
  color: var(--ink);
}

.asset-slot-research {
  min-height: 300px;
  margin-top: auto;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.motion-slot {
  min-width: 0;
  background: var(--bg);
}

.motion-stage {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--surface-soft);
}

.motion-stage::before,
.motion-stage::after {
  position: absolute;
  background: rgba(18, 20, 22, 0.12);
  content: "";
}

.motion-stage::before {
  top: 50%;
  right: 12%;
  left: 12%;
  height: 1px;
}

.motion-stage::after {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
}

.motion-stage span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.motion-stage i {
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 18px);
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: motionPulse 3.6s ease-in-out infinite;
}

.motion-stage i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
}

.motion-slot:nth-child(2) i { animation-delay: -0.7s; }
.motion-slot:nth-child(3) i { animation-delay: -1.4s; }
.motion-slot:nth-child(4) i { animation-delay: -2.1s; }
.motion-slot:nth-child(5) i { animation-delay: -2.8s; }

.motion-slot figcaption {
  min-height: 108px;
  padding: 16px;
}

.motion-slot figcaption strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}

.motion-slot figcaption p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.case-heading.compact {
  margin-bottom: 0;
}

.asset-slot-wide {
  min-height: 500px;
}

.management-section {
  background: var(--dark);
  color: var(--white);
}

.section-heading-light .section-index,
.management-section .section-intro {
  color: rgba(255, 255, 255, 0.52);
}

.management-section .eyebrow {
  color: #e77b63;
}

.result-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.result-item {
  min-height: 280px;
  padding: 26px 32px 30px 0;
}

.result-item + .result-item {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.result-item > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.result-item strong {
  display: block;
  margin: 42px 0 20px;
  font-size: 86px;
  line-height: 0.88;
}

.result-item p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.result-context {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 26px 0 30px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.result-context span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.result-context p {
  max-width: 48ch;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.management-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 84px;
  padding: 88px 0 72px;
}

.management-copy h3 {
  max-width: 430px;
  margin-top: 18px;
  font-size: 40px;
}

.management-actions {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.management-actions p {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.management-actions span {
  color: #e77b63;
  font-size: 10px;
  font-weight: 800;
}

.funnel {
  min-width: 0;
}

.funnel-stage {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.funnel-stage > div {
  min-width: 0;
  min-height: 230px;
  padding: 32px 12px;
}

.funnel-stage strong,
.funnel-stage span {
  display: block;
}

.funnel-stage strong {
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 1;
}

.funnel-stage div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.funnel-stage i {
  position: relative;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.funnel-stage i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  transform: rotate(45deg);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.archive-grid > .other-case-group {
  grid-column: span 5;
}

.archive-grid > .other-case-group-featured,
.archive-grid > .other-case-group-wide {
  grid-column: span 7;
}

.archive-grid .archive-slot,
.archive-grid .archive-slot-large,
.archive-grid .archive-slot-wide {
  width: 100%;
  min-height: 420px;
  grid-column: auto;
}

.archive-slot {
  min-height: 420px;
  grid-column: span 5;
}

.archive-slot-large {
  min-height: 560px;
  grid-column: span 7;
}

.archive-slot-wide {
  min-height: 380px;
  grid-column: span 7;
}

.perspective-section {
  background: var(--surface);
}

.perspective-list {
  border-top: 1px solid var(--ink);
}

.perspective-list article {
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0 40px;
  border-bottom: 1px solid var(--line);
}

.perspective-list article > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.perspective-list h3 {
  font-size: 26px;
}

.perspective-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  padding-bottom: 96px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 100px;
}

.contact-title h2 {
  margin-top: 20px;
}

.contact-info {
  border-top: 1px solid var(--ink);
}

.contact-info div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.contact-info span {
  color: var(--muted);
}

.contact-info strong {
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px max(24px, calc((100vw - var(--shell)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer span:nth-child(2) {
  text-align: center;
}

.footer a {
  justify-self: end;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-main > *,
.hero-profile,
.hero-foot {
  opacity: 0;
  transform: translateY(18px);
}

body.is-ready .hero-main > *,
body.is-ready .hero-profile,
body.is-ready .hero-foot {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .hero-main > *:nth-child(2) { transition-delay: 80ms; }
body.is-ready .hero-main > *:nth-child(3) { transition-delay: 150ms; }
body.is-ready .hero-main > *:nth-child(4) { transition-delay: 220ms; }
body.is-ready .hero-main > *:nth-child(5) { transition-delay: 290ms; }
body.is-ready .hero-profile { transition-delay: 180ms; }
body.is-ready .hero-foot { transition-delay: 360ms; }

@keyframes motionPulse {
  0%, 100% { transform: translateX(-26px) rotate(0deg); }
  50% { transform: translateX(26px) rotate(180deg); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .header-status {
    display: none;
  }

  .hero-main {
    grid-column: 1 / span 7;
  }

  .hero-profile {
    grid-column: 8 / -1;
  }

  h1 {
    font-size: 84px;
  }

  .hero-statement {
    font-size: 36px;
  }

  .motion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .unicorn-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .skills-shell {
    grid-template-columns: minmax(400px, 1fr) minmax(420px, 0.9fr);
    gap: 32px;
  }

  .skills-heading h2 {
    font-size: 48px;
  }

  .contact-inner {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 106px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
  }

  .brand {
    padding-bottom: 8px;
  }

  .nav {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    padding: 10px 0 15px;
  }

  .nav a::after {
    bottom: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 72px 0 90px;
  }

  .hero-main,
  .hero-profile {
    grid-column: 1;
  }

  .hero-profile {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
  }

  .profile-list {
    margin-top: 0;
  }

  .section-band {
    padding: 92px 0;
  }

  .section-heading {
    grid-template-columns: 50px minmax(0, 1fr);
    margin-bottom: 64px;
  }

  .profile-overview-heading {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 24px;
  }

  .profile-overview-heading > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-overview-heading .eyebrow {
    margin-bottom: 0;
  }

  .profile-overview-heading h2 {
    font-size: 50px;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .company-details > div {
    min-height: 0;
    padding: 20px 0;
  }

  .company-details > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .company-record.is-placeholder .company-details > div {
    padding-right: 18px;
    padding-left: 18px;
  }

  .skills-shell {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .skills-copy {
    max-width: 680px;
  }

  .software-visual {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .section-intro {
    grid-column: 2;
  }

  h2 {
    font-size: 50px;
  }

  .case-heading,
  .case-framework,
  .case-split,
  .management-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .unicorn-hero {
    grid-template-columns: 1fr;
  }

  .unicorn-hero figure img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .unicorn-hero-copy {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .phase-heading,
  .art-product header {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 32px;
  }

  .phase-heading > div,
  .art-product header > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .unicorn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unicorn-grid-og .unicorn-card.is-featured {
    grid-row: auto;
  }

  .unicorn-grid-og .unicorn-card.is-featured img {
    aspect-ratio: 1;
  }

  .evidence-grid figcaption {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .evidence-grid figcaption p {
    grid-column: 2;
  }

  .case-heading {
    gap: 28px;
  }

  .case-title-wrap {
    grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1fr);
  }

  .asset-slot-main {
    min-height: 500px;
  }

  .case-framework {
    gap: 42px;
  }

  .asset-slot-tall {
    min-height: 620px;
  }

  .asset-slot-research {
    min-height: 320px;
    margin-top: 44px;
  }

  .management-grid {
    gap: 68px;
  }

  .archive-slot,
  .archive-slot-large,
  .archive-slot-wide {
    min-height: 420px;
    grid-column: span 6;
  }

  .perspective-list article {
    grid-template-columns: 50px minmax(0, 0.8fr) minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, var(--shell));
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  .hero-statement {
    margin-top: 34px;
    font-size: 30px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-profile {
    grid-template-columns: 1fr;
  }

  .portrait-slot {
    min-height: 390px;
  }

  .hero-foot span:last-child {
    display: none;
  }

  .section-band {
    padding: 72px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 52px;
  }

  .profile-overview-heading,
  .resume-grid,
  .company-head,
  .skill-columns {
    grid-template-columns: 1fr;
  }

  .profile-overview-heading {
    gap: 16px;
    margin-bottom: 44px;
  }

  .profile-overview-heading h2 {
    font-size: 40px;
  }

  .resume-experience {
    grid-column: auto;
  }

  .resume-block {
    min-height: 0;
    padding: 26px 22px 32px;
  }

  .company-head {
    gap: 12px;
  }

  .company-head h4 small {
    display: block;
    margin: 6px 0 0;
  }

  .skill-columns {
    gap: 28px;
  }

  .skills-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .skills-heading h2 {
    font-size: 40px;
  }

  .skill-switch > div {
    grid-template-columns: minmax(0, 1fr) 66px;
  }

  .skill-switch strong {
    font-size: 14px;
  }

  .product-skill-line {
    margin-left: 0;
  }

  .orbit-field {
    width: min(100%, 390px);
  }

  .software-node {
    width: 58px;
    height: 58px;
    padding: 11px;
  }

  .software-node img {
    width: 32px;
    height: 32px;
  }

  .node-keyshot img {
    width: 30px;
    height: 30px;
  }

  .orbit-center {
    width: 116px;
    height: 116px;
  }

  .orbit-center strong {
    max-width: 94px;
    font-size: 15px;
  }

  .section-intro {
    grid-column: 1;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 36px;
  }

  .case + .case {
    margin-top: 104px;
  }

  .case-title-wrap,
  .framework-grid,
  .evolution,
  .asset-pair,
  .motion-grid,
  .phase-heading,
  .phase-heading > div,
  .unicorn-grid,
  .evidence-grid,
  .art-product header,
  .art-product header > div,
  .art-product-media,
  .result-row,
  .funnel-stage,
  .archive-grid,
  .perspective-list article,
  .footer {
    grid-template-columns: 1fr;
  }

  .case-title-wrap {
    gap: 20px;
  }

  .unicorn-hero-copy {
    padding: 32px 22px;
  }

  .unicorn-hero-copy h4,
  .phase-heading h4,
  .art-product h4 {
    font-size: 25px;
  }

  .product-phase {
    margin-top: 64px;
  }

  .phase-heading,
  .art-product header {
    gap: 18px;
  }

  .unicorn-grid-og .unicorn-card.is-featured {
    grid-column: auto;
  }

  .unicorn-card > div {
    min-height: 132px;
  }

  .artline-hero > img {
    aspect-ratio: auto;
  }

  .artline-hero figcaption {
    position: static;
    width: 100%;
    grid-template-columns: 78px minmax(0, 1fr);
    background: var(--surface);
    border-top: 1px solid var(--line);
  }

  .evidence-grid figcaption {
    min-height: 0;
  }

  .art-product-list {
    margin-top: 72px;
  }

  .art-product {
    padding: 36px 0 56px;
  }

  .art-product-media img,
  .art-product-media video {
    aspect-ratio: 1;
  }

  .asset-slot-main,
  .asset-slot-tall,
  .asset-slot-wide {
    min-height: 430px;
  }

  .framework-grid div,
  .framework-grid div:nth-child(odd),
  .framework-grid div:nth-child(even) {
    padding: 18px 0 22px;
    border-right: 0;
  }

  .evolution-step,
  .evolution-step:first-child {
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .evolution-step span {
    margin-bottom: 16px;
  }

  .case-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-note p {
    font-size: 16px;
  }

  .motion-stage {
    height: 280px;
  }

  .result-item,
  .result-item + .result-item {
    min-height: 240px;
    padding: 26px 0;
    border-left: 0;
  }

  .result-item + .result-item {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .result-item strong {
    font-size: 68px;
  }

  .funnel-stage {
    border-bottom: 0;
  }

  .funnel-stage > div {
    min-height: 150px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .funnel-stage i {
    display: none;
  }

  .archive-slot,
  .archive-slot-large,
  .archive-slot-wide {
    min-height: 400px;
    grid-column: 1;
  }

  .perspective-list article {
    gap: 14px;
  }

  .perspective-list article > span {
    margin-bottom: 4px;
  }

  .perspective-list h3 {
    font-size: 24px;
  }

  .footer {
    gap: 10px;
  }

  .footer span:nth-child(2) {
    text-align: left;
  }

  .footer a {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-main > *,
  .hero-profile,
  .hero-foot {
    opacity: 1;
    transform: none;
  }
}

/* Shelby-inspired narrative system: adapted for an adult product portfolio. */
:root {
  --bg: #f8f1f3;
  --surface-soft: #f1e6ea;
  --accent: #ff6578;
  --accent-cool: #2d6085;
  --wine: #2b1420;
  --lilac: #d9b6ef;
  --coral: #ff6578;
  --ocean: #234e70;
  --butter: #efd65a;
}

.site-header {
  top: 12px;
  width: min(var(--shell), calc(100% - 48px));
  min-height: 62px;
  margin: 12px auto 0;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(43, 20, 32, 0.94);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(43, 20, 32, 0.12);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(43, 20, 32, 0.97);
}

.brand-code {
  border-color: rgba(255, 255, 255, 0.78);
}

.brand-copy small,
.header-status,
.nav a {
  color: rgba(255, 255, 255, 0.64);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--white);
}

.nav a::after {
  background: var(--coral);
}

.hero {
  min-height: calc(100svh - 150px);
  align-items: center;
  column-gap: 34px;
  padding: 54px 0 96px;
}

.image-trail {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.image-trail__item {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(112px, 11vw, 172px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: var(--wine);
  box-shadow: 0 18px 48px rgba(43, 20, 32, 0.24);
  opacity: 0;
  transform: translate3d(-200%, -200%, 0) scale(0.92);
  will-change: transform, opacity;
}

.image-trail__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.image-trail::after {
  position: absolute;
  right: 16px;
  top: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(43, 20, 32, 0.16);
  border-radius: 999px;
  background: rgba(248, 241, 243, 0.76);
  color: rgba(43, 20, 32, 0.58);
  content: "MOVE TO EXPLORE";
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0;
  transition: opacity 500ms ease 900ms;
}

body.is-ready .image-trail::after {
  opacity: 1;
}

.hero-main {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 6;
}

@media (max-width: 760px), (hover: none) {
  .image-trail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-trail {
    display: none;
  }
}

.hero-kicker {
  color: var(--ocean);
}

h1 {
  font-size: 110px;
  letter-spacing: 0;
}

h1 small {
  color: var(--coral);
  font-size: 19px;
}

.hero-statement {
  max-width: 660px;
  font-size: 48px;
}

.hero-profile {
  position: relative;
  min-height: 650px;
  grid-column: 7 / -1;
  align-self: center;
}

.hero-product-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ocean);
}

.hero-product-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.06) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-product-scene figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  max-width: 290px;
  gap: 7px;
  padding: 14px 16px;
  border-radius: 4px;
  background: rgba(43, 20, 32, 0.88);
  color: var(--white);
}

.hero-product-scene figcaption span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
}

.hero-product-scene figcaption strong {
  font-size: 13px;
  line-height: 1.5;
}

.hero-profile .portrait-slot {
  position: absolute;
  bottom: 22px;
  left: -42px;
  z-index: 3;
  width: 230px;
  min-height: 310px;
  border-color: rgba(43, 20, 32, 0.35);
  border-radius: 4px;
  background: rgba(248, 241, 243, 0.94);
  box-shadow: 0 18px 46px rgba(43, 20, 32, 0.17);
  backdrop-filter: blur(14px);
}

.hero-profile .profile-list {
  position: absolute;
  right: 20px;
  bottom: 92px;
  z-index: 2;
  width: 290px;
  margin: 0;
  padding: 14px 18px;
  border-top: 0;
  border-radius: 4px;
  background: rgba(248, 241, 243, 0.94);
  box-shadow: 0 16px 38px rgba(43, 20, 32, 0.13);
  backdrop-filter: blur(14px);
}

.hero-foot {
  color: #5e4b53;
}

.profile-overview {
  background: #f5dfe5;
}

.resume-grid {
  background: rgba(255, 255, 255, 0.36);
}

.resume-block,
.company-record {
  background: rgba(255, 255, 255, 0.42);
}

.company-record.is-placeholder {
  background: rgba(217, 182, 239, 0.2);
}

.skills-section {
  background: #4a1059;
  color: #f9eefc;
}

.skills-heading > div > p:last-child,
.skills-section .section-index,
.skills-section .skill-switch p,
.skills-section .skill-switch small,
.skills-section .skill-switch > span,
.skills-section .product-skill-line span,
.skills-section .orbit-caption {
  color: rgba(249, 238, 252, 0.62);
}

.skills-section .skill-switcher,
.skills-section .skill-switch {
  border-color: rgba(249, 238, 252, 0.22);
}

.skills-section .skill-switch {
  color: #f9eefc;
}

.skills-section .skill-switch.is-active strong,
.skills-section .skill-switch.is-active > span,
.skills-section .skill-switch.is-active small {
  color: #ff91a1;
}

.skills-section .orbit-ring {
  border-color: rgba(249, 238, 252, 0.23);
}

.skills-section .orbit-field::before,
.skills-section .orbit-field::after {
  background: rgba(249, 238, 252, 0.12);
}

.skills-section .orbit-center {
  background: var(--coral);
  color: var(--wine);
}

.skills-section .orbit-center > span,
.skills-section .orbit-center small {
  color: rgba(43, 20, 32, 0.62);
}

.skills-section .orbit-center b {
  color: var(--wine);
}

.cases-section {
  background: #fff;
}

.case-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -24px 0 110px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--wine);
  color: var(--white);
}

.case-index a {
  display: grid;
  min-height: 180px;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  transition: background-color 280ms ease, color 280ms ease, transform 280ms ease;
}

.case-index a:first-child {
  border-left: 0;
}

.case-index a:hover,
.case-index a:focus-visible,
.case-index a.is-active {
  background: var(--coral);
  color: var(--wine);
}

.case-index span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
}

.case-index a:hover span,
.case-index a:focus-visible span,
.case-index a.is-active span {
  color: var(--wine);
}

.case-index-title {
  align-self: center;
}

.case-index strong {
  display: block;
  font-size: 20px;
}

.case-index-title em {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.case-index small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.case-index a:hover small,
.case-index a:focus-visible small,
.case-index a.is-active small {
  color: rgba(43, 20, 32, 0.65);
}

.case-index a:hover .case-index-title em,
.case-index a:focus-visible .case-index-title em,
.case-index a.is-active .case-index-title em {
  color: rgba(43, 20, 32, 0.72);
}

.case-heading {
  margin-bottom: 0;
  padding: 40px;
  border-top: 0;
  border-radius: 6px 6px 0 0;
}

.case-heading h3 {
  font-size: 60px;
}

.case-unicorn > .case-heading {
  background: var(--butter);
  color: #251d0f;
}

.case-artline > .case-heading {
  background: var(--ocean);
  color: var(--white);
}

.case-artline > .case-heading .case-type,
.case-artline > .case-heading .case-title-wrap > p {
  color: rgba(255, 255, 255, 0.64);
}

.case-male > .case-heading {
  background: var(--wine);
  color: var(--white);
}

.case-male > .case-heading .case-type,
.case-male > .case-heading .case-title-wrap > p {
  color: rgba(255, 255, 255, 0.62);
}

.case-design-archive > .case-heading {
  background: var(--lilac);
  color: #31133c;
}

.case-other > .case-heading {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.case-other > .case-heading .case-number,
.case-other > .case-heading h3 {
  color: var(--wine);
}

.other-case-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.other-case-index a {
  display: grid;
  min-height: 140px;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 20px;
  border-left: 1px solid var(--line);
  transition: background-color 220ms ease, color 220ms ease;
}

.other-case-index a:first-child {
  border-left: 0;
}

.other-case-index a:hover,
.other-case-index a:focus-visible {
  background: #f6f2f4;
  color: var(--wine);
}

.other-case-index span,
.other-case-heading > span {
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.other-case-index strong {
  align-self: center;
  font-size: 16px;
}

.other-case-index small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.other-case-content {
  display: grid;
  gap: 88px;
  padding-top: 88px;
}

.other-case-group {
  min-width: 0;
  scroll-margin-top: 96px;
}

.other-case-heading {
  display: grid;
  grid-template-columns: minmax(88px, 0.25fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 0 0 24px;
  border-top: 1px solid var(--ink);
}

.other-case-heading > span {
  padding-top: 18px;
}

.other-case-heading > div {
  padding-top: 14px;
}

.other-case-heading h4 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
}

.other-case-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.other-case-group .asset-slot {
  margin: 0;
}

.unicorn-hero,
.artline-hero {
  border-radius: 0 0 6px 6px;
}

.unicorn-hero.reveal,
.artline-hero.reveal {
  clip-path: inset(0 0 18% 0 round 0 0 6px 6px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.unicorn-hero.reveal.in-view,
.artline-hero.reveal.in-view {
  clip-path: inset(0 round 0 0 6px 6px);
}

.unicorn-card,
.art-product-media figure,
.evidence-grid figure {
  border-radius: 4px;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .unicorn-card:hover,
  .art-product-media figure:hover,
  .evidence-grid figure:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(43, 20, 32, 0.14);
  }
}

.management-section {
  background: var(--wine);
}

.management-section .eyebrow,
.management-actions span {
  color: #ff91a1;
}

.result-item strong {
  color: var(--coral);
}

.funnel-stage > div {
  position: relative;
}

.funnel-stage > div::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.management-section.is-active .funnel-stage > div::after {
  transform: scaleX(1);
}

.management-section.is-active .funnel-stage > div:nth-child(3)::after { transition-delay: 140ms; }
.management-section.is-active .funnel-stage > div:nth-child(5)::after { transition-delay: 280ms; }
.management-section.is-active .funnel-stage > div:nth-child(7)::after { transition-delay: 420ms; }

.perspective-section {
  background: #d9b6ef;
  color: #32133d;
}

.perspective-list {
  border-color: #32133d;
}

.perspective-list article {
  border-color: rgba(50, 19, 61, 0.24);
}

.perspective-list p {
  color: rgba(50, 19, 61, 0.68);
}

.image-plan-section {
  background: #f7cfd8;
}

.image-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--wine);
  border-left: 1px solid rgba(43, 20, 32, 0.25);
}

.image-plan-item {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(43, 20, 32, 0.25);
  border-bottom: 1px solid rgba(43, 20, 32, 0.25);
}

.image-plan-item span {
  color: #a52f47;
  font-size: 10px;
  font-weight: 800;
}

.image-plan-item h3 {
  margin-top: 62px;
  font-size: 25px;
}

.image-plan-item p {
  margin-top: 18px;
  color: rgba(43, 20, 32, 0.67);
  font-size: 13px;
  line-height: 1.75;
}

.contact-section {
  background: #fff8fa;
}

@media (max-width: 1120px) {
  .hero-main {
    grid-column: 1 / span 6;
  }

  .hero-profile {
    grid-column: 7 / -1;
  }

  h1 {
    font-size: 88px;
  }

  .hero-statement {
    font-size: 39px;
  }

  .hero-profile .portrait-slot {
    left: -22px;
    width: 210px;
  }

  .hero-profile .profile-list {
    width: 260px;
  }

}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 28px);
    padding: 12px 16px 0;
  }

  .hero {
    gap: 54px;
    padding-top: 64px;
  }

  .hero-main,
  .hero-profile {
    grid-column: 1;
  }

  .hero-profile {
    display: block;
    min-height: 660px;
  }

  .case-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-index a:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .other-case-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .other-case-index a:nth-child(odd) {
    border-left: 0;
  }

  .other-case-index a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .other-case-index a:last-child {
    grid-column: 1 / -1;
  }

  .archive-grid > .other-case-group,
  .archive-grid > .other-case-group-featured,
  .archive-grid > .other-case-group-wide {
    grid-column: span 6;
  }

  .case-heading {
    padding: 32px;
  }

  .image-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 6px;
    margin-top: 6px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-statement {
    font-size: 31px;
  }

  .hero-profile {
    min-height: 0;
  }

  .hero-product-scene {
    position: relative;
    height: 430px;
  }

  .hero-profile .portrait-slot {
    position: relative;
    bottom: auto;
    left: auto;
    width: 62%;
    min-height: 310px;
    margin: -96px 0 0 14px;
  }

  .hero-profile .profile-list {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 14px;
  }

  .case-index,
  .other-case-index,
  .image-plan-grid {
    grid-template-columns: 1fr;
  }

  .case-index a,
  .case-index a:nth-child(2),
  .case-index a:nth-child(3),
  .case-index a:nth-child(4) {
    min-height: 138px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .case-index a:first-child {
    border-top: 0;
  }

  .other-case-index a,
  .other-case-index a:nth-child(odd),
  .other-case-index a:last-child {
    grid-column: 1;
    min-height: 112px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .other-case-index a:first-child {
    border-top: 0;
  }

  .other-case-content {
    gap: 64px;
    padding-top: 64px;
  }

  .other-case-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .archive-grid > .other-case-group,
  .archive-grid > .other-case-group-featured,
  .archive-grid > .other-case-group-wide {
    grid-column: 1;
  }

  .case-heading {
    padding: 26px 22px;
  }

  .case-heading h3 {
    font-size: 38px;
  }

  .image-plan-item {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product-scene img {
    transform: scale(1.03);
  }

  .unicorn-hero.reveal,
  .artline-hero.reveal {
    clip-path: none;
  }
}

/* Motion direction: chapter wipes, masked type, depth and continuous capability flow. */
.hero-product-scene {
  clip-path: inset(0 100% 0 0 round 6px);
  transform-origin: center;
}

body.is-ready .hero-product-scene {
  clip-path: inset(0 round 6px);
  transition: clip-path 1100ms cubic-bezier(0.22, 1, 0.36, 1) 160ms;
}

.hero-product-scene img {
  transform: perspective(1100px) scale(1.09) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

h1 {
  overflow: hidden;
}

h1 > span,
h1 > small {
  display: block;
  transform: translateY(112%);
}

body.is-ready h1 > span,
body.is-ready h1 > small {
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready h1 > small {
  transition-delay: 90ms;
}

.motion-sweep {
  position: relative;
  isolation: isolate;
}

.motion-sweep::after {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: min(100svh, 100%);
  background: var(--sweep-color, var(--bg));
  content: "";
  pointer-events: none;
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 1050ms cubic-bezier(0.76, 0, 0.24, 1);
}

.motion-sweep.motion-active::after {
  transform: scaleX(0);
}

.profile-overview { --sweep-color: #f5dfe5; }
.skills-section { --sweep-color: #4a1059; }
.cases-section { --sweep-color: #fff8fa; }
.management-section { --sweep-color: var(--wine); }
.perspective-section { --sweep-color: var(--lilac); }
.image-plan-section { --sweep-color: #f7cfd8; }
.contact-section { --sweep-color: #fff8fa; }

.section-heading h2,
.case-heading h3,
.profile-overview-heading h2 {
  transform: none;
}

.case-index a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.case-index a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--coral);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.case-index a:hover,
.case-index a:focus-visible,
.case-index a.is-active {
  background: transparent;
}

.case-index a:hover::before,
.case-index a:focus-visible::before,
.case-index a.is-active::before {
  transform: scaleY(1);
}

.unicorn-card img,
.art-product-media img,
.art-product-media video,
.evidence-grid img,
.unicorn-hero img,
.artline-hero img {
  transform: scale(1.025) translate3d(0, var(--media-shift, 0), 0);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 860px) {
  .motion-sweep::after {
    transition-duration: 780ms;
  }

  .section-heading h2,
  .case-heading h3,
  .profile-overview-heading h2 {
    transform: none;
  }

  .unicorn-card img,
  .art-product-media img,
  .art-product-media video,
  .evidence-grid img,
  .unicorn-hero img,
  .artline-hero img {
    transform: scale(1.015) translate3d(0, var(--media-shift, 0), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product-scene {
    clip-path: none;
  }

  h1 > span,
  h1 > small,
  .motion-line > span,
  .section-heading h2,
  .case-heading h3,
  .profile-overview-heading h2,
  .unicorn-card img,
  .art-product-media img,
  .art-product-media video,
  .evidence-grid img,
  .unicorn-hero img,
  .artline-hero img {
    transform: none;
  }

  .motion-sweep::after {
    display: none;
  }
}

/* Editorial cover: a quiet gateway into the complete portfolio. */
.site-header {
  position: fixed;
  left: 50%;
  margin: 0;
  opacity: 0;
  transform: translate3d(-50%, -150%, 0);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, background-color 240ms ease;
}

body.intro-passed .site-header {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.intro-cover {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #cbafcc;
  color: #171315;
  isolation: isolate;
}

.intro-grainient {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #cbafcc 0%, #c8a0b2 52%, #cddab4 100%);
}

.intro-grainient canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.intro-cover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(23, 19, 21, 0.2);
  content: "";
}

.intro-image-trail {
  z-index: 4;
}

.intro-image-trail::after {
  display: none;
}

.intro-cover .image-trail__item {
  width: clamp(158px, 13vw, 230px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(61, 24, 42, 0.18);
}

.intro-cover .image-trail__item img {
  object-fit: cover;
  object-position: center;
  background: transparent;
  transform: none;
}

.intro-cover .image-trail__item:nth-child(n + 5) img {
  object-fit: contain;
  mix-blend-mode: darken;
  transform: none;
}

.intro-cover .image-trail__item:nth-child(5) { background: #dce7eb; }
.intro-cover .image-trail__item:nth-child(6) { background: #e7edf0; }
.intro-cover .image-trail__item:nth-child(7) { background: #e4e2e7; }
.intro-cover .image-trail__item:nth-child(8) { background: #eee8f2; }

.intro-mobile-image {
  display: none;
}

.intro-edition,
.intro-credit,
.intro-summary,
.intro-enter,
.intro-count,
.intro-scroll,
.intro-title {
  position: absolute;
  z-index: 8;
}

.intro-edition {
  top: 6.5%;
  left: 4%;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.intro-title {
  top: 26%;
  left: 50%;
  width: max-content;
  max-width: 90vw;
  overflow: visible;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(76px, 7.5vw, 138px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  transform: translateX(-50%);
}

.intro-title span {
  display: block;
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

.intro-title span:last-child {
  margin-top: -0.06em;
  margin-left: 2.45em;
}

.intro-credit {
  top: 19.5%;
  left: 64.5%;
  display: grid;
  gap: 4px;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.intro-credit span {
  font-weight: 700;
}

.intro-credit strong {
  font-size: 9px;
  font-weight: 800;
}

.intro-summary {
  top: 59%;
  left: 31.5%;
  max-width: 470px;
  font-size: 12px;
  line-height: 1.6;
}

.intro-enter {
  top: 59%;
  left: 63.5%;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.intro-enter:focus-visible {
  background: var(--wine);
  color: #fff;
}

.intro-enter span {
  font-size: 14px;
}

.intro-count {
  bottom: 4.5%;
  left: 3.2%;
  display: grid;
  width: 116px;
  height: 116px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center;
  border: 1px solid rgba(23, 19, 21, 0.58);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 28px;
}

.intro-count span:first-child {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.intro-count span:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.intro-count i {
  position: absolute;
  width: 86px;
  height: 1px;
  background: rgba(23, 19, 21, 0.48);
  transform: rotate(-45deg);
}

.intro-scroll {
  bottom: 3.8%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.intro-scroll span {
  writing-mode: vertical-rl;
}

.intro-scroll i {
  display: block;
  width: 1px;
  height: 56px;
  overflow: hidden;
  background: rgba(23, 19, 21, 0.28);
}

.intro-scroll i::after {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--wine);
  content: "";
  animation: introScrollLine 1700ms ease-in-out infinite;
}

.intro-edition,
.intro-credit,
.intro-summary,
.intro-enter,
.intro-count,
.intro-scroll {
  opacity: 0;
  transform: translateY(12px);
}

.intro-scroll {
  transform: translate(-50%, 12px);
}

body.is-ready .intro-edition,
body.is-ready .intro-credit,
body.is-ready .intro-summary,
body.is-ready .intro-enter,
body.is-ready .intro-count,
body.is-ready .intro-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .intro-scroll {
  transform: translate(-50%, 0);
}

body.is-ready .intro-credit { transition-delay: 160ms; }
body.is-ready .intro-summary { transition-delay: 280ms; }
body.is-ready .intro-enter { transition-delay: 360ms; }
body.is-ready .intro-count,
body.is-ready .intro-scroll { transition-delay: 520ms; }

@keyframes introScrollLine {
  0% { transform: translateY(-110%); }
  55%, 100% { transform: translateY(230%); }
}

@media (max-width: 980px) {
  .intro-title {
    top: 24%;
    left: 50%;
    width: max-content;
    max-width: 92vw;
    font-size: clamp(72px, 10vw, 104px);
  }

  .intro-title span:last-child {
    margin-left: 1.65em;
  }

  .intro-credit {
    top: 18%;
    left: auto;
    right: 7%;
  }

  .intro-summary {
    top: 58%;
    left: 12%;
  }

  .intro-enter {
    top: 67%;
    left: 12%;
  }
}

@media (max-width: 620px) {
  .intro-cover {
    min-height: 760px;
  }

  .intro-edition {
    top: 4.5%;
    left: 20px;
  }

  .intro-title {
    top: 17%;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 32px);
    font-size: clamp(54px, 15.5vw, 68px);
    line-height: 0.82;
  }

  .intro-title span:last-child {
    margin-top: -0.02em;
    margin-left: 0.45em;
  }

  .intro-credit {
    top: 8.5%;
    right: 20px;
  }

  .intro-mobile-image {
    position: absolute;
    z-index: 2;
    top: 36%;
    right: 18px;
    left: 18px;
    display: block;
    height: 32%;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
  }

  .intro-mobile-image::after {
    position: absolute;
    inset: 0;
    background: rgba(43, 20, 32, 0.08);
    content: "";
  }

  .intro-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .intro-summary {
    top: 71%;
    left: 20px;
    max-width: calc(100% - 40px);
    font-size: 11px;
  }

  .intro-summary br {
    display: none;
  }

  .intro-enter {
    top: 80%;
    left: 20px;
  }

  .intro-count {
    bottom: 22px;
    left: 20px;
    width: 78px;
    height: 78px;
    font-size: 20px;
  }

  .intro-count i {
    width: 58px;
  }

  .intro-scroll {
    right: 22px;
    bottom: 20px;
    left: auto;
    transform: none;
  }

  body.is-ready .intro-scroll {
    transform: none;
  }

  .site-header,
  body.intro-passed .site-header {
    left: 14px;
    width: calc(100% - 28px);
    transform: translate3d(0, -150%, 0);
  }

  body.intro-passed .site-header {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-mobile-image {
    display: block;
  }

  .intro-scroll i::after {
    animation: none;
  }
}
