@font-face { font-family: 'Bricolage Grotesque'; src: url('fonts/bricolage-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('fonts/bricolage-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('fonts/bricolage-700.ttf') format('truetype'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('fonts/bricolage-800.ttf') format('truetype'); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/instrument-400.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/instrument-400-italic.ttf') format('truetype'); font-style: italic; font-weight: 400; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/instrument-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/instrument-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/jetbrains-mono-400.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/jetbrains-mono-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/jetbrains-mono-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }

:root {
  --ink: #17142b;
  --ink-2: #3b3552;
  --ink-soft: #5b5473;
  --paper: #fbfaf7;
  --paper-2: #f4f1ea;
  --surface: #ffffff;
  --surface-tint: #f1edfd;
  --violet: #5326cf;
  --violet-2: #7c5ce8;
  --violet-dark: #2e1580;
  --lime: #d9ff71;
  --clay: #b8451f;
  --line: #e2dfd6;
  --line-dark: #c9c4b8;
  --max: 1240px;
  --reading: 68ch;
  --radius: 14px;
  --display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --shadow: 0 30px 80px -32px rgba(23, 20, 43, .28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; scrollbar-gutter: stable; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  opacity: 1;
  transition: opacity 167ms ease;
}
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }
body > :not(script) { animation: page-fade-in 167ms ease-out both; }
body.is-page-leaving {
  opacity: 0;
  pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.05em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -.03em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.4vw, 5.1rem); }
h2 { font-size: clamp(1.95rem, 3.5vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.18; letter-spacing: -.02em; }
strong { font-weight: 600; color: var(--ink); }
::selection { background: var(--lime); color: var(--ink); }
:where(a, button, summary, input, [tabindex]):focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 100;
  background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 250, 247, .9); border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.4) blur(14px);
}
.nav__inner {
  max-width: var(--max); margin: auto; min-height: 64px; padding-inline: clamp(20px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 16px; line-height: 1; text-decoration: none; letter-spacing: -.02em; }
.nav__brand img { width: 24px; height: 24px; flex: 0 0 24px; }
.nav__links { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.nav__links a { padding: 8px 12px; border-radius: 99px; font-weight: 500; text-decoration: none; color: var(--ink-2); transition: color .18s ease, background .18s ease; }
.nav__links a:hover, .nav__links a:focus-visible { color: var(--violet); background: var(--surface-tint); }
.nav__cta { border: 1px solid var(--ink); color: var(--ink) !important; font-weight: 600 !important; }
.nav__cta:hover { background: var(--ink) !important; color: #fff !important; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: clamp(20px, 4vw, 44px); }
.eyebrow, .label {
  display: block; color: var(--violet); font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; line-height: 1.4; text-transform: uppercase;
}
.eyebrow { margin-bottom: 26px; }
.label { margin-bottom: 20px; }
.accent { color: var(--violet); }
.muted { color: var(--ink-soft); }
.electric-highlight { color: var(--violet); }

.home-hero { position: relative; padding: clamp(56px, 8vw, 108px) 0 clamp(44px, 5vw, 70px); overflow: hidden; }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(circle at 1px 1px, rgba(83,38,207,.17) 1px, transparent 0); background-size: 26px 26px; -webkit-mask-image: radial-gradient(115% 78% at 78% 8%, #000 0%, transparent 68%); mask-image: radial-gradient(115% 78% at 78% 8%, #000 0%, transparent 68%); }
.home-hero__grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); gap: clamp(28px,4vw,60px); align-items: end; margin-top: clamp(34px,4vw,52px); }
.home-title { max-width: 23ch; font-size: clamp(2.45rem, 4.6vw, 4.3rem); }
.home-intro { max-width: 54ch; color: var(--ink-2); font-size: clamp(1.02rem, 1.3vw, 1.16rem); line-height: 1.55; }
.home-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 12px 22px; border: 1px solid var(--ink); border-radius: 99px;
  background: var(--ink); color: white; font-family: var(--body); font-size: 14.5px; font-weight: 600; text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--violet-dark); }
.button--secondary { background: transparent; color: var(--ink); }
.button--secondary:hover { color: white; }

.signal-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line);
}
.signal { padding: 26px 26px; border-left: 1px solid var(--line); }
.signal:first-child { border-left: 0; padding-left: 0; }
.signal__value { font-family: var(--display); font-weight: 700; font-size: 1.16rem; line-height: 1.2; letter-spacing: -.02em; }
.signal__label { margin-top: 7px; color: var(--ink-soft); font-size: 13.5px; line-height: 1.45; }

.section { padding: clamp(72px, 9vw, 132px) 0; border-top: 1px solid var(--line); }
.section--no-rule { border-top: 0; }
.section--tight { padding-block: 74px; }
.section-head { display: grid; grid-template-columns: minmax(0,.62fr) minmax(0,1.38fr); gap: clamp(28px,5vw,76px); align-items: start; }
.section-head__copy { width: 100%; max-width: 720px; margin: 0; padding: 0; justify-self: end; }
.section-head__copy > p { margin-top: 12px; color: var(--ink-2); font-size: 15px; }
#work .section-head__copy h2,
#approach .section-head__copy h2 { width: 100%; max-width: none; font-size: 1.2rem; line-height: 1.18; text-wrap: wrap; }

.ai-expertise { display: grid; grid-template-columns: minmax(0,.62fr) minmax(0,1.38fr); gap: clamp(28px,5vw,76px); align-items: start; margin-top: 44px; padding: 30px 0; border-top: 1px solid var(--line); }
.ai-expertise__copy { width: 100%; max-width: 720px; margin: 0; justify-self: end; }
.ai-expertise__areas { display: grid; gap: 4px; }
.ai-expertise__areas h3 { width: 100%; max-width: none; font-size: 1.2rem; line-height: 1.18; }
.ai-expertise__copy > p { width: 100%; margin: 12px 0 0; color: var(--ink-2); font-size: 15px; }

.work-list { margin-top: clamp(40px,5vw,64px); display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.project {
  display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); gap: clamp(28px,4vw,56px); min-height: 0;
  padding: clamp(28px,3.5vw,42px) 0; border: 0; border-bottom: 1px solid var(--line-dark); background: transparent;
  color: inherit; text-decoration: none;
}
.project__media { position: relative; min-height: 380px; overflow: hidden; display: grid; place-items: center; padding: 30px 42px 0; border-radius: 22px; background: radial-gradient(circle at 48% 42%,#fff 0%,#f8f8fb 38%,#e9e8f3 100%); }
.project__media::before { content: none; }
.project__tag { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 5px 9px; border-radius: 99px; background: rgba(23,20,43,.72); color: #fff; font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; }
.project__media img { position: relative; z-index: 1; width: auto; max-width: 100%; height: 100%; max-height: 410px; object-fit: contain; object-position: bottom; transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.project:hover .project__media img { transform: scale(1.015); }
.project__media .project__cover--withdrawal { transform: scale(.82); }
.project:hover .project__media .project__cover--withdrawal { transform: scale(.84); }
.project__media .project__cover--closeup { transform: translateY(9%) scale(1.38); transform-origin: center top; }
.project:hover .project__media .project__cover--closeup { transform: translateY(9%) scale(1.4); }
.project__body { padding: 6px 0 4px; display: flex; flex-direction: column; justify-content: flex-start; }
.project__body h3 { width: 100%; max-width: none; margin: 0; font-size: 1.8rem; line-height: 1.18; }
.project__body p { width: 100%; max-width: none; margin: 12px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.62; }
.project__meta { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; align-items: end; gap: 24px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; }
.project__result { color: var(--violet); }
.project__arrow { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--body); font-size: 1.15rem; line-height: 1; transition: background .18s ease, color .18s ease; }
.project:hover .project__arrow { background: var(--violet); }

.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 44px; border-top: 1px solid var(--line); }
.fit-card { padding: 30px 34px 30px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.fit-card:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.fit-card__number { color: var(--violet); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; margin-bottom: 12px; }
.fit-card h3 { margin-bottom: 12px; font-size: 1.8rem; }
.fit-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

.recommendations.section { padding-block: clamp(64px,7vw,96px); }
#recommendations .section-head__copy h2 { width: 100%; max-width: none; font-size: 1.2rem; line-height: 1.18; text-wrap: wrap; }
.document-carousel.recommendations-carousel { width: 100%; max-width: none; margin: 38px 0 0; }
.recommendation-group { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.document-carousel.recommendations-carousel .recommendation-group {
  transition: opacity .28s ease;
}
.recommendation-card { display: flex; min-height: 300px; padding: 26px 24px 22px; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.recommendation-card__quote { height: 38px; color: var(--line-dark); font-family: Georgia,serif; font-size: 4rem; font-weight: 700; line-height: .85; }
.recommendation-card blockquote { margin: 20px 0 28px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.recommendation-card__author { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 11px; align-items: center; margin-top: auto; }
.recommendation-card__initials { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--surface-tint); color: var(--violet); font: 600 10px/1 var(--mono); letter-spacing: .04em; }
.recommendation-card__author > span:last-child { display: grid; gap: 2px; min-width: 0; }
.recommendation-card__author strong { overflow: hidden; font-family: var(--display); font-size: .9rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.recommendation-card__author small { overflow: hidden; color: var(--ink-soft); font: 400 10px/1.35 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.recommendations-carousel .document-carousel__controls { grid-template-columns: 34px 1fr auto 34px; margin-top: 16px; }
.recommendations-carousel .document-carousel__controls > button { width: 34px; height: 34px; font-size: 1.3rem; }
.recommendations-carousel .document-carousel__pages button { width: 7px; height: 7px; }

.cta-band { position: relative; background: var(--ink); color: white; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.028) 0 1px,transparent 1px 7px); }
.cta-band .wrap { padding-block: clamp(80px, 10vw, 130px); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band__grid { display: block; }
.cta-band h2 { max-width: 700px; }
.cta-band p { color: #d7d2e8; max-width: 520px; margin-top: 24px; }
.cta-band .button { margin-top: 12px; background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* Case studies */
.case-hero { padding-block: clamp(48px, 6vw, 88px) 0; }
.case-hero__intro { margin-left: 0; }
.case-hero h1 { max-width: 20ch; font-size: clamp(2.45rem, 4.6vw, 4.3rem); }
.case-hero__dek { max-width: 58ch; margin-top: 26px; color: var(--ink-2); font-size: clamp(1.02rem, 1.3vw, 1.16rem); line-height: 1.55; }
.facts {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line); margin-top: clamp(42px, 5vw, 64px);
}
.fact { padding: 24px 24px 26px; border-left: 1px solid var(--line); font-size: 13px; line-height: 1.5; }
.fact:first-child { padding-left: 0; border-left: 0; }
.fact__key { margin-bottom: 10px; color: var(--violet); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.fact__value { color: var(--ink-2); font-size: 14px; font-weight: 400; }

.impact-bar { position: relative; background: var(--ink); color: white; overflow: hidden; }
.impact-bar::after { content: ""; position: absolute; inset: 0; opacity: .55; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.03) 0 1px,transparent 1px 7px); pointer-events: none; }
.impact-bar__inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); }
.impact { padding: clamp(34px,4vw,52px) 30px; border-left: 1px solid #383150; }
.impact:first-child { padding-left: 0; border-left: 0; }
.impact__number { color: var(--lime); font-family: var(--display); font-size: clamp(2.4rem,4.4vw,4.1rem); font-weight: 700; line-height: .95; letter-spacing: -.045em; }
.impact__label { max-width: 32ch; margin-top: 16px; color: #cdc7dd; font-size: 14px; line-height: 1.5; }

.story { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(32px,6vw,90px); align-items: start; }
.story__rail { position: sticky; top: 92px; align-self: start; }
.story__rail ol { list-style: none; margin: 20px 0 0; padding: 0; border-left: 1px solid var(--line); }
.story__rail li { margin-left: -1px; }
.story__rail a { display: block; padding: 7px 0 7px 16px; border-left: 2px solid transparent; color: var(--ink-soft); font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; text-decoration: none; transition: color .2s ease, border-color .2s ease; }
.story__rail a:hover { color: var(--violet); }
.story__rail a[aria-current="location"] { color: var(--violet); border-left-color: var(--violet); font-weight: 600; }
.story__body { min-width: 0; }
.story-block { scroll-margin-top: 92px; }
.story-anchor { scroll-margin-top: 92px; }
.story-block + .story-block { margin-top: clamp(64px,8vw,108px); padding-top: clamp(56px,7vw,96px); border-top: 1px solid var(--line); }
.story-block h2 { max-width: 30ch; }
.story-block__lead { max-width: var(--reading); margin-top: 22px; color: var(--ink-2); font-size: 1.08rem; line-height: 1.55; }
.story-subsection { margin-top: clamp(72px, 8vw, 112px); }
.story-subsection--fees { margin-top: clamp(88px, 9vw, 120px); }
.story-subsection--fees + .decision-grid { margin-top: clamp(64px, 6vw, 84px); }
.story-subsection--education { margin-top: clamp(88px, 9vw, 120px); }
.prose { max-width: var(--reading); margin-top: 26px; }
.prose p { color: var(--ink-2); }
.prose strong { color: var(--ink); }

.problem-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 34px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.problem-card { padding: clamp(26px, 3vw, 40px); border-left: 1px solid var(--line); }
.problem-card:first-child { border-left: 0; }
.problem-card h3 { margin-top: 18px; font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.problem-card p { margin: 20px 0 0; color: var(--ink-2); font-size: 15px; }

.evidence-list { margin-top: 34px; border-top: 1px solid var(--line-dark); }
.evidence-row { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 28px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.evidence-row__key { font-weight: 600; font-size: 14.5px; line-height: 1.4; }
.evidence-row__value { color: var(--ink-2); font-size: 15px; }

.heuristic-audit { margin-top: 46px; padding-top: 42px; }
.heuristic-audit > h3 { margin-top: 12px; font-size: clamp(1.5rem, 2.5vw, 2.15rem); }
.heuristic-audit > p { max-width: var(--reading); margin: 16px 0 0; color: var(--ink-2); font-size: 15px; }
.hotspots { display: grid; grid-template-columns: minmax(240px, 320px) minmax(0, 1fr); gap: clamp(24px, 4vw, 42px); margin-top: 30px; align-items: stretch; }
.hotspots__stage { position: relative; overflow: hidden; border: 0; border-radius: 22px; background: transparent; box-shadow: none; }
.hotspots__stage img { width: 100%; }
.hotspot { position: absolute; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: transparent; box-shadow: none; cursor: pointer; font-size: 0; line-height: 0; transform: translate(-50%, -50%); -webkit-tap-highlight-color: transparent; }
.hotspot::before, .hotspot::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; }
.hotspot::before { background: rgba(83,38,207,.32); animation: hotspot-ping 2.6s ease-out infinite; }
.hotspot::after { box-sizing: border-box; border: 2px solid #fff; background: var(--violet); box-shadow: 0 2px 8px -1px rgba(83,38,207,.55); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
@keyframes hotspot-ping {
  0% { opacity: .75; transform: scale(1); }
  35% { opacity: 0; transform: scale(2.6); }
  36% { opacity: 0; transform: scale(1); }
  50% { opacity: .75; }
  85%, 100% { opacity: 0; transform: scale(2.6); }
}
.hotspot:hover::after { transform: scale(1.22); }
.hotspot:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 50%; }
.hotspot.is-seen::before, .hotspot[aria-pressed="true"]::before { animation: none; opacity: 0; }
.hotspot.is-seen::after { background: var(--violet-2); }
.hotspot[aria-pressed="true"]::after { border-color: var(--ink); background: #f1edfc; box-shadow: 0 0 0 4px rgba(83,38,207,.16), 0 2px 8px -1px rgba(83,38,207,.45); transform: scale(1.22); }
.hotspots__panel { display: grid; grid-template-columns: minmax(0, 1fr); min-height: 360px; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.hotspots__panel > [data-hotspot-panel] { grid-area: 1 / 1; }
.hotspots__panel > [data-hotspot-panel][hidden] { display: block; visibility: hidden; pointer-events: none; }
.hotspots__meta { color: var(--violet); font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hotspots__panel h3 { margin: 13px 0 18px; font-size: 1.3rem; }
.hotspots__panel ul { margin: 0; padding: 0; list-style: none; }
.hotspots__panel li { position: relative; padding-left: 20px; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.hotspots__panel li + li { margin-top: 10px; }
.hotspots__panel li::before { content: "-"; position: absolute; left: 0; color: var(--violet); }
.hotspots__evidence-image { display: block; width: auto; max-width: 100%; max-height: 155px; margin-top: 20px; border: 1px solid var(--line); border-radius: 14px; object-fit: contain; object-position: left top; }
.hotspots__heur { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink-soft); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.hotspots__nav { display: flex; grid-column: 1; grid-row: 2; gap: 8px; margin-top: 24px; }
.hotspots__nav button { padding: 9px 14px; border: 1px solid var(--line-dark); border-radius: 99px; background: var(--paper); color: var(--ink-2); cursor: pointer; font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.hotspots__nav button:hover { border-color: var(--violet); background: var(--surface-tint); color: var(--violet); }

.insight { position: relative; margin-top: 40px; padding: clamp(30px,4vw,52px); border-radius: 22px; background: #4820b8; color: white; overflow: hidden; }
.insight--spaced { margin-top: 60px; margin-bottom: 60px; }
.insight::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,.16) 1px,transparent 0); background-size: 22px 22px; -webkit-mask-image: linear-gradient(200deg,#000,transparent 62%); mask-image: linear-gradient(200deg,#000,transparent 62%); pointer-events: none; }
.insight > * { position: relative; z-index: 1; }
.insight .label { color: var(--lime); }
.insight blockquote { margin: 0; max-width: 24ch; font-family: var(--display); font-size: clamp(1.6rem,3vw,2.9rem); font-weight: 700; line-height: 1.1; letter-spacing: -.032em; }
.insight p { max-width: 54ch; margin: 22px 0 0; color: #e2daff; font-size: 15.5px; }

.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.decision { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.decision__number { color: var(--violet); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.decision h3 { margin-top: 14px; }
.decision p { margin-top: 16px; color: var(--ink-2); font-size: 14.5px; }
.decision__tradeoff { padding-top: 16px; border-top: 1px solid var(--line); }
.decision--with-action { display: flex; flex-direction: column; }
.decision__action { margin-top: auto; padding-top: 22px; }
.decision__button { display: flex; width: 100%; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; border: 1px solid var(--violet); border-radius: 999px; background: transparent; color: var(--violet); font: 600 13px/1.3 var(--body); text-align: left; cursor: pointer; transition: background .18s ease, color .18s ease, opacity .18s ease; }
.decision__button:hover { background: var(--violet); color: #fff; }
.decision__button[aria-busy="true"] { opacity: .62; cursor: wait; }

.evidence-modal { width: min(1160px, calc(100% - 32px)); max-height: calc(100vh - 32px); margin: auto; padding: 0; border: 0; border-radius: 24px; background: var(--surface); color: var(--ink); box-shadow: 0 28px 80px rgba(23, 20, 43, .28); opacity: 0; transition: opacity .22s ease; }
.evidence-modal.is-visible { opacity: 1; }
.evidence-modal::backdrop { background: rgba(23, 20, 43, .66); opacity: 0; backdrop-filter: blur(5px); transition: opacity .22s ease; }
.evidence-modal.is-visible::backdrop { opacity: 1; }
.evidence-modal__panel { padding: clamp(22px, 4vw, 44px); }
.evidence-modal__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.evidence-modal__header .label { margin-bottom: 10px; }
.evidence-modal__header h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.evidence-modal__close { flex: 0 0 auto; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; background: var(--surface); color: var(--ink); font: 400 28px/1 Arial, sans-serif; cursor: pointer; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.evidence-modal__close:hover { border-color: var(--violet); background: var(--violet); color: #fff; }
.evidence-modal__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 30px; }
.evidence-modal__grid--single { grid-template-columns: 1fr; }
.evidence-modal figure { margin: 0; }
.evidence-modal img { display: block; width: 100%; border: 1px solid var(--line); border-radius: var(--radius); }
.evidence-modal__wide-board { overflow: hidden; border-radius: var(--radius); }
.evidence-modal__wide-board img { width: 140%; max-width: none; margin-left: -20%; }
.evidence-modal__wide-board--hmw img { width: auto; max-width: 100%; max-height: calc(100vh - 290px); margin-inline: auto; object-fit: contain; }
.evidence-modal figcaption { margin-top: 14px; color: var(--ink-2); font-size: 17px; line-height: 1.62; }
.evidence-modal--design-detail { width: min(949px, calc(100% - 32px)); max-height: calc(100vh - 32px); overflow: auto; }
.evidence-modal--design-detail .evidence-modal__grid { grid-template-columns: 1fr; }
.evidence-modal--design-detail figure { width: 100%; max-width: 853px; margin-inline: auto; }
.evidence-modal--design-detail img { display: block; width: auto; max-width: 100%; max-height: calc(100vh - 220px); margin-inline: auto; object-fit: contain; }
.evidence-modal--design-detail .document-carousel--modal { margin: 0 auto; }
.evidence-modal--design-detail .document-carousel--modal-spec img { width: auto; max-width: 100%; max-height: calc(100vh - 260px); object-fit: contain; }
.evidence-modal--design-detail .document-carousel--modal-spec .figure { transition-duration: .42s; }
.evidence-modal--design-detail .document-carousel--modal-spec .document-carousel__viewport { overflow: hidden; transition: height .42s ease; }
body.modal-open { overflow: hidden; }

.figure { margin: 34px 0 0; }
#problem > .figure:not(.figure--flow) { margin-top: 50px; }
.figure img { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.figure--flow img { border: 0; }
.figure--borderless img { background: transparent; border: 0; border-radius: 0; }
.figure figcaption { max-width: 70ch; margin: 12px 0 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; text-align: left; }
.figure--flow figcaption { max-width: none; }
.more { margin-top: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .18s ease; }
.more--after-carousel { margin-top: 48px; }
.more > summary { position: relative; display: block; min-height: 64px; list-style: none; cursor: pointer; padding: 22px 70px 20px 22px; color: var(--violet); font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; transition: background .18s ease; }
.more > summary::-webkit-details-marker { display: none; }
.more > summary::after { content: ""; position: absolute; right: 18px; top: 50%; display: block; width: 32px; height: 32px; border-radius: 50%; background-color: var(--violet); background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff); background-position: center, center; background-repeat: no-repeat, no-repeat; background-size: 12px 2px, 2px 12px; transform: translateY(-50%); transition: background-color .18s ease, transform .18s ease; }
.more[open] > summary { border-bottom: 1px solid var(--line); }
.more[open] > summary::after { background-image: linear-gradient(#fff, #fff); background-size: 12px 2px; }
.more:hover { border-color: var(--violet-2); }
.more > summary:hover { background: var(--surface-tint); }
.more > summary:hover::after { background-color: var(--violet-dark); transform: translateY(-50%) scale(1.08); }
.more > summary[aria-busy="true"] { cursor: wait; opacity: .68; }
.more.is-animating > summary { pointer-events: none; }
.more__body { padding: 24px 22px 28px; }
.more__body img { height: auto; object-fit: contain; }
.more__body > *:first-child { margin-top: 0; }
.more__body .figure:first-child { margin-top: 0; }
.more__count { display: inline-block; margin-left: 10px; color: var(--ink-soft); font-family: var(--mono); letter-spacing: .02em; text-transform: none; }
.hypothesis-board { margin-top: 0; border-top: 0; }
.hypothesis-board .evidence-row:last-child { border-bottom: 0; }
.persona-stack img + img { margin-top: 18px; }
.document-stack img { display: block; }
.document-stack img + img { margin-top: 18px; }
.document-carousel { max-width: 760px; margin-inline: auto; outline: none; }
.document-carousel.document-carousel--wide { width: 100%; max-width: 853px; margin: 34px 0 0; }
.document-carousel--wide .document-carousel__viewport,
.document-carousel--wide .figure,
.document-carousel--wide img { width: 100%; max-width: 100%; }
.document-carousel:focus-visible { border-radius: 18px; box-shadow: 0 0 0 3px rgba(79, 35, 208, .2); }
.document-carousel__viewport { display: grid; align-items: start; }
.document-carousel__viewport .figure { grid-area: 1 / 1; margin: 0; opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.document-carousel__viewport .figure.is-active { opacity: 1; pointer-events: auto; }
.document-carousel__viewport .figure[hidden] { display: none; }
.document-carousel__viewport img { width: 100%; }
.document-carousel__controls { position: relative; display: grid; grid-template-columns: 40px 1fr auto 40px; gap: 14px; align-items: center; margin-top: 18px; }
.document-carousel__controls > button { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--ink); border-radius: 50%; background: transparent; color: var(--ink); font-family: var(--body); font-size: 1.6rem; font-weight: 600; line-height: 1; cursor: pointer; transition: background .18s ease, color .18s ease; }
.document-carousel__controls > button:hover { background: var(--ink); color: #fff; }
.document-carousel__arrow { display: block; line-height: 1; }
[data-document-prev] .document-carousel__arrow { transform: rotate(180deg); }
.document-carousel__pages { position: absolute; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); }
.document-carousel__pages button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line-dark); cursor: pointer; }
.document-carousel__pages button[aria-current="true"] { background: var(--violet); }
.document-carousel__status { grid-column: 3; justify-self: end; color: var(--ink-soft); font: 500 11px/1.3 var(--mono); letter-spacing: .04em; text-transform: uppercase; }
@media (prefers-reduced-motion: reduce) {
  .evidence-modal, .evidence-modal::backdrop { transition: none; }
  .document-carousel__viewport .figure { transition: none; }
  .document-carousel.recommendations-carousel .recommendation-group { transition: none; }
}
.figure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.figure-grid .figure { margin: 0; }

.entry-stepper { margin-top: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.entry-stepper__tabs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.entry-stepper__tabs button { min-height: 64px; padding: 15px 12px; border: 0; border-right: 1px solid var(--line); background: var(--paper-2); color: var(--ink-soft); font: 500 11px/1.35 var(--mono); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .18s ease, color .18s ease; }
.entry-stepper__tabs button:last-child { border-right: 0; }
.entry-stepper__tabs button:hover { color: var(--violet); }
.entry-stepper__tabs button[aria-selected="true"] { background: var(--surface); color: var(--violet); box-shadow: inset 0 -3px 0 var(--violet); }
.entry-stepper__panel { padding: clamp(24px, 4vw, 44px); }
.entry-stepper__panel[hidden] { display: none; }
.entry-variant { display: grid; grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr); gap: clamp(28px, 5vw, 58px); align-items: start; }
.entry-variant__visual { display: flex; width: min(100%, 360px); min-height: var(--entry-copy-min-height, 0px); margin-inline: auto; flex-direction: column; align-items: center; }
.phone-demo { position: relative; width: 100%; aspect-ratio: 901 / 1746; }
.phone-demo video { position: absolute; z-index: 1; top: 4.8%; left: 10.3%; width: 79.4%; height: 90.6%; border: 0; border-radius: 10% / 5%; background: #000; object-fit: cover; opacity: 1; transition: opacity .24s ease-in-out; }
.phone-demo video.is-loop-fading { opacity: .18; }
.phone-demo img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; pointer-events: none; object-fit: contain; }
.entry-variant__copy { align-self: stretch; display: flex; min-width: 0; min-height: var(--entry-copy-min-height, 0px); flex-direction: column; }
.entry-variant__copy h3 { margin-top: 0; font-size: clamp(1.55rem, 3vw, 2.2rem); }
.entry-variant__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; width: 100%; margin-top: 18px; }
.variant-chip { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 12px; border-radius: 999px; font: 500 10.5px/1.25 var(--mono); letter-spacing: .045em; text-transform: uppercase; }
.variant-chip--green { background: #edf7d9; color: #3f6212; }
.variant-chip--red { background: #fdeae2; color: var(--clay); }
.variant-chip--violet { background: var(--surface-tint); color: var(--violet); }
.entry-variant__detail { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.entry-variant__detail strong { color: var(--ink); font-size: 13.5px; }
.entry-variant__detail p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.competitor-summary { margin: 34px 0 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.competitor-summary__heading { display: grid; grid-template-columns: 1.08fr .92fr; align-items: end; border-bottom: 1px solid var(--line); }
.competitor-summary__heading .label { padding: 26px 28px; }
.competitor-summary__heading h3 { max-width: 24ch; margin: 0; padding: 26px 28px; text-align: left; }
.competitor-summary__grid { display: grid; grid-template-columns: 1.08fr .92fr; }
.competitor-panel { min-width: 0; padding: 28px; }
.competitor-panel + .competitor-panel { border-left: 1px solid var(--line); }
.competitor-panel__header { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.competitor-panel h4 { max-width: 25ch; margin: 12px 0 0; font-family: var(--display); font-size: 1.15rem; line-height: 1.15; letter-spacing: -.02em; }
.competitor-panel h5 { margin: 0 0 12px; font-family: var(--mono); color: var(--violet); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.action-ranking { list-style: none; margin: 22px 0 0; padding: 0; border-top: 1px solid var(--line); }
.action-ranking li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 13px; }
.action-ranking li span { color: var(--violet); font-family: var(--mono); font-size: 10px; }
.action-ranking li strong { color: var(--ink); }
.competitor-note { margin: 16px 0 0; color: var(--ink-soft); font-size: 12.5px; line-height: 1.45; }
.competitor-panel__samples { display: grid; grid-template-columns: 1fr 1.09fr; gap: 10px; margin-top: 18px; align-items: start; }
.competitor-panel__samples img { display: block; width: 100%; height: auto; border-radius: 8px; }
.competitor-panel--terms h4 { margin-bottom: 24px; }
.term-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.term-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.term-list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 12px; line-height: 1.25; }
.term-list strong { min-width: 20px; color: var(--violet); font-family: var(--mono); font-size: 10px; text-align: right; }
.competitor-summary figcaption { padding: 14px 28px 17px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; line-height: 1.45; }

.result-table { margin-top: 30px; border-top: 1px solid var(--line-dark); }
.result-row { display: grid; grid-template-columns: 148px minmax(0,1fr); gap: 26px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.result-row__metric { color: var(--violet); font-family: var(--display); font-size: 1.32rem; font-weight: 700; letter-spacing: -.02em; }
.result-row__meaning { color: var(--ink-2); font-size: 15px; }

.before-after {
  --reveal-position: 50%;
  position: relative;
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-tint);
  touch-action: pan-y;
}
.before-after__image img { display: block; width: 100%; height: auto; }
.before-after__image--after { position: relative; z-index: 1; }
.before-after__image--before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--reveal-position)) 0 0);
}
.before-after__image--before img { height: 100%; object-fit: cover; object-position: left top; }
.before-after__divider {
  position: absolute;
  inset-block: 0;
  left: var(--reveal-position);
  z-index: 3;
  width: 2px;
  margin-left: -1px;
  background: var(--violet);
  pointer-events: none;
}
.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 10px 26px -10px rgba(23, 20, 43, .55);
  transform: translate(-50%, -50%);
}
.before-after__handle::before,
.before-after__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-block: 6px solid transparent;
  transform: translateY(-50%);
}
.before-after__handle::before { left: 12px; border-right: 8px solid #fff; }
.before-after__handle::after { right: 12px; border-left: 8px solid #fff; }
.before-after__label {
  position: absolute;
  z-index: 4;
  padding: 9px 13px 10px;
  border-radius: 8px;
  background: rgba(83, 38, 207, .94);
  color: #fff;
  pointer-events: none;
}
.before-after__label strong,
.before-after__label span { display: block; color: inherit; }
.before-after__label strong {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.before-after__label span { margin-top: 2px; color: #ddd5fa; font-size: 12px; line-height: 1.35; }
.before-after__label--before { left: 18px; bottom: 18px; }
.before-after__label--after { top: 18px; right: 18px; }
.before-after__range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: ew-resize;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}
.before-after__range::-webkit-slider-thumb { width: 1px; height: 100%; -webkit-appearance: none; }
.before-after__range::-moz-range-thumb { width: 1px; height: 100%; border: 0; }
.before-after__range:focus-visible { border-radius: var(--radius); outline: 3px solid var(--violet); outline-offset: -3px; opacity: 1; }
.before-after__hint {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  text-align: center;
}

.caveat { margin-top: 32px; padding: 22px 26px; border: 1px dashed var(--line-dark); border-radius: var(--radius); background: var(--paper-2); font-size: 14.5px; color: var(--ink-2); }
.caveat strong { color: var(--ink); }
.reflection { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 32px; }
.reflection article { padding-top: 20px; border-top: 2px solid var(--violet); }
.reflection p { color: var(--ink-2); font-size: 14.5px; margin-top: 12px; }

.next-case { display: block; padding: clamp(56px,7vw,92px) 0; background: var(--paper-2); border-top: 1px solid var(--line); text-decoration: none; }
.next-case__inner { display: flex; justify-content: space-between; align-items: end; gap: 34px; }
.next-case h2 { max-width: 20ch; }
.next-case__arrow { color: var(--violet); font-size: 2.4rem; transition: transform .25s ease; }
.next-case:hover .next-case__arrow { transform: translateX(8px); }

.footer { border-top: 1px solid var(--line); }
.footer__inner { max-width: var(--max); margin: auto; padding: 26px clamp(20px,4vw,44px); display: flex; justify-content: space-between; gap: 22px; color: var(--ink-soft); font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; }
.footer a { color: var(--ink); font-weight: 700; text-decoration: none; }

@media (max-width: 960px) {
  .home-hero__grid, .section-head, .cta-band__grid { grid-template-columns: 1fr; }
  .ai-expertise { grid-template-columns: 1fr; gap: 18px; }
  .home-hero__grid { gap: 34px; }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal:nth-child(3) { border-left: 0; padding-left: 0; }
  .project { grid-template-columns: 1fr; gap: 0; }
  .project__media { min-height: 330px; }
  .project__body { padding-top: 30px; }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd) { border-left: 0; padding-left: 0; }
  .story { grid-template-columns: 1fr; }
  .story__rail { position: static; }
  .story__rail ol { display: flex; flex-wrap: wrap; gap: 4px 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 12px; }
  .story__rail li { margin-left: 0; }
  .story__rail a { padding: 6px 14px 6px 0; border-left: 0; border-bottom: 2px solid transparent; }
  .story__rail a[aria-current="location"] { border-left-color: transparent; border-bottom-color: var(--violet); }
  .hotspots { grid-template-columns: minmax(230px, 300px) minmax(0, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card, .problem-card:first-child { border-left: 0; border-top: 1px solid var(--line); }
  .problem-card:first-child { border-top: 0; }
  .competitor-summary__grid { grid-template-columns: 1fr; }
  .competitor-panel + .competitor-panel { border-left: 0; border-top: 1px solid var(--line); }
  .decision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .evidence-modal__grid { grid-template-columns: 1fr; }
  .entry-stepper__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .entry-stepper__tabs button { border-bottom: 1px solid var(--line); }
  .entry-stepper__tabs button:nth-child(even) { border-right: 0; }
  .entry-stepper__tabs button:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .entry-variant { grid-template-columns: 1fr; }
  .entry-variant__visual { width: min(100%, 300px); }
  .entry-variant__detail { grid-template-columns: 1fr; gap: 6px; }
  .wrap, .nav__inner { padding-inline: 20px; }
  .nav__inner { min-height: 62px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .home-hero { padding-top: 74px; }
  .signal-strip, .fit-grid, .impact-bar__inner, .facts, .figure-grid, .reflection { grid-template-columns: 1fr; }
  .fit-card, .fit-card:nth-child(even) { padding: 24px 0; border-left: 0; }
  .signal, .signal:first-child, .signal:nth-child(3), .fact, .fact:first-child, .fact:nth-child(odd), .impact, .impact:first-child { padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .signal:first-child, .fact:first-child, .impact:first-child { border-top: 0; }
  .impact { border-color: #39344f; }
  .project__media { min-height: 240px; }
  .project__body { padding: 28px 0 4px; }
  .project__meta { flex-direction: column; }
  .recommendation-group { grid-template-columns: 1fr; }
  .recommendation-card { min-height: 260px; }
  .document-carousel__status { display: none; }
  .document-carousel__controls > [data-document-next] { grid-column: 4; }
  .story-block + .story-block { margin-top: 80px; padding-top: 80px; }
  .evidence-row, .result-row { grid-template-columns: 1fr; gap: 8px; }
  .hotspots { grid-template-columns: 1fr; }
  .hotspots__stage { width: min(100%, 330px); margin-inline: auto; }
  .hotspots__panel { display: block; min-height: 0; }
  .hotspots__panel > [data-hotspot-panel][hidden] { display: none; }
  .competitor-summary__heading { grid-template-columns: 1fr; }
  .competitor-summary__heading .label { padding: 22px 20px 0; }
  .competitor-summary__heading h3 { padding: 12px 20px 22px; }
  .competitor-panel { padding: 22px 20px; }
  .competitor-panel__samples { grid-template-columns: 1fr; }
  .competitor-panel__samples img { width: min(100%, 280px); }
  .term-columns { grid-template-columns: 1fr; }
  .competitor-summary figcaption { padding-inline: 20px; }
  .next-case__inner, .footer__inner { align-items: flex-start; flex-direction: column; }
  .before-after__handle { width: 40px; height: 40px; }
  .before-after__handle::before { left: 10px; }
  .before-after__handle::after { right: 10px; }
  .before-after__label { padding: 6px 9px 7px; }
  .before-after__label--before { left: 10px; bottom: 10px; }
  .before-after__label--after { top: 10px; right: 10px; }
  .before-after__label span { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body, body.is-page-leaving { transition: none; }
  body > :not(script) { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .hotspot::before { animation: none; opacity: .48; transform: scale(1.55); }
}
