:root {
  --ink: #050505;
  --muted: #686868;
  --line: #ededed;
  --soft: #f7f7f7;
  --paper: #ffffff;
  --accent: #0a0a0a;
  --accent-soft: #f2f2f2;
  --warm: #f4f1ed;
  --radius: 8px;
  --pill-radius: 999px;
  --max-width: 1200px;
  --shadow: 0 24px 80px rgb(0 0 0 / 10%);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #759e8d;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 18px clamp(20px, 3vw, 32px);
  border-bottom: 0;
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(20px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.wordmark-mark {
  display: none;
}

.primary-nav {
  display: flex;
  gap: clamp(18px, 2.7vw, 38px);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.primary-nav a {
  position: relative;
  color: #111;
  font-size: 13px;
  font-weight: 450;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.primary-nav a[aria-current="page"] {
  font-weight: 700;
}

.primary-nav a[aria-current="page"]::after {
  content: none;
}

.view {
  min-height: 70vh;
}

.projects-view,
.content-view,
.project-detail-view {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(72px, 12vw, 150px) clamp(20px, 3vw, 32px) 120px;
}

.project-detail-view {
  width: min(100%, 1840px);
}

.page-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-chunks {
  max-width: 850px;
  text-align: center;
}

.hero-chunks h1 {
  margin-right: auto;
  margin-left: auto;
}

.hero-copy {
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-copy p {
  max-width: 850px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}

.hero-copy p:first-child {
  font-size: clamp(1.22rem, 2.4vw, 1.65rem);
  line-height: 1.45;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-chunks .intro-note {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-style: italic;
}

.hero-chunks .intro-note a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", ui-sans-serif, sans-serif;
}

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

h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 7.5vw, 5.9rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.lede {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #171717;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.intro-note,
.caption {
  color: var(--muted);
  font-size: 14px;
}

.discovery-tools {
  display: block;
  max-width: 980px;
  margin: clamp(50px, 7vw, 82px) auto 72px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.quick-tags > p {
  display: block;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.quick-tags {
  max-width: 780px;
  margin: 0 auto;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-hero .tag-list {
  justify-content: center;
}

.quick-tags .tag-list {
  justify-content: center;
  gap: 11px;
}

.tag,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill-radius);
  background: var(--tag-bg, var(--soft));
  color: var(--tag-text, #222);
  font-size: 12px;
  line-height: 1.2;
}

.project-card .tag,
.detail-hero .tag {
  border-color: transparent;
  background: var(--tag-bg, var(--soft));
  color: var(--tag-text, #181818);
}

.tag[data-tag="UX Research"],
.filter-chip[data-remove-filter="UX Research"] {
  --tag-bg: #f7d9d4;
  --tag-active-bg: #e9877c;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="UX/UI Design"],
.filter-chip[data-remove-filter="UX/UI Design"] {
  --tag-bg: #f9e5bf;
  --tag-active-bg: #e5b455;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="Graphic Design"],
.filter-chip[data-remove-filter="Graphic Design"] {
  --tag-bg: #e9e4ff;
  --tag-active-bg: #a99af6;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="Branding"],
.filter-chip[data-remove-filter="Branding"] {
  --tag-bg: #d8eee4;
  --tag-active-bg: #77c5a4;
  --tag-active-text: #10221a;
  --tag-text: #10221a;
}

.tag[data-tag="Visual Identity"],
.filter-chip[data-remove-filter="Visual Identity"] {
  --tag-bg: #d8eee4;
  --tag-active-bg: #77c5a4;
  --tag-active-text: #10221a;
  --tag-text: #10221a;
}

.tag[data-tag="ResearchOps"],
.filter-chip[data-remove-filter="ResearchOps"] {
  --tag-bg: #dff0fb;
  --tag-active-bg: #8ecbeb;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag[data-tag="Applied AI"],
.filter-chip[data-remove-filter="Applied AI"] {
  --tag-bg: #f4d8ec;
  --tag-active-bg: #dc8bc3;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag[data-tag="Machine Learning"],
.filter-chip[data-remove-filter="Machine Learning"] {
  --tag-bg: #e7efc8;
  --tag-active-bg: #bfdc67;
  --tag-active-text: #172006;
  --tag-text: #172006;
}

.tag[data-tag="Computer Vision"],
.filter-chip[data-remove-filter="Computer Vision"] {
  --tag-bg: #f6dcc8;
  --tag-active-bg: #e8a875;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag[data-tag="Data Science"],
.filter-chip[data-remove-filter="Data Science"] {
  --tag-bg: #d7e7ff;
  --tag-active-bg: #8fb8f6;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.tag[data-tag="Human Behavior"],
.filter-chip[data-remove-filter="Human Behavior"] {
  --tag-bg: #eee2d2;
  --tag-active-bg: #caaa82;
  --tag-active-text: #1f160d;
  --tag-text: #1f160d;
}

.tag[data-tag="Product Strategy"],
.filter-chip[data-remove-filter="Product Strategy"] {
  --tag-bg: #dff5ef;
  --tag-active-bg: #7fd6c2;
  --tag-active-text: #0e241e;
  --tag-text: #0e241e;
}

.tag[data-tag="Public"],
.filter-chip[data-remove-filter="Public"] {
  --tag-bg: #f2e0ff;
  --tag-active-bg: #c58bf1;
  --tag-active-text: #1f102b;
  --tag-text: #1f102b;
}

.tag[data-tag="Available by Request"],
.filter-chip[data-remove-filter="Available by Request"] {
  --tag-bg: #f7d9d4;
  --tag-active-bg: #e9877c;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="Data Analysis"],
.filter-chip[data-remove-filter="Data Analysis"] {
  --tag-bg: #d7e7ff;
  --tag-active-bg: #8fb8f6;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.tag[data-tag="Explainable AI"],
.filter-chip[data-remove-filter="Explainable AI"] {
  --tag-bg: #f4d8ec;
  --tag-active-bg: #dc8bc3;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag[data-tag="MLOps"],
.filter-chip[data-remove-filter="MLOps"] {
  --tag-bg: #dff0fb;
  --tag-active-bg: #8ecbeb;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag[data-tag="Guerrilla"],
.filter-chip[data-remove-filter="Guerrilla"] {
  --tag-bg: #ffe6d6;
  --tag-active-bg: #f1a66f;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag[data-tag="Automotive"],
.filter-chip[data-remove-filter="Automotive"] {
  --tag-bg: #f7d9d4;
  --tag-active-bg: #e9877c;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="Industry"],
.filter-chip[data-remove-filter="Industry"] {
  --tag-bg: #eef0f2;
  --tag-active-bg: #b5bdc7;
  --tag-active-text: #111820;
  --tag-text: #111820;
}

.tag[data-tag="Academic"],
.filter-chip[data-remove-filter="Academic"],
.tag[data-tag="Public"],
.filter-chip[data-remove-filter="Public"] {
  --tag-bg: #f2e0ff;
  --tag-active-bg: #c58bf1;
  --tag-active-text: #1f102b;
  --tag-text: #1f102b;
}

.tag[data-tag="Freelance"],
.filter-chip[data-remove-filter="Freelance"] {
  --tag-bg: #e9e4ff;
  --tag-active-bg: #a99af6;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="Personal"],
.filter-chip[data-remove-filter="Personal"] {
  --tag-bg: #eee2d2;
  --tag-active-bg: #caaa82;
  --tag-active-text: #1f160d;
  --tag-text: #1f160d;
}

.tag[data-tag="Volunteer"],
.filter-chip[data-remove-filter="Volunteer"] {
  --tag-bg: #dff5ef;
  --tag-active-bg: #7fd6c2;
  --tag-active-text: #0e241e;
  --tag-text: #0e241e;
}

.tag[data-tag="Ongoing"],
.filter-chip[data-remove-filter="Ongoing"],
.tag[data-tag="Connected vehicles"],
.filter-chip[data-remove-filter="Connected vehicles"] {
  --tag-bg: #dff0fb;
  --tag-active-bg: #8ecbeb;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag[data-tag="Systems thinking"],
.filter-chip[data-remove-filter="Systems thinking"] {
  --tag-bg: #e7efc8;
  --tag-active-bg: #bfdc67;
  --tag-active-text: #172006;
  --tag-text: #172006;
}

.tag[data-tag="Remote commands"],
.filter-chip[data-remove-filter="Remote commands"] {
  --tag-bg: #f9e5bf;
  --tag-active-bg: #e5b455;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag[data-tag="Trust"],
.filter-chip[data-remove-filter="Trust"] {
  --tag-bg: #f4d8ec;
  --tag-active-bg: #dc8bc3;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag[data-tag="Safety-adjacent UX"],
.filter-chip[data-remove-filter="Safety-adjacent UX"] {
  --tag-bg: #f6dcc8;
  --tag-active-bg: #e8a875;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag[data-tag="Visual decision support"],
.filter-chip[data-remove-filter="Visual decision support"] {
  --tag-bg: #d7e7ff;
  --tag-active-bg: #8fb8f6;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.tag[data-tag="Stakeholder Interviews"],
.filter-chip[data-remove-filter="Stakeholder Interviews"],
.tag[data-tag="Interviews"],
.filter-chip[data-remove-filter="Interviews"],
.tag[data-tag="Contextual Inquiry"],
.filter-chip[data-remove-filter="Contextual Inquiry"] {
  --tag-bg: #eee2d2;
  --tag-active-bg: #caaa82;
  --tag-active-text: #1f160d;
  --tag-text: #1f160d;
}

.tag[data-tag="Prototyping"],
.filter-chip[data-remove-filter="Prototyping"],
.tag[data-tag="Wireframing"],
.filter-chip[data-remove-filter="Wireframing"],
.tag[data-tag="Design Systems"],
.filter-chip[data-remove-filter="Design Systems"] {
  --tag-bg: #f9e5bf;
  --tag-active-bg: #e5b455;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

/* Tag colours live in CSS classes so production CSP does not block them. */
.tag.tag-ux-research,
.filter-chip.tag-ux-research {
  --tag-bg: #f7d9d4;
  --tag-active-bg: #e9877c;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag.tag-ux-ui-design,
.filter-chip.tag-ux-ui-design {
  --tag-bg: #f9e5bf;
  --tag-active-bg: #e5b455;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag.tag-graphic-design,
.filter-chip.tag-graphic-design {
  --tag-bg: #e9e4ff;
  --tag-active-bg: #a99af6;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag.tag-branding,
.filter-chip.tag-branding {
  --tag-bg: #d8eee4;
  --tag-active-bg: #77c5a4;
  --tag-active-text: #10221a;
  --tag-text: #10221a;
}

.tag.tag-researchops,
.filter-chip.tag-researchops {
  --tag-bg: #dff0fb;
  --tag-active-bg: #8ecbeb;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag.tag-applied-ai,
.filter-chip.tag-applied-ai {
  --tag-bg: #f4d8ec;
  --tag-active-bg: #dc8bc3;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag.tag-machine-learning,
.filter-chip.tag-machine-learning {
  --tag-bg: #e7efc8;
  --tag-active-bg: #bfdc67;
  --tag-active-text: #172006;
  --tag-text: #172006;
}

.tag.tag-computer-vision,
.filter-chip.tag-computer-vision {
  --tag-bg: #f6dcc8;
  --tag-active-bg: #e8a875;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag.tag-data-science,
.filter-chip.tag-data-science {
  --tag-bg: #d7e7ff;
  --tag-active-bg: #8fb8f6;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.tag.tag-human-behavior,
.filter-chip.tag-human-behavior {
  --tag-bg: #eee2d2;
  --tag-active-bg: #caaa82;
  --tag-active-text: #1f160d;
  --tag-text: #1f160d;
}

.tag.tag-product-strategy,
.filter-chip.tag-product-strategy {
  --tag-bg: #dff5ef;
  --tag-active-bg: #7fd6c2;
  --tag-active-text: #0e241e;
  --tag-text: #0e241e;
}

.tag.tag-public,
.filter-chip.tag-public {
  --tag-bg: #ead7ff;
  --tag-active-bg: #b779ec;
  --tag-active-text: #1f102b;
  --tag-text: #1f102b;
}

.tag.tag-available-by-request,
.filter-chip.tag-available-by-request {
  --tag-bg: #fff0c7;
  --tag-active-bg: #dda642;
  --tag-active-text: #1f1708;
  --tag-text: #1f1708;
}

.tag.tag-data-analysis,
.filter-chip.tag-data-analysis {
  --tag-bg: #d2eef7;
  --tag-active-bg: #70bfdc;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag.tag-explainable-ai,
.filter-chip.tag-explainable-ai {
  --tag-bg: #f7d3e3;
  --tag-active-bg: #e376ad;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag.tag-mlops,
.filter-chip.tag-mlops {
  --tag-bg: #d4e6ff;
  --tag-active-bg: #7eacf0;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.tag.tag-guerrilla,
.filter-chip.tag-guerrilla {
  --tag-bg: #ffe6d6;
  --tag-active-bg: #f1a66f;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag.tag-interviews,
.filter-chip.tag-interviews {
  --tag-bg: #ede0f7;
  --tag-active-bg: #b891d8;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag.tag-stakeholder-interviews,
.filter-chip.tag-stakeholder-interviews {
  --tag-bg: #f0e3ce;
  --tag-active-bg: #c99f65;
  --tag-active-text: #1f160d;
  --tag-text: #1f160d;
}

.tag.tag-contextual-inquiry,
.filter-chip.tag-contextual-inquiry {
  --tag-bg: #dcebd5;
  --tag-active-bg: #94c27c;
  --tag-active-text: #172006;
  --tag-text: #172006;
}

.tag.tag-prototyping,
.filter-chip.tag-prototyping {
  --tag-bg: #ffe0cc;
  --tag-active-bg: #ee9962;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag.tag-wireframing,
.filter-chip.tag-wireframing {
  --tag-bg: #e1dcf8;
  --tag-active-bg: #9b8fe3;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag.tag-design-systems,
.filter-chip.tag-design-systems {
  --tag-bg: #d2f0ea;
  --tag-active-bg: #73cdbb;
  --tag-active-text: #0e241e;
  --tag-text: #0e241e;
}

.tag.tag-automotive,
.filter-chip.tag-automotive {
  --tag-bg: #ffd8ca;
  --tag-active-bg: #ea8c6c;
  --tag-active-text: #161616;
  --tag-text: #161616;
}

.tag.tag-industry,
.filter-chip.tag-industry {
  --tag-bg: #eef0f2;
  --tag-active-bg: #b5bdc7;
  --tag-active-text: #111820;
  --tag-text: #111820;
}

.tag.tag-academic,
.filter-chip.tag-academic {
  --tag-bg: #d8e7ff;
  --tag-active-bg: #86afea;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.tag.tag-freelance,
.filter-chip.tag-freelance {
  --tag-bg: #eadcf5;
  --tag-active-bg: #b388d3;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag.tag-personal,
.filter-chip.tag-personal {
  --tag-bg: #f1dfcd;
  --tag-active-bg: #c59a73;
  --tag-active-text: #1f160d;
  --tag-text: #1f160d;
}

.tag.tag-volunteer,
.filter-chip.tag-volunteer {
  --tag-bg: #d5eddd;
  --tag-active-bg: #81c293;
  --tag-active-text: #0e241e;
  --tag-text: #0e241e;
}

.tag.tag-ongoing,
.filter-chip.tag-ongoing {
  --tag-bg: #d9eaf0;
  --tag-active-bg: #84bdcf;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag.tag-systems-thinking,
.filter-chip.tag-systems-thinking {
  --tag-bg: #edf0c8;
  --tag-active-bg: #c5d66f;
  --tag-active-text: #172006;
  --tag-text: #172006;
}

.tag.tag-connected-vehicles,
.filter-chip.tag-connected-vehicles {
  --tag-bg: #d2eefa;
  --tag-active-bg: #77c6e8;
  --tag-active-text: #10202b;
  --tag-text: #10202b;
}

.tag.tag-remote-commands,
.filter-chip.tag-remote-commands {
  --tag-bg: #fae4bd;
  --tag-active-bg: #e0ac4e;
  --tag-active-text: #1f1708;
  --tag-text: #1f1708;
}

.tag.tag-trust,
.filter-chip.tag-trust {
  --tag-bg: #f3d7ec;
  --tag-active-bg: #d486bd;
  --tag-active-text: #21111c;
  --tag-text: #21111c;
}

.tag.tag-safety-adjacent-ux,
.filter-chip.tag-safety-adjacent-ux {
  --tag-bg: #f4ddcf;
  --tag-active-bg: #dd9f75;
  --tag-active-text: #1e130b;
  --tag-text: #1e130b;
}

.tag.tag-visual-decision-support,
.filter-chip.tag-visual-decision-support {
  --tag-bg: #d4e5fb;
  --tag-active-bg: #84b2ed;
  --tag-active-text: #10203a;
  --tag-text: #10203a;
}

.quick-tags button.tag {
  border-color: transparent;
  color: #181818;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.quick-tags button.tag:hover {
  transform: translateY(-1px);
  border-color: rgb(0 0 0 / 10%);
}

button.tag {
  cursor: pointer;
}

button.tag.is-active,
.filter-chip {
  border-color: var(--tag-active-bg, #e9877c);
  background: var(--tag-active-bg, #e9877c) !important;
  color: var(--tag-active-text, #161616);
}

.quick-tags button.tag.is-active {
  border-color: var(--tag-active-bg, #e9877c);
  background: var(--tag-active-bg, #e9877c) !important;
  color: var(--tag-active-text, #161616);
}

button.tag:hover:not(.is-active) {
  border-color: rgb(0 0 0 / 10%);
}

.library-layout {
  display: grid;
  gap: 72px;
}

.filter-sidebar {
  display: none;
}

.filter-heading,
.results-bar,
.drawer-header,
.drawer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-heading h2,
.results-bar h2,
.drawer-header h2 {
  margin-bottom: 0;
}

.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.filter-group {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.filter-group summary::after {
  color: var(--muted);
  content: "+";
  font-size: 18px;
  font-weight: 400;
}

.filter-group[open] summary::after {
  content: "−";
}

.filter-options {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.filter-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4c514a;
  font-size: 13px;
  cursor: pointer;
}

.filter-option input {
  width: 15px;
  height: 15px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.results-bar {
  margin-bottom: 26px;
  padding-top: 2px;
}

.filter-trigger {
  padding: 11px 16px;
  border: 0;
  border-radius: var(--pill-radius);
  background: var(--soft);
  font-size: 13px;
  cursor: pointer;
}

.filter-trigger span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  font-size: 10px;
}

.active-filters {
  display: grid;
  gap: 12px;
  min-height: 1px;
  margin-bottom: 20px;
}

.active-filter-group {
  display: grid;
  gap: 8px;
}

.active-filter-group-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.active-filter-group-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 0;
  cursor: pointer;
}

.project-grid {
  display: grid;
  gap: 34px;
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.project-card:hover {
  background: #fafafa;
}

.project-card:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.related-projects-section {
  margin-top: clamp(82px, 10vw, 140px);
}

.related-projects-section > h2 {
  text-align: center;
}

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

.related-project-grid .project-card {
  min-height: 100%;
}

.related-case-study-section {
  margin-top: clamp(72px, 8vw, 120px);
}

.related-case-study-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 8px 8px 18px rgb(0 0 0 / 4%);
  text-align: center;
}

.related-case-study-card h2 {
  margin-top: 0.45rem;
}

.related-case-study-card p:not(.eyebrow) {
  max-width: 58ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.related-case-study-card a {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.related-case-study-card a:hover {
  text-decoration: underline;
}

.project-visual {
  position: relative;
  display: grid;
  min-height: 220px;
  overflow: hidden;
  place-items: center;
  background: color-mix(in srgb, var(--project-bg, var(--soft)) 32%, white);
}

.project-visual.has-image {
  background: var(--soft);
}

.project-visual.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-visual::before,
.project-visual::after {
  position: absolute;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 50%;
  content: "";
}

.project-visual::before {
  width: 210px;
  height: 210px;
}

.project-visual::after {
  width: 330px;
  height: 330px;
}

.project-visual.has-image::before,
.project-visual.has-image::after {
  display: none;
}

.visual-mark {
  position: relative;
  z-index: 1;
  font-family: "Manrope", "Inter", ui-sans-serif, sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.visual-index {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.project-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.project-meta span + span::before,
.detail-meta span + span::before {
  margin-right: 12px;
  color: #b5bab2;
  content: "·";
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
}

.project-description {
  min-height: 72px;
  margin-bottom: 20px;
  color: #333;
  font-size: 15px;
}

.project-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 0;
}

.project-footer .tag-list {
  flex: 1;
}

.card-action {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.card-action span {
  display: inline-block;
  margin-left: 5px;
}

.empty-state {
  padding: 80px 20px;
  border: 1px dashed #cdd1ca;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state > span {
  display: block;
  margin-bottom: 16px;
  color: #a1a69e;
  font-size: 44px;
}

.empty-state p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--pill-radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: #2e6f56;
  background: #2e6f56;
  color: white;
}

.button-secondary {
  border: 0;
  background: var(--soft);
}

.button:disabled {
  color: #8b9088;
  cursor: not-allowed;
}

.filter-drawer {
  width: min(100%, 520px);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 26px 24px;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.filter-drawer::backdrop {
  background: rgb(13 17 14 / 42%);
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-size: 25px;
  cursor: pointer;
}

.drawer-actions {
  position: sticky;
  bottom: -26px;
  margin: 24px -24px -26px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background: white;
}

.content-view {
  max-width: var(--max-width);
}

.content-hero {
  max-width: 880px;
  margin: 0 auto clamp(90px, 12vw, 160px);
  text-align: center;
}

.content-hero > p:not(.eyebrow):not(.lede):not(.hero-subtitle):not(.hero-question) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  color: #333;
  font-size: 17px;
}

.content-hero > p.hero-subtitle,
.content-hero > p.hero-question {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.content-hero > p.hero-subtitle span,
.content-hero > p.hero-question strong {
  font: inherit;
}

.content-hero > p.hero-subtitle {
  display: inline-block;
  margin-bottom: 34px;
  padding: 0 0.35em;
  border-radius: 4px;
  background: #ffd978;
  line-height: 1.08;
}

.content-hero .hero-subtitle span {
  display: inline;
}

.content-hero > p.hero-question {
  margin-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
}

.experiment-hero .experiment-highlight {
  display: inline;
  padding: 0 0.32em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: #ffd978;
  color: var(--ink);
  line-height: 1.35;
}

.content-section {
  max-width: 980px;
  margin: 0 auto clamp(90px, 12vw, 150px);
}

.timeline-section {
  max-width: 720px;
  margin-top: calc(clamp(90px, 12vw, 150px) * -0.45);
}

.path-timeline {
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.path-timeline li {
  position: relative;
  min-width: min(100%, 360px);
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: var(--pill-radius);
  background: white;
  box-shadow: 0 18px 50px rgb(0 0 0 / 4%);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.path-timeline li + li {
  margin-top: 42px;
}

.path-timeline li:not(:last-child)::after {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  color: var(--muted);
  content: "↓";
  font-size: 22px;
  line-height: 1;
  transform: translateX(-50%);
}

.journey-section,
.connected-section {
  max-width: 1180px;
}

.section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.section-heading .section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  white-space: nowrap;
}

.section-heading p:not(.eyebrow) {
  color: #333;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  white-space: nowrap;
}

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  grid-auto-rows: 240px;
  gap: 0 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-timeline::before {
  position: absolute;
  top: 32px;
  bottom: calc(240px - 32px);
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.journey-timeline li {
  position: relative;
  max-width: 470px;
  min-height: 0;
}

.journey-timeline li:nth-child(odd) {
  grid-column: 1 / 2;
  justify-self: end;
}

.journey-timeline li:nth-child(even) {
  grid-column: 3 / 4;
  justify-self: start;
}

.journey-timeline li:nth-child(1) {
  grid-row: 1;
}

.journey-timeline li:nth-child(2) {
  grid-row: 2;
}

.journey-timeline li:nth-child(3) {
  grid-row: 3;
}

.journey-timeline li:nth-child(4) {
  grid-row: 4;
}

.journey-timeline li:nth-child(5) {
  grid-row: 5;
}

.journey-timeline li:nth-child(6) {
  grid-row: 6;
}

.journey-icon,
.connection-node span,
.connection-center span {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-family: "Manrope", "Inter", ui-sans-serif, sans-serif;
}

.journey-icon {
  position: absolute;
  top: -4px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 1px solid rgb(0 0 0 / 6%);
  background: var(--journey-color, white);
  box-shadow: none;
}

.journey-timeline li:nth-child(odd) .journey-icon {
  right: -115px;
}

.journey-timeline li:nth-child(even) .journey-icon {
  left: -115px;
}

.journey-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.journey-timeline li:nth-child(1) {
  --journey-color: #e9e4ff;
}

.journey-timeline li:nth-child(2) {
  --journey-color: #f9e5bf;
}

.journey-timeline li:nth-child(3) {
  --journey-color: #f7d9d4;
}

.journey-timeline li:nth-child(4) {
  --journey-color: #dff0fb;
}

.journey-timeline li:nth-child(5) {
  --journey-color: #e7efc8;
}

.journey-timeline li:nth-child(6) {
  --journey-color: #f4d8ec;
}

.journey-timeline h3 {
  display: inline;
  margin-bottom: 12px;
  padding: 0 0.18em;
  border-radius: 3px;
  background: var(--journey-color, transparent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
}

.journey-timeline li > div {
  display: grid;
  justify-items: start;
}

.journey-timeline p {
  max-width: 390px;
  margin-top: 12px;
  color: #3f3f3f;
  font-size: 15.5px;
  line-height: 1.55;
}

.connected-section {
  margin-top: clamp(80px, 10vw, 130px);
}

.connected-system {
  position: relative;
  width: min(100%, 760px);
  min-height: 760px;
  margin: -24px auto 0;
}

.connection-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68vw, 560px);
  height: min(68vw, 560px);
  border: 1px solid rgb(0 0 0 / 28%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.connection-ring::before,
.connection-ring::after {
  content: none;
}

.connection-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(44vw, 300px);
  height: min(44vw, 300px);
  min-height: 0;
  place-items: center;
  padding: 40px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #f6f6f6 0%, #ededed 100%);
  text-align: center;
  transform: translate(-50%, -50%);
}

.connection-node svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.connection-center h3 {
  margin: 0 0 2px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.connection-center p {
  margin: -4px 0 0;
  color: #444;
  font-size: 14px;
}

.connection-node {
  position: absolute;
  top: var(--node-y);
  left: var(--node-x);
  display: grid;
  width: 180px;
  justify-items: center;
  text-align: center;
  transform: translate(-50%, -36px);
  outline: 0;
}

.connection-node span {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border: 1px solid rgb(0 0 0 / 6%);
  background: var(--node-color);
  box-shadow: none;
}

.connection-node h3 {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 3;
  margin: 0;
  padding: 7px 11px;
  border-radius: var(--pill-radius);
  background: var(--node-color);
  box-shadow: 0 8px 24px rgb(0 0 0 / 8%);
  font-size: 1.08rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.connection-node:hover h3,
.connection-node:focus-visible h3 {
  opacity: 1;
  transform: translate(-50%, 0);
}

.node-design {
  --node-color: #e9e4ff;
  --node-x: 50%;
  --node-y: calc(50% - 280px);
}

.node-ui {
  --node-color: #f9e5bf;
  --node-x: calc(50% + 242px);
  --node-y: calc(50% - 140px);
}

.node-research {
  --node-color: #f7d9d4;
  --node-x: calc(50% + 242px);
  --node-y: calc(50% + 140px);
}

.node-ops {
  --node-color: #dff0fb;
  --node-x: calc(50% - 242px);
  --node-y: calc(50% + 140px);
}

.node-ml {
  --node-color: #e7efc8;
  --node-x: calc(50% - 242px);
  --node-y: calc(50% - 140px);
}

.node-ai {
  --node-color: #f4d8ec;
  --node-x: 50%;
  --node-y: calc(50% + 280px);
}

.principle-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.principle-grid article {
  position: relative;
  min-height: 230px;
  padding: 32px 4px;
  border-bottom: 1px solid var(--line);
}

.principle-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 11px;
}

.principle-grid p {
  max-width: 300px;
  color: var(--muted);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.interest-card {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.interest-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 10px;
}

.interest-card h3 {
  margin-bottom: 0;
  font-size: 15px;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inline-cta p {
  margin: 0;
}

.inline-cta a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.reading-layout {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 80px;
}

.reading-index {
  display: none;
}

.reading-index a,
.reading-index .disabled-index-link {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.reading-index .disabled-index-link {
  position: relative;
  cursor: not-allowed;
  opacity: 0.48;
}

.reading-index .disabled-index-link:hover,
.reading-index .disabled-index-link:focus-visible {
  opacity: 0.7;
}

.reading-index a:hover {
  background: var(--soft);
  color: var(--ink);
}

.reading-index a.is-active {
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.reading-content {
  max-width: 760px;
}

.reading-content section {
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}

.reading-content h2 {
  margin-bottom: 28px;
}

.reading-content p {
  color: #151515;
  font-size: 18px;
  line-height: 1.65;
}

.reading-content h3 {
  margin: 42px 0 18px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.reading-content h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.experiment-opening {
  font-size: clamp(1.2rem, 2vw, 1.45rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.04em;
}

.experiment-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.experiment-system-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 22px;
  border-radius: calc(var(--radius) * 0.85);
  background: white;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 2.5%);
}

.experiment-system-grid p,
.experiment-ai-section p,
.experiment-ai-section li,
.experiment-evolution p {
  font-size: 16px;
  line-height: 1.55;
}

.experiment-ai-section {
  margin-top: 52px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.experiment-section-label {
  margin: 0 0 14px !important;
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  line-height: 1 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experiment-ai-section h3 {
  margin-top: 0;
}

.experiment-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.experiment-tag-list li {
  padding: 8px 12px;
  border-radius: var(--pill-radius);
  background: #f1f1ef;
  box-shadow: none;
}

.experiment-evolution {
  margin-top: 56px;
}

.experiment-process {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.experiment-process li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
}

.experiment-process li:not(:last-child)::after {
  color: var(--muted);
  font-weight: 400;
  content: "→";
}

.question-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: questions;
}

.question-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border-radius: calc(var(--radius) * 0.85);
  background: white;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 2.5%);
  counter-increment: questions;
}

.question-list li::before {
  content: none;
}

.question-list + p {
  margin-top: 34px;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 20px;
  border-radius: calc(var(--radius) * 0.85);
  background: white;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 2.5%);
}

.dashboard-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.dashboard-placeholder article {
  min-height: 130px;
  padding: 20px;
  background: white;
}

.dashboard-placeholder span {
  display: block;
  margin-bottom: 35px;
  color: #a7ada4;
  font-size: 27px;
}

.dashboard-placeholder p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}

.contact-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.contact-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-card p {
  max-width: 420px;
  color: var(--muted);
}

.contact-card .button {
  margin-top: 30px;
}

.primary-contact {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.primary-contact .eyebrow,
.primary-contact p {
  color: rgb(255 255 255 / 88%);
}

.primary-contact:hover {
  border-color: #0a66c2;
  background: #0a66c2;
}

.primary-contact > .arrow {
  display: none;
}

.contact-link-cue {
  position: absolute;
  right: 28px;
  bottom: 22px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.contact-link-arrow {
  font-size: 1.6rem;
  line-height: 1;
}

.location-card {
  background: white;
}

.back-link {
  margin-bottom: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.detail-hero {
  max-width: min(1320px, calc(100vw - 2rem));
  margin: 0 auto 72px;
  text-align: center;
}

.detail-hero h1 {
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  width: 100%;
  max-width: min(1320px, calc(100vw - 2rem));
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: normal;
  hyphens: auto;
}

.detail-hero .lede {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.detail-description {
  max-width: 980px;
  margin: 0 auto 26px;
  color: #41463f;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
}

.detail-hero .project-visual {
  min-height: min(46vw, 600px);
  margin-top: 64px;
  border-radius: 0;
}

.project-visual-caption {
  max-width: 980px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: center;
}

.project-visual-caption a {
  color: var(--ink);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-hero .visual-mark {
  font-size: clamp(70px, 15vw, 180px);
}

.detail-jump-links {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  max-width: 920px;
  margin: 0 auto 110px;
  padding-bottom: 8px;
  justify-content: center;
}

.detail-jump-links a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 0;
  border-radius: var(--pill-radius);
  background: var(--soft);
  font-size: 12px;
  text-decoration: none;
}

.detail-section {
  max-width: 980px;
  margin: 0 auto 120px;
  scroll-margin-top: 120px;
}

.project-reading-layout {
  max-width: min(2040px, calc(100vw - 72px));
  margin-top: 40px;
}

.project-reading-content {
  max-width: 1700px;
}

.project-reading-content .detail-section {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.summary-grid,
.contribution-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 35px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.summary-grid {
  gap: 38px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.summary-grid article,
.contribution-grid article {
  min-height: 180px;
  padding: 24px;
  background: white;
}

.summary-grid article {
  min-height: 210px;
  padding: 30px 34px;
  border-radius: 12px;
  background: white;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
}

.summary-grid h3,
.contribution-grid h3 {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.summary-grid h3 {
  margin-bottom: 16px;
  color: #111;
  font-size: 18px;
  font-weight: 650;
}

.summary-grid p,
.contribution-grid p {
  color: #41463f;
}

.summary-grid p {
  white-space: pre-line;
}

.responsibility-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.responsibility-chip-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #eef0f2;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.summary-grid strong {
  color: #111;
  font-weight: 650;
}

.summary-grid a {
  color: #111;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.summary-grid a:hover {
  color: var(--muted);
}

.case-summary-notice {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border-radius: 12px;
  background: #f8f8f6;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
}

.contribution-note {
  max-width: 760px;
  margin: 0 0 34px;
  color: #41463f;
}

.contribution-stage-grid {
  display: grid;
  gap: 38px;
  margin-top: 34px;
}

.contribution-stage-grid article {
  min-height: 210px;
  padding: 30px 34px;
  border-radius: 12px;
  background: white;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
}

.contribution-stage-grid h3 {
  margin-bottom: 16px;
  color: #111;
  font-size: 18px;
  font-weight: 650;
}

.contribution-stage-grid p {
  color: #41463f;
}

.project-public-section .section-copy {
  max-width: 900px;
}

.project-reading-content > .detail-section > h2,
.connected-full-story > h2 {
  line-height: 1.18;
  padding-bottom: 0.08em;
  text-align: center;
}

.connected-public-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
}

.connected-public-split.media-left {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.connected-section-media {
  min-width: 0;
}

.project-image-frame {
  display: grid;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f6f6f4;
}

.project-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.project-image-with-caption {
  display: grid;
  gap: 12px;
  margin: clamp(34px, 5vw, 58px) 0 0;
}

.project-image-with-caption figcaption {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.45;
  text-align: center;
}

.project-image-frame.phone-frame {
  max-width: 360px;
  margin-left: auto;
  padding: clamp(16px, 3vw, 28px);
  background: #f8f8f7;
}

.project-image-frame.phone-frame img {
  width: min(100%, 280px);
}

.project-image-frame.overview-frame {
  background: transparent;
  border-radius: 0;
}

.project-image-frame.overview-frame img {
  width: auto;
  max-width: 100%;
  max-height: clamp(360px, 42vw, 560px);
  object-fit: contain;
}

.connected-centered-section {
  text-align: center;
}

.connected-centered-section .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.connected-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
  margin-top: clamp(34px, 5vw, 58px);
}

.project-image-frame.public-artifact-frame {
  background: transparent;
  border-radius: 12px;
}

.project-image-frame.public-artifact-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.connected-public-research .artifact-carousel,
.connected-wide-carousel .artifact-carousel {
  margin-top: 0;
}

.connected-wide-carousel {
  margin-top: clamp(48px, 6vw, 80px);
}

.connected-design-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 56px);
}

.connected-design-pair article {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 3%);
}

.connected-design-pair h2 {
  margin-bottom: 18px;
}

.connected-gif-section {
  margin-top: clamp(-44px, -4vw, -20px);
}

.connected-gif-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1040px;
  margin: 0 auto;
}

.project-image-frame.gif-frame {
  background: transparent;
}

.project-image-frame.gif-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.project-bullet-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 28px 0 0;
  padding-left: 20px;
  color: #41463f;
  font-size: 18px;
  line-height: 1.6;
}

.insight-card-grid {
  display: grid;
  gap: 38px;
  margin-top: 34px;
}

.connected-insight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.insight-card-grid article {
  min-height: 190px;
  padding: 30px 34px;
  border-radius: 12px;
  background: white;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
}

.insight-card-grid h3 {
  margin-bottom: 16px;
  color: #111;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.insight-card-grid p {
  color: #41463f;
  font-size: 0.96rem;
  line-height: 1.45;
}

.design-direction-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.design-direction-card-grid article {
  display: flex;
  align-items: center;
  min-height: 112px;
  padding: 20px 18px;
  border-radius: 12px;
  background: white;
  box-shadow: 2px 2px 6px rgb(0 0 0 / 3%);
  color: #41463f;
  font-size: 0.95rem;
  line-height: 1.35;
}

.connected-failure-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.connected-failure-split h2 {
  text-align: left;
}

.impact-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.impact-card-grid article {
  min-height: 140px;
  padding: 24px 26px;
  border-radius: 12px;
  background: white;
  box-shadow: 2px 2px 6px rgb(0 0 0 / 3%);
  color: #41463f;
  font-size: 1.1rem;
  line-height: 1.45;
}

.impact-card-grid strong {
  color: #111;
  font-weight: 650;
}

.project-image-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at center, transparent 0 26%, #ddd 26.3% 26.7%, transparent 27% 100%),
    linear-gradient(135deg, #fafafa, #f4f4f1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.protected-story-cta {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 12px;
  background: var(--soft);
  text-align: center;
}

.protected-story-cta > p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.protected-story-cta .access-form {
  max-width: 520px;
  margin: 34px auto 18px;
}

.protected-story-cta .button-secondary {
  display: inline-flex;
  margin-top: 6px;
  text-decoration: none;
}

.private-content-root {
  display: contents;
}

.protected-access-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.protected-access-clarification {
  font-size: 0.92rem;
}

.protected-content-shell {
  position: relative;
}

.protected-review-notice {
  margin: 0 auto clamp(56px, 7vw, 90px);
  max-width: 1120px;
}

.protected-review-notice .protected-watermark {
  margin-bottom: 1.75rem;
}

.protected-watermark {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1;
  margin: 0 auto 2rem;
  max-width: max-content;
  padding: 0.55rem 0.85rem;
  position: sticky;
  top: 4.5rem;
  z-index: 8;
}

.confidentiality-notice {
  background: #f8f8f6;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 3rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.research-repository-case {
  --research-card-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
}

.research-repository-intro {
  margin-bottom: clamp(44px, 7vw, 88px);
  text-align: center;
}

.research-section {
  max-width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.research-section > h2,
.research-section > h3 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.research-section > h2 {
  margin-bottom: 14px;
}

.research-section > h3 {
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.research-section .section-copy,
.research-section > p,
.research-section > .privacy-note,
.research-section > .confidentiality-notice {
  max-width: 900px;
}

.research-documentation-note {
  margin-top: 42px;
  margin-bottom: 42px;
  text-align: left;
}

.research-documentation-note h3 {
  margin-bottom: 10px;
  color: #111;
  font-size: 1.1rem;
}

.researchops-framework {
  margin-top: 34px;
}

.researchops-framework-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: clamp(300px, 36vw, 460px);
  padding: clamp(24px, 4vw, 52px);
  border-radius: 12px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 18%, transparent 18.5%),
    #f8f8f6;
}

.researchops-framework-visual span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 14px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--research-card-shadow);
  color: #41463f;
  font-size: 0.95rem;
  text-align: center;
}

.researchops-framework-visual .framework-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(220px, 46vw);
  height: min(220px, 46vw);
  transform: translate(-50%, -50%);
  background: #eef0f2;
  color: #111;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.researchops-framework figcaption,
.project-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.research-flow {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 14px;
}

.research-flow-item {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.research-flow-item span {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--research-card-shadow);
}

.research-flow-item i {
  margin-left: 18px;
  color: var(--muted);
  font-style: normal;
}

.research-principle-grid,
.research-roadmap-grid,
.research-value-grid {
  display: grid;
  gap: 22px;
  margin: 28px 0 44px;
}

.research-principle-grid article,
.research-roadmap-grid article,
.research-value-grid article {
  padding: 26px 28px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--research-card-shadow);
}

.research-principle-grid h3,
.research-roadmap-grid h3,
.research-value-grid h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 700;
}

.research-principle-grid p,
.research-roadmap-grid p,
.research-value-grid p,
.research-principle-grid li,
.research-roadmap-grid li,
.research-value-grid li {
  color: #41463f;
  font-size: 0.96rem;
  line-height: 1.45;
}

.research-roadmap-grid ul,
.research-value-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15rem;
}

.internal-campaign-case .research-section > h2 {
  text-align: center;
}

.internal-campaign-case .research-section > h3,
.internal-campaign-case .internal-section-subtitle {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.internal-campaign-case .internal-section-subtitle {
  max-width: 980px;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.22;
}

.internal-campaign-case .internal-centered-copy {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.internal-campaign-case .internal-centered-copy p {
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.internal-bridge-copy {
  margin-top: clamp(28px, 4vw, 46px);
}

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

.internal-campaign-case .research-principle-grid article,
.internal-campaign-case .research-roadmap-grid article,
.internal-campaign-case .research-value-grid article,
.internal-campaign-case .insight-card-grid article,
.internal-campaign-case .internal-iteration-grid article {
  min-height: 140px;
  padding: 24px 26px;
  border-radius: 12px;
  background: white;
  box-shadow: 2px 2px 6px rgb(0 0 0 / 3%);
}

.internal-campaign-case .research-principle-grid article,
.internal-campaign-case .research-roadmap-grid article,
.internal-campaign-case .research-value-grid article,
.internal-campaign-case .insight-card-grid article,
.internal-campaign-case .internal-iteration-grid article,
.internal-campaign-case .impact-card-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.internal-principle-grid h3 {
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
}

.internal-principle-grid p {
  font-size: clamp(0.95rem, 1vw, 1.02rem);
}

.internal-wide-image .project-image-frame,
.project-image-frame.internal-wide-image {
  width: 100%;
  background: transparent;
}

.internal-wide-image .project-image-frame img,
.project-image-frame.internal-wide-image img {
  width: 100%;
  max-height: min(76vh, 780px);
  object-fit: contain;
}

.internal-research-question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(46px, 5vw, 72px);
}

.internal-framing-copy {
  margin-top: clamp(30px, 4vw, 54px);
}

.internal-bias-note {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(1.04rem, 1.25vw, 1.15rem);
  text-align: left;
}

.internal-campaign-case .internal-bias-note p {
  text-align: left;
}

.internal-methodology-layout {
  display: block;
  margin-top: clamp(48px, 6vw, 80px);
}

.internal-methodology-layout .section-copy {
  max-width: 980px;
}

.internal-methodology-layout h3 {
  text-align: center;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.internal-iterations-block {
  margin-top: clamp(34px, 5vw, 60px);
  text-align: center;
}

.internal-iteration-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.internal-iteration-grid article {
  min-height: 116px;
}

.internal-iteration-grid h3 {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.internal-iteration-showcase {
  display: grid;
  gap: clamp(42px, 6vw, 78px);
  margin-top: clamp(34px, 5vw, 64px);
  margin-bottom: clamp(42px, 6vw, 78px);
}

.internal-iteration-showcase > article {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
}

.internal-iteration-showcase > article.internal-text-only-iteration {
  display: grid;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.internal-iteration-showcase h3 {
  margin-bottom: 18px;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  text-align: center;
}

.internal-iteration-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.internal-round-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.internal-round-card-grid.internal-three-up-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.internal-round-card-grid article {
  min-height: 118px;
  padding: 18px 20px;
  text-align: center;
}

.internal-round-card-grid h3 {
  margin-bottom: 8px;
  color: #111;
  font-size: 1rem;
  letter-spacing: 0;
}

.internal-round-card-grid p {
  font-size: 0.94rem;
}

.internal-campaign-case .artifact-carousel {
  margin-top: 0;
}

.internal-campaign-case .artifact-slide img {
  max-height: min(70vh, 740px);
}

.internal-carousel-caption {
  text-align: center;
}

.internal-campaign-case .project-image-with-caption figcaption {
  text-align: center;
}

.internal-evidence-copy {
  margin-top: clamp(34px, 5vw, 60px);
  margin-bottom: 24px;
}

.internal-supported-subtitle {
  margin-top: clamp(48px, 6vw, 80px);
}

.internal-reflection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.internal-report-image {
  margin-top: 0;
}

.internal-report-image .project-image-frame,
.project-image-frame.internal-report-image {
  background: transparent;
}

.internal-report-image .project-image-frame img,
.project-image-frame.internal-report-image img {
  width: 100%;
  max-height: min(68vh, 640px);
  object-fit: contain;
}

.internal-campaign-case .impact-card-grid h3 {
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.22;
}

.research-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border-radius: 12px;
  background: var(--line);
}

.research-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 1.1fr;
  gap: 1px;
}

.research-table [role="columnheader"],
.research-table [role="cell"] {
  padding: 18px 20px;
  background: white;
}

.research-table [role="columnheader"] {
  font-size: 0.95rem;
}

.research-table [role="cell"] {
  color: #41463f;
  line-height: 1.45;
}

.access-status-page {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 2rem;
}

.access-status-panel {
  margin: 0 auto;
  max-width: 720px;
}

.access-status-panel h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
}

.access-confirmed-meta,
.available-case-studies {
  margin-top: 1.5rem;
}

.available-case-studies {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.admin-access-page {
  min-height: 100vh;
  padding: clamp(32px, 6vw, 96px);
}

.admin-access-shell {
  margin: 0 auto;
  max-width: 1080px;
}

.admin-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: clamp(20px, 3vw, 36px);
}

.admin-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-card label,
.admin-card fieldset {
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 650;
}

.admin-card input,
.admin-card select,
.admin-card textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-weight: 400;
  padding: 0.85rem 0.95rem;
}

.admin-card fieldset {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.admin-helper-text {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
}

.admin-card fieldset label,
.checkbox-row {
  align-items: center;
  display: flex;
  gap: 0.6rem;
}

.admin-grant-item {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 0;
}

.admin-grant-item h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.admin-grant-item p {
  color: var(--muted);
  margin: 0.15rem 0;
}

.admin-grant-actions {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.admin-grant-actions label {
  display: grid;
  gap: 0.35rem;
  min-width: 220px;
  font-size: 0.78rem;
  font-weight: 650;
}

.admin-grant-actions input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.story-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.story-menu button {
  position: relative;
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #42463f;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  transition: color 160ms ease;
}

.story-menu button:hover {
  color: #111;
}

.story-menu button.is-active {
  color: #111;
  font-weight: 700;
}

.story-menu button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #111;
  content: "";
}

.project-journey-section .story-menu {
  position: sticky;
  z-index: 18;
  top: 72px;
  justify-content: center;
  margin: clamp(24px, 4vw, 42px) auto clamp(34px, 5vw, 58px);
  padding: 16px 0 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -24px 0 24px rgba(255, 255, 255, 0.96);
}

.story-slider {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  margin-top: 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-slider::-webkit-scrollbar {
  display: none;
}

.connected-full-story {
  max-width: min(1680px, calc(100vw - 64px));
  padding-top: clamp(24px, 4vw, 48px);
}

.connected-full-story > h2 {
  text-align: center;
}

.connected-story-intro {
  max-width: 860px;
  margin: 24px auto 26px;
  text-align: center;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.5;
}

.story-stepper {
  position: sticky;
  z-index: 19;
  top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  gap: 18px 30px;
  margin: clamp(28px, 4vw, 48px) auto clamp(62px, 7vw, 96px);
  padding: 18px 0 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -24px 0 24px rgba(255, 255, 255, 0.96);
}

.story-stepper a,
.story-stepper button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.story-stepper span {
  display: none;
}

.story-stepper em {
  display: block;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.25;
  color: #5e635c;
  transition: color 160ms ease;
}

.story-stepper i {
  display: none;
}

.story-stepper button:hover em,
.story-stepper button.is-active em {
  color: #111;
  font-weight: 700;
}

.connected-story-section {
  max-width: 1760px;
  margin: 0 auto clamp(110px, 12vw, 170px);
  scroll-margin-top: 96px;
}

.connected-report-slider {
  display: block;
  overflow: hidden;
  scroll-behavior: smooth;
}

.connected-report-slide {
  display: none;
  width: 100%;
  margin-bottom: 0;
}

.connected-report-slide.is-active {
  display: grid;
}

.connected-report-two-column,
.connected-report-slide.centered-title-section,
.connected-report-slide.report-with-carousel {
  display: grid;
  grid-template-columns: minmax(520px, 0.82fr) minmax(800px, 1.18fr);
  align-items: start;
  gap: clamp(42px, 5.6vw, 112px);
}

.connected-report-two-column > *,
.connected-report-slide.report-with-carousel > *,
.roles-tasks-layout > * {
  min-width: 0;
}

.connected-report-slide.centered-title-section > h3 {
  display: none;
}

.connected-report-slide.centered-title-section > :not(.artifact-carousel) {
  grid-column: 1;
}

.connected-report-slide.centered-title-section > .artifact-carousel {
  grid-column: 2;
  grid-row: 1 / span 10;
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.connected-report-slide.report-with-carousel > .artifact-carousel {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.connected-report-slide.report-with-carousel {
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
}

.connected-report-slide.report-with-carousel .artifact-carousel {
  width: min(100%, 1600px);
}

.connected-report-slide.report-with-carousel .artifact-carousel-window {
  width: 100%;
}

.connected-report-slide.report-with-carousel .artifact-slide img {
  width: 100%;
  max-height: min(86vh, 980px);
}

.roles-tasks-layout {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}

.connected-report-slider .connected-report-slide:not(.is-active) {
  display: none !important;
}

.connected-report-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
  text-align: left;
}

.connected-report-copy h4,
.next-steps-columns h4 {
  max-width: none;
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
}

.connected-report-copy p,
.connected-report-copy ol,
.connected-report-copy ul {
  max-width: none;
  margin: 0;
}

.connected-report-copy ol,
.connected-report-copy ul {
  padding-left: 1.25rem;
}

.connected-report-copy .connected-story-subsection {
  margin-top: 14px;
}

.roles-tasks-layout h3 {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: left;
  white-space: nowrap;
}

.roles-tasks-layout ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.roles-tasks-layout li {
  display: flex;
  min-height: 118px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: white;
  box-shadow: 2px 2px 6px rgb(0 0 0 / 3%);
  text-align: center;
  overflow-wrap: anywhere;
}

.roles-tasks-layout li small {
  display: block;
  max-width: 18ch;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.25;
}

.connected-report-two-column p,
.connected-report-two-column ol,
.connected-report-two-column ul,
.connected-report-slide.centered-title-section > p,
.connected-report-slide.centered-title-section > ol,
.connected-report-slide.centered-title-section > ul,
.connected-report-slide.centered-title-section > h4,
.connected-report-slide.centered-title-section > .connected-story-subsection {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.connected-story-section h3 {
  margin-bottom: clamp(34px, 5vw, 60px);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}

.connected-story-section h4 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
}

.connected-story-section p,
.connected-story-section li {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.48;
}

.connected-story-section p,
.connected-story-section ol,
.connected-story-section ul {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.connected-story-section ol,
.connected-story-section ul {
  margin-top: 18px;
  margin-bottom: 38px;
}

.connected-story-section li + li {
  margin-top: 4px;
}

.connected-story-section.centered-title-section h3,
.connected-story-section.next-steps-section h3 {
  margin-bottom: clamp(46px, 7vw, 92px);
}

.connected-story-subsection {
  margin-top: clamp(76px, 10vw, 140px);
}

.connected-story-section .connected-report-copy h4,
.connected-story-section .next-steps-columns h4 {
  max-width: none;
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
}

.connected-story-section .connected-report-copy p,
.connected-story-section .connected-report-copy ol,
.connected-story-section .connected-report-copy ul,
.connected-story-section .next-steps-columns p {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.connected-story-section .connected-report-copy p,
.connected-story-section .connected-report-copy ol,
.connected-story-section .connected-report-copy ul {
  margin-top: 0;
  margin-bottom: 0;
}

.connected-story-section .connected-report-copy ol,
.connected-story-section .connected-report-copy ul {
  padding-left: 1.25rem;
}

.connected-story-section .connected-report-copy .connected-story-subsection {
  margin-top: 14px;
}

.connected-story-section .roles-tasks-layout h3 {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: left;
  white-space: nowrap;
}

.next-steps-section {
  display: block;
}

.next-steps-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 90px);
}

.next-steps-section h4,
.next-steps-section p,
.next-steps-columns p {
  margin-left: 0;
  max-width: none;
}

.artifact-carousel {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  grid-template-areas:
    "prev frame next"
    ". dots .";
  align-items: center;
  gap: 14px 14px;
  width: min(100%, 1380px);
  margin: clamp(46px, 6vw, 74px) auto 0;
}

.artifact-carousel > .artifact-carousel-arrow {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: transparent;
  font-size: 0;
  font-weight: 650;
  box-shadow: 1px 1px 4px rgb(0 0 0 / 4%);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  z-index: 2;
}

.artifact-carousel > .artifact-carousel-arrow::before {
  color: #111;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.artifact-carousel > .artifact-carousel-prev::before {
  content: "\2039";
}

.artifact-carousel > .artifact-carousel-next::before {
  content: "\203A";
}

.artifact-carousel > .artifact-carousel-arrow:hover {
  background: #f7f7f5;
  box-shadow: 1px 1px 6px rgb(0 0 0 / 6%);
  transform: translateY(-1px);
}

.artifact-carousel > .artifact-carousel-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

.artifact-carousel > .artifact-carousel-arrow:disabled:hover {
  background: #fff;
  box-shadow: 1px 1px 4px rgb(0 0 0 / 4%);
}

.artifact-carousel > .artifact-carousel-prev {
  grid-area: prev;
}

.artifact-carousel > .artifact-carousel-next {
  grid-area: next;
}

.artifact-carousel-window {
  grid-area: frame;
  overflow: hidden;
  border-radius: 12px;
}

.artifact-slide {
  display: none;
  margin: 0;
}

.artifact-slide.is-active {
  display: block;
}

.artifact-slide img {
  display: block;
  width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}

.artifact-placeholder {
  display: grid;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  place-items: center;
  border-radius: 18px;
  background: #353737;
  color: #6a6f73;
}

.artifact-placeholder span {
  display: grid;
  width: min(62%, 520px);
  aspect-ratio: 16 / 9;
  place-items: center;
  border-radius: 8px;
  background: #f8f8f7;
  outline: 3px solid rgba(255, 255, 255, 0.2);
  color: #6b7075;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.artifact-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e7e7e7;
}

.artifact-dot {
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c4c4c4;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.artifact-dot:hover {
  background: #999;
  transform: scale(1.12);
}

.artifact-dot.is-active {
  background: #777;
}

.story-slide {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 42px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 38px;
  border-radius: 12px;
  background: white;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.story-slide-copy > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
}

.story-slide h3 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.story-slide p {
  max-width: 660px;
  margin-bottom: 18px;
  color: #484d46;
}

.story-slide--chapter {
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  aspect-ratio: auto;
  min-height: min(72vh, 760px);
}

.story-slide-copy--wide {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

.story-slide-copy--wide h3 {
  text-align: center;
}

.story-topic-stack {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.story-topic {
  width: 100%;
}

.story-topic h4 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
  text-align: center;
}

.story-topic p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.story-slide-visual {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at center, transparent 0 28%, #ddd 28.3% 28.7%, transparent 29% 100%),
    linear-gradient(135deg, #fafafa, #f4f4f1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.project-journey-section .story-slider {
  margin-top: 0;
  padding: 0 0 24px;
}

.project-journey-section .story-slide {
  align-items: start;
  aspect-ratio: auto;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.project-journey-section .story-slide-copy--wide {
  width: min(100%, 980px);
}

.project-journey-section .story-topic-stack {
  gap: clamp(38px, 5vw, 64px);
  margin-top: clamp(34px, 5vw, 58px);
}

.project-journey-section .story-topic {
  padding-top: clamp(6px, 1.5vw, 18px);
}

.project-journey-section .story-topic + .story-topic {
  border-top: 1px solid var(--line);
}

.project-journey-section .story-topic h4 {
  max-width: 860px;
}

.project-journey-section .story-topic p {
  max-width: 860px;
}

.eggsplore-story-slide {
  width: 100%;
}

.eggsplore-story-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.75fr);
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
}

.eggsplore-story-split--carousel {
  grid-template-columns: minmax(330px, 0.58fr) minmax(620px, 1.42fr);
  gap: clamp(24px, 3vw, 42px);
}

.cv-story-centered-media {
  display: grid;
  align-content: start;
  align-items: start;
  justify-items: center;
  gap: clamp(18px, 2.6vw, 30px);
}

.cv-story-centered-copy {
  width: min(100%, 880px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.cv-story-centered-copy h4 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.cv-story-centered-copy p {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.cv-story-centered-media .eggsplore-story-media {
  width: min(100%, 1160px);
  margin-top: 0;
}

.cv-story-centered-media .eggsplore-story-media img {
  max-height: min(82vh, 820px);
}

.cv-story-centered-media .eggsplore-story-media figcaption {
  text-transform: none;
}

.eggsplore-story-wide {
  display: grid;
  justify-items: center;
  gap: clamp(30px, 4vw, 54px);
}

.eggsplore-story-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.eggsplore-story-copy {
  min-width: 0;
}

.eggsplore-story-copy h4 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.12;
}

.eggsplore-story-copy p {
  max-width: 760px;
  color: #484d46;
  text-align: left;
}

.cv-story-centered-media .eggsplore-story-card-grid {
  margin-top: 0;
  margin-bottom: 0;
}

.cv-story-centered-copy p {
  text-align: left;
}

.eggsplore-story-copy strong {
  color: #111;
  font-weight: 700;
}

.eggsplore-story-centered .eggsplore-story-copy {
  width: min(100%, 980px);
}

.eggsplore-story-centered .eggsplore-story-copy h4,
.eggsplore-story-centered .eggsplore-story-copy p {
  margin-right: auto;
  margin-left: auto;
}

.eggsplore-story-centered .eggsplore-story-copy h4 {
  text-align: center;
}

.eggsplore-story-centered .eggsplore-story-copy p {
  text-align: left;
}

.eggsplore-story-intro {
  width: min(100%, 860px);
  margin-right: auto;
  margin-left: auto;
}

.eggsplore-story-intro p {
  margin-right: 0;
  margin-left: 0;
}

.eggsplore-story-media {
  align-self: start;
  margin-top: 0;
}

.eggsplore-story-media .project-image-frame {
  background: transparent;
}

.eggsplore-story-media img {
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
}

.eggsplore-story-note {
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f1f2f0;
  color: #41463f;
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: left;
}

.eggsplore-story-card-grid {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.eggsplore-flow-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(34px, 4vw, 48px) 0;
}

.cv-scope-cards,
.cv-model-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: clamp(30px, 4vw, 44px) 0;
}

.cv-scope-cards {
  width: min(100%, 1160px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 0;
}

.cv-learning-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: clamp(30px, 4vw, 44px) 0;
}

.eggsplore-next-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(28px, 4vw, 44px) 0;
}

.eggsplore-story-card-grid article {
  min-width: 0;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
}

.eggsplore-story-card-grid h5 {
  margin: 0 0 10px;
  color: #111;
  font-size: 1rem;
  line-height: 1.25;
}

.eggsplore-story-card-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef0f2;
  color: #42463f;
  font-size: 0.76rem;
  font-weight: 650;
}

.eggsplore-story-card-grid p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.eggsplore-guidance-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.eggsplore-guidance-cards article {
  padding: 14px 16px;
  background: #f8f8f6;
  box-shadow: none;
}

.eggsplore-guidance-cards h5 {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.eggsplore-guidance-cards p {
  font-size: 0.86rem;
}

.eggsplore-story-carousel {
  width: min(100%, 1280px);
  margin-top: 0;
}

.eggsplore-story-split--carousel .eggsplore-story-carousel {
  grid-template-columns: 26px minmax(0, 1fr) 26px;
  gap: 10px;
  width: min(100%, 980px);
}

.eggsplore-story-split--carousel .artifact-carousel-window {
  min-width: 0;
}

.eggsplore-carousel-slide {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(260px, 0.58fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(18px, 3vw, 34px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
}

.eggsplore-story-split--carousel .eggsplore-carousel-slide {
  padding: clamp(14px, 2vw, 22px);
}

.eggsplore-carousel-slide .project-image-frame {
  background: transparent;
}

.eggsplore-carousel-slide img {
  width: 100%;
  max-height: min(74vh, 720px);
  object-fit: contain;
}

.eggsplore-carousel-slide--image-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.eggsplore-carousel-slide--image-only img {
  max-height: min(82vh, 860px);
}

.eggsplore-carousel-slide figcaption {
  color: #41463f;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.58;
}

.eggsplore-carousel-slide figcaption p {
  max-width: 36rem;
  margin: 0 0 1rem;
}

.cv-learning-cards h5 {
  text-align: left;
}

@media (max-width: 1500px) {
  .eggsplore-story-split--carousel {
    grid-template-columns: 1fr;
  }

  .eggsplore-story-split--carousel .eggsplore-story-copy {
    width: min(100%, 820px);
  }

  .eggsplore-story-split--carousel .eggsplore-story-carousel {
    width: 100%;
  }
}

.contribution-ai-assisted-egg-identification-application .contribution-note {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.contribution-ai-assisted-egg-identification-application .contribution-note p {
  text-align: left;
}

.contribution-bird-egg-species-identification-computer-vision .contribution-note {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.contribution-bird-egg-species-identification-computer-vision .contribution-note p {
  text-align: left;
}

.contribution-ai-assisted-egg-identification-application .contribution-stage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.project-artifacts-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  margin-top: 34px;
}

.project-artifact {
  display: grid;
  gap: 14px;
  margin: 0;
}

.project-image-frame.artifact-poster-frame {
  width: min(100%, 980px);
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
}

.project-image-frame.artifact-poster-frame img {
  width: 100%;
  max-height: min(86vh, 980px);
  object-fit: contain;
}

.project-artifact figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.story-row {
  display: grid;
  gap: 18px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.story-row > span {
  color: var(--muted);
  font-size: 11px;
}

.story-row p {
  max-width: 660px;
  margin-bottom: 0;
  color: #484d46;
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-item {
  min-height: 280px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-item:nth-child(2) {
  background: var(--warm);
}

.gallery-item:nth-child(3) {
  background: var(--accent-soft);
}

.gallery-item:nth-child(4n) {
  background: #f6eadf;
}

.gallery-item:nth-child(4n + 1) {
  background: #eef4f7;
}

.gallery-item span {
  color: var(--muted);
  font-size: 11px;
}

.gallery-item div {
  width: 60%;
  height: 55%;
  margin: 45px auto 0;
  border: 1px solid rgb(21 23 19 / 25%);
  border-radius: 50%;
}

.technical-columns {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.technical-columns article {
  padding: 24px;
  background: white;
}

.technical-columns h3,
.privacy-note h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.technical-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #41463f;
}

.privacy-note {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--soft);
}

.restricted-panel {
  max-width: 720px;
  margin: 20px auto 100px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.restricted-icon {
  display: none;
  width: 60px;
  height: 60px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  font-size: 23px;
}

.restricted-panel p {
  color: var(--muted);
}

.access-form {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin: 30px auto 24px;
  text-align: left;
}

.access-form label {
  font-size: 12px;
  font-weight: 700;
}

.access-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill-radius);
}

.form-message {
  min-height: 24px;
  color: #9b332c !important;
  font-size: 13px;
}

.form-message.is-success {
  color: #2e6f56 !important;
}

.restricted-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.restricted-actions a,
.restricted-actions button {
  color: var(--ink);
  font-size: 12px;
}

.restricted-actions .button-primary {
  min-width: 220px;
  color: white;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 54px clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-statement {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
}

.footer-meta {
  text-align: left;
}

.footer-meta p {
  margin-bottom: 3px;
}

@media (min-width: 700px) {
  .discovery-tools {
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    align-items: end;
  }

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

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

  .principle-grid article {
    padding: 28px;
    border-right: 1px solid var(--line);
  }

  .principle-grid article:first-child {
    padding-left: 0;
  }

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

  .interest-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-card:first-child {
    grid-row: span 2;
    min-height: 594px;
  }

  .summary-grid,
  .contribution-stage-grid,
  .insight-card-grid,
  .contribution-grid,
  .technical-columns {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .design-direction-card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .story-row {
    grid-template-columns: 120px 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .gallery-item:first-child {
    grid-row: span 2;
    min-height: 576px;
  }

  .footer-meta {
    text-align: right;
  }
}

@media (min-width: 1000px) {
  .library-layout {
    grid-template-columns: 245px minmax(0, 1fr);
    align-items: start;
  }

  .filter-sidebar {
    position: sticky;
    top: 100px;
    display: block;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 12px;
  }

  .filter-trigger {
    display: none;
  }

  .reading-layout {
    grid-template-columns: 170px minmax(0, 1440px);
    gap: 104px;
  }

  .reading-index {
    position: sticky;
    top: 120px;
    display: block;
    align-self: start;
  }

  .contribution-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

  .internal-campaign-case .internal-research-question-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .internal-campaign-case .internal-iteration-grid,
  .internal-campaign-case .internal-reflection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .internal-campaign-case .internal-round-card-grid.internal-three-up-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1380px) {
  .internal-methodology-layout {
    gap: 38px;
  }

  .internal-report-image {
    width: min(100%, 980px);
    margin-right: auto;
    margin-left: auto;
  }

  .connected-report-slide.report-with-carousel {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(28px, 5vw, 56px);
  }

  .connected-report-copy {
    width: min(100%, 760px);
    justify-items: start;
    text-align: left;
  }

  .connected-report-copy ol,
  .connected-report-copy ul {
    text-align: left;
  }

  .connected-report-slide.report-with-carousel .artifact-carousel {
    width: min(100%, 980px);
    margin-top: 0;
  }

  .connected-report-slide.report-with-carousel .artifact-slide img {
    max-height: min(72vh, 720px);
  }

  .connected-report-two-column,
  .connected-report-slide.centered-title-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .roles-tasks-layout {
    max-width: 980px;
    justify-items: stretch;
  }
}

@media (max-width: 980px) {
  .internal-iteration-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .internal-campaign-case .internal-principle-grid,
  .internal-campaign-case .internal-research-question-grid,
  .internal-campaign-case .internal-round-card-grid,
  .internal-campaign-case .internal-round-card-grid.internal-three-up-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .internal-research-question-grid,
  .internal-principle-grid,
  .internal-iteration-grid,
  .internal-campaign-case .internal-round-card-grid,
  .internal-campaign-case .internal-round-card-grid.internal-three-up-grid {
    grid-template-columns: 1fr;
  }

  .internal-campaign-case .internal-reflection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .internal-methodology-layout h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .internal-iteration-row {
    gap: 22px;
  }

  .connected-full-story {
    padding-top: 16px;
  }

  .connected-story-intro {
    font-size: 1rem;
  }

  .story-stepper {
    top: 56px;
    gap: 10px 18px;
    margin-bottom: 42px;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-right: 8px;
    padding-left: 8px;
    scrollbar-width: none;
  }

  .story-stepper::-webkit-scrollbar {
    display: none;
  }

  .story-stepper button {
    flex: 0 0 auto;
  }

  .story-stepper em {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .roles-tasks-layout ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roles-tasks-layout li,
  .roles-tasks-layout li:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .connected-report-copy {
    text-align: left;
    justify-items: start;
  }

  .case-summary-notice {
    text-align: left;
  }

  .researchops-framework-visual {
    grid-template-columns: 1fr;
    padding-top: 180px;
  }

  .researchops-framework-visual .framework-center {
    top: 92px;
    width: 132px;
    height: 132px;
    font-size: 1rem;
  }

  .researchops-framework-visual span {
    min-height: 64px;
  }

  .research-table,
  .research-table [role="row"] {
    display: grid;
    gap: 12px;
    background: transparent;
  }

  .research-table [role="row"]:first-child {
    display: none;
  }

  .research-table [role="row"] {
    padding: 18px;
    border-radius: 12px;
    background: white;
    box-shadow: 3px 3px 8px rgb(0 0 0 / 4%);
  }

  .research-table [role="cell"] {
    padding: 0;
  }

  .connected-report-slide.report-with-carousel .artifact-carousel {
    width: 100%;
  }

  .connected-report-slide.report-with-carousel .artifact-slide img {
    max-height: 64vh;
  }

  .roles-tasks-layout li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 12px) / 2);
  }

  .artifact-carousel {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
  }

  .artifact-carousel > .artifact-carousel-arrow {
    width: 28px;
    height: 28px;
  }

  .experiment-system-grid,
  .question-list,
  .insight-list {
    grid-template-columns: 1fr;
  }

  .experiment-process {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .internal-campaign-case .internal-reflection-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 0;
    align-items: center;
    justify-content: center;
    padding: max(16px, calc(env(safe-area-inset-top) + 10px)) 30px 14px;
  }

  .wordmark {
    display: none;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
  }

  .primary-nav a {
    font-size: 12px;
    text-align: center;
  }

  .projects-view,
  .content-view,
  .project-detail-view {
    padding-right: clamp(30px, 8vw, 42px);
    padding-left: clamp(30px, 8vw, 42px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .experiment-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.8rem);
  }

  .detail-hero h1 {
    white-space: normal;
  }

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

  .dashboard-placeholder {
    grid-template-columns: 1fr;
  }

  .project-reading-layout {
    max-width: none;
  }

  .story-slider {
    grid-auto-columns: 100%;
  }

  .story-slide {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    min-height: auto;
    padding: 24px;
  }

  .story-slide--chapter {
    min-height: auto;
  }

  .story-topic-stack {
    gap: 26px;
  }

  .eggsplore-story-split,
  .eggsplore-carousel-slide,
  .eggsplore-flow-cards,
  .cv-scope-cards,
  .cv-model-cards,
  .cv-learning-cards,
  .eggsplore-next-cards,
  .eggsplore-guidance-cards,
  .contribution-ai-assisted-egg-identification-application .contribution-stage-grid {
    grid-template-columns: 1fr;
  }

  .eggsplore-story-copy h4,
  .eggsplore-story-copy p,
  .eggsplore-story-intro p {
    max-width: none;
  }

  .eggsplore-story-centered .eggsplore-story-copy p {
    text-align: left;
  }

  .eggsplore-story-carousel {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .eggsplore-carousel-slide {
    padding: 18px;
  }

  .story-slide-visual {
    min-height: 240px;
  }

  .connected-public-split,
  .connected-public-split.media-left,
  .connected-image-pair,
  .connected-report-two-column,
  .connected-report-slide.centered-title-section,
  .connected-report-slide.report-with-carousel,
  .connected-design-pair,
  .connected-failure-split,
  .connected-gif-grid,
  .next-steps-columns,
  .related-project-grid {
    grid-template-columns: 1fr;
  }

  .connected-report-slide.centered-title-section > .artifact-carousel {
    grid-column: 1;
    grid-row: auto;
    margin-top: 28px;
  }

  .roles-tasks-layout ul {
    grid-template-columns: 1fr;
  }

  .roles-tasks-layout h3,
  .connected-story-section .roles-tasks-layout h3 {
    white-space: normal;
  }

  .roles-tasks-layout li:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .connected-insight-grid,
  .design-direction-card-grid {
    grid-template-columns: 1fr;
  }

  .connected-failure-split h2 {
    text-align: center;
  }

  .connected-public-split.media-left .connected-section-media {
    order: 2;
  }

  .project-image-frame.phone-frame {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .story-stepper {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .story-stepper a,
  .story-stepper button {
    min-width: max-content;
    scroll-snap-align: start;
  }

  .story-stepper i {
    display: none;
  }

  .connected-story-section h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .artifact-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "frame frame"
      "prev next"
      "dots dots";
    gap: 14px;
  }

  .artifact-carousel > .artifact-carousel-prev {
    justify-self: end;
  }

  .artifact-carousel > .artifact-carousel-next {
    justify-self: start;
  }

  .artifact-placeholder {
    min-height: 260px;
  }

  .artifact-placeholder span {
    width: 72%;
  }
}

@media (max-width: 840px) {
  .section-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .section-heading .section-title,
  .section-heading p:not(.eyebrow) {
    white-space: normal;
  }

  .journey-timeline {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 44px 18px;
    padding-left: 14px;
  }

  .journey-timeline::before {
    top: 28px;
    bottom: 28px;
    left: 42px;
  }

  .journey-timeline li,
  .journey-timeline li:nth-child(odd),
  .journey-timeline li:nth-child(even) {
    display: grid;
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    max-width: none;
  }

  .journey-timeline li:nth-child(odd) .journey-icon,
  .journey-timeline li:nth-child(even) .journey-icon {
    position: relative;
    top: -7px;
    left: auto;
    right: auto;
    grid-column: 1;
    justify-self: center;
  }

  .journey-timeline li > div {
    grid-column: 2;
    justify-items: start;
  }

  .connected-system {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .connection-ring {
    display: none;
  }

  .connection-center,
  .connection-node,
  .node-design,
  .node-ui,
  .node-research,
  .node-ops,
  .node-ml,
  .node-ai {
    position: static;
    width: auto;
    min-height: auto;
    transform: none;
  }

  .connection-center {
    width: 100%;
    margin-bottom: 12px;
    border-radius: var(--radius);
  }

  .connection-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: left;
  }

  .connection-node span {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 25px;
  }

  .connection-node h3 {
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
