:root {
  --bg: var(--surface);
  --surface: #f7f7f6;
  --ink: #191919;
  --muted: #666666;
  --muted-dark: #b0b0b0;
  --line: #d9d9d9;
  --dark: #0f0f0f;
  --dark-line: #3b3b3b;
  --light-ink: #f0f0ef;
  --blue: #1a5cff;
  --white: #ffffff;
  --type-label: 11px;
  --type-detail: 14px;
  --type-body: 16px;
  --type-feature: 28px;
  --type-section: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.keep-together-desktop {
  display: inline !important;
  margin: 0 !important;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-transform: inherit !important;
  white-space: nowrap;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(36px) scale(0.994);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.phone-motion-ready .phone-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.992);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--phone-delay, 0ms);
  will-change: opacity, transform;
}

.phone-motion-ready .phone-reveal.is-phone-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .phone-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  padding: 0 64px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-links,
.header-meta,
.disciplines,
.tags {
  display: flex;
  align-items: center;
}

.nav-links,
.header-meta {
  gap: 32px;
}

.site-header a,
.site-header span,
.disciplines span,
.text-link,
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-header a {
  transition:
    color 350ms ease,
    border-color 350ms ease,
    font-weight 350ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .site-header a:hover,
  .site-header a:focus-visible {
    color: var(--blue);
    border-color: var(--blue);
    font-weight: 700;
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header a {
    transition: none;
  }

  .site-header a:hover,
  .site-header a:focus-visible {
    transform: none;
  }
}

.cv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  min-height: 32px;
  border: 1px solid var(--ink);
}

.hero {
  height: 453px;
  padding: 48px 64px 0;
  border-bottom: 1px solid var(--line);
}

.disciplines {
  flex-wrap: wrap;
  gap: 0;
  color: var(--muted);
}

.disciplines span + span::before {
  content: "|";
  margin: 0 16px;
  color: var(--muted);
  font-weight: 400;
}

.disciplines span:nth-child(1),
.disciplines span:nth-child(2) {
  color: var(--ink);
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 620px) 258px minmax(248px, 280px);
  gap: clamp(32px, 8vw, 122px);
  align-items: end;
  margin-top: 73px;
}

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

h1 {
  max-width: 620px;
  font-size: clamp(64px, 7.1vw, 102px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line > span {
  display: block;
}

.hero-motion-ready .disciplines,
.hero-motion-ready .portrait,
.hero-motion-ready .intro-card {
  opacity: 0;
  transition:
    opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-motion-ready .disciplines {
  transform: translateY(16px);
  transition-delay: 220ms;
}

.hero-motion-ready .hero-title-line > span {
  opacity: 0.2;
  transform: translateY(112%);
  transition:
    opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-motion-ready .hero-title-line:nth-child(1) > span {
  transition-delay: 40ms;
}

.hero-motion-ready .hero-title-line:nth-child(2) > span {
  transition-delay: 130ms;
}

.hero-motion-ready .portrait {
  transform: translateY(32px) scale(0.975);
  transition-delay: 420ms;
}

.hero-motion-ready .intro-card {
  transform: translateY(28px);
  transition-delay: 310ms;
}

.hero-motion-ready.hero-is-visible .disciplines,
.hero-motion-ready.hero-is-visible .portrait,
.hero-motion-ready.hero-is-visible .intro-card,
.hero-motion-ready.hero-is-visible .hero-title-line > span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-motion-ready.hero-is-exiting .disciplines,
.hero-motion-ready.hero-is-exiting .portrait,
.hero-motion-ready.hero-is-exiting .intro-card,
.hero-motion-ready.hero-is-exiting .hero-title-line > span {
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-ready .disciplines,
  .hero-motion-ready .portrait,
  .hero-motion-ready .intro-card,
  .hero-motion-ready .hero-title-line > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.portrait {
  width: 258px;
  height: 314px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--surface);
}

.portrait img {
  width: 201%;
  height: 103%;
  max-width: none;
  object-fit: cover;
  transform: translate(-27.45%, -2.95%);
}

.intro-card {
  display: grid;
  gap: 24px;
  width: 300px;
  margin-left: -20px;
  padding-bottom: 24px;
}

.role-block {
  display: flex;
  gap: 16px;
}

.role-block::before {
  content: "";
  width: 3px;
  min-height: 65px;
  background: var(--blue);
}

.role-block p:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.role-block p:last-child {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.intro-card > p,
.approach-intro > p,
.principles p,
.project-copy p,
.contact-heading p,
.contact-links span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.intro-card > p {
  max-width: 300px;
  font-size: 14px;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  width: fit-content;
}

.email-popover {
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(14, 14, 13, 0.14);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.email-popover[hidden] {
  display: none;
}

.email-popover button {
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.email-popover button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.section-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.section-rule span::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  margin: 0 0 4px 12px;
  background: var(--ink);
}

.section-rule.short::after {
  display: none;
}

.section-rule.short span::after {
  width: 28px;
}

.approach > .section-rule {
  padding: 40px 64px 0;
}

.approach-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.2fr;
  gap: 80px;
  padding: 28px 64px 48px;
}

.approach h2,
.work h2 {
  font-size: var(--type-section);
  font-weight: 700;
  line-height: 1.05;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.1em;
}

.experience-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
}

.experience-list li::before {
  content: "-";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 700;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.principles article {
  min-height: 245px;
  padding: 40px 64px;
  border-bottom: 1px solid var(--line);
}

.principles article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.principles span,
.project-copy > span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--type-label);
  line-height: 1.6;
}

.principles h3,
.project-copy h3 {
  margin-bottom: 18px;
  font-size: var(--type-feature);
  font-weight: 700;
  line-height: 1.2;
}

.principles p {
  max-width: 430px;
}

.work {
  padding: 48px 48px 0;
}

.work .section-rule {
  margin-bottom: 20px;
}

.work h2 {
  padding-bottom: 40px;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(300px, 700px) minmax(300px, 520px);
  gap: 48px;
  min-height: 496px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.project-row-linkable {
  position: relative;
  cursor: pointer;
}

.project-row-linkable .text-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

.project-row-linkable:has(.text-link:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.project-row-linkable .project-media {
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-row-linkable .project-media img {
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link > span,
.contact-links > a > i,
.contact-email-copy {
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link {
  transition:
    color 350ms ease,
    letter-spacing 450ms cubic-bezier(0.16, 1, 0.3, 1),
    font-weight 350ms ease;
}

.contact-links > a > strong,
.contact-links > a > span,
.contact-email-row > strong,
.contact-email-row > span {
  transition:
    color 350ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .project-row-linkable:hover .project-media,
  .project-row-linkable:focus-within .project-media {
    transform: translateY(-6px);
  }

  .project-row-linkable:hover .project-media img,
  .project-row-linkable:focus-within .project-media img {
    transform: scale(1.045);
  }

  .project-row-linkable:hover .text-link > span,
  .project-row-linkable:focus-within .text-link > span,
  .text-link:hover > span,
  .text-link:focus-visible > span,
  .contact-links > a:hover > i,
  .contact-links > a:focus-visible > i,
  .contact-email-row:not(.is-revealed):hover .contact-email-copy,
  .contact-email-row:not(.is-revealed):focus-visible .contact-email-copy {
    transform: translateX(9px);
  }

  .text-link:hover,
  .text-link:focus-visible {
    color: #003fca;
    font-weight: 700;
    letter-spacing: 0.115em;
  }

  .contact-links > a:hover > strong,
  .contact-links > a:focus-visible > strong,
  .contact-email-row:not(.is-revealed):hover > strong,
  .contact-email-row:not(.is-revealed):focus-visible > strong {
    color: var(--blue);
    transform: translateX(4px);
  }

  .contact-links > a:hover > span,
  .contact-links > a:focus-visible > span,
  .contact-email-row:not(.is-revealed):hover > span,
  .contact-email-row:not(.is-revealed):focus-visible > span {
    color: var(--muted);
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-row-linkable .project-media,
  .project-row-linkable .project-media img,
  .text-link > span,
  .contact-links > a > i,
  .contact-email-copy,
  .text-link,
  .contact-links > a > strong,
  .contact-links > a > span,
  .contact-email-row > strong,
  .contact-email-row > span {
    transition: none;
  }

  .project-row-linkable:hover .project-media,
  .project-row-linkable:focus-within .project-media,
  .project-row-linkable:hover .project-media img,
  .project-row-linkable:focus-within .project-media img,
  .project-row-linkable:hover .text-link > span,
  .project-row-linkable:focus-within .text-link > span,
  .text-link:hover > span,
  .text-link:focus-visible > span,
  .contact-links > a:hover > i,
  .contact-links > a:focus-visible > i,
  .contact-email-row:not(.is-revealed):hover .contact-email-copy,
  .contact-email-row:not(.is-revealed):focus-visible .contact-email-copy {
    transform: none;
  }

  .text-link:hover,
  .text-link:focus-visible {
    letter-spacing: 0.08em;
  }

  .contact-links > a:hover > strong,
  .contact-links > a:focus-visible > strong,
  .contact-email-row:not(.is-revealed):hover > strong,
  .contact-email-row:not(.is-revealed):focus-visible > strong,
  .contact-links > a:hover > span,
  .contact-links > a:focus-visible > span,
  .contact-email-row:not(.is-revealed):hover > span,
  .contact-email-row:not(.is-revealed):focus-visible > span {
    transform: none;
  }
}

.project-row.reverse {
  grid-template-columns: minmax(300px, 520px) minmax(300px, 700px);
}

.project-media {
  display: block;
  height: 400px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-media.placeholder {
  border: 0;
}

.project-copy {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  align-items: flex-start;
}

.project-copy p {
  max-width: 390px;
}

.tags {
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  margin-top: 24px;
}

.tags span {
  min-height: 32px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
}

.project-copy .text-link {
  margin-top: auto;
}

.contact {
  display: grid;
  grid-template-columns: 280px minmax(420px, 1fr);
  gap: 72px;
  padding: 64px 48px 80px;
}

.contact-heading h2 {
  margin: 31px 0 24px;
  font-size: var(--type-section);
  font-weight: 800;
  line-height: 1.05;
}

.contact-heading p {
  max-width: 240px;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links > a,
.contact-email-row {
  display: grid;
  grid-template-columns: minmax(150px, 200px) 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
}

.contact-email-row {
  cursor: pointer;
}

.contact-email-row.is-revealed {
  cursor: default;
}

.contact-links strong {
  font-size: 22px;
  line-height: 1.6;
}

.contact-links i {
  color: var(--blue);
  font-style: normal;
}

.contact-email-copy {
  justify-self: end;
  min-width: 0;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-email-row.is-revealed .contact-email-copy {
  min-width: 70px;
  padding: 7px 12px;
  background: var(--blue);
  color: var(--white);
}

.contact-email-row:focus-visible,
.contact-email-copy:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.case-page {
  background: var(--white);
  color: var(--ink);
}

.breadcrumb,
.case-kicker,
.case-label,
.case-meta dt,
.next-project > div > span,
.case-footer {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  margin-bottom: 64px;
  color: var(--muted);
}

.breadcrumb a {
  transition:
    color 350ms ease,
    font-weight 350ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .breadcrumb a:hover,
  .breadcrumb a:focus-visible {
    color: var(--blue);
    font-weight: 700;
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .breadcrumb a {
    transition: none;
  }

  .breadcrumb a:hover,
  .breadcrumb a:focus-visible {
    transform: none;
  }
}

.breadcrumb span:last-child {
  color: var(--blue);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.case-hero {
  padding: 48px 64px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.case-hero-image.risk-hero-image-placeholder {
  background: var(--line);
}

.risk-page .case-hero-image img {
  height: 104%;
  transform: translateY(-3%);
}

.risk-missing-step {
  padding: 96px 64px;
  background: var(--white);
}

.risk-section-label {
  margin-bottom: 64px;
}

.risk-missing-step > h2 {
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.risk-missing-layout {
  display: grid;
  grid-template-columns: minmax(480px, 1.15fr) minmax(420px, 0.85fr);
  gap: 80px;
  margin-top: 72px;
}

.risk-missing-narrative {
  max-width: 720px;
}

.risk-missing-narrative h3 {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.risk-missing-narrative p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.risk-missing-narrative p:last-child {
  margin-bottom: 0;
}

.risk-review-list {
  display: grid;
  gap: 24px;
}

.risk-review-list article {
  min-height: 76px;
  padding: 4px 0 4px 28px;
  border-left: 1px solid var(--line);
}

.risk-review-list span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.risk-review-list p {
  max-width: 440px;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.45;
}

.risk-research {
  padding: 96px 64px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.risk-research-intro {
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(520px, 1.15fr);
  gap: 96px;
  margin-top: 72px;
}

.risk-research-heading h2 {
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.risk-research-heading {
  max-width: 520px;
}

.risk-research-copy {
  max-width: 650px;
  padding-top: 6px;
}

.risk-research-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.risk-research-copy p + p {
  margin-top: 24px;
}

.risk-research-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.risk-research-methods-label {
  grid-column: 1 / -1;
  padding: 28px 36px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.risk-research-methods article {
  min-height: 230px;
  padding: 32px 28px;
  border-left: 1px solid var(--line);
}

.risk-research-methods article:nth-of-type(1) {
  border-left: 0;
}

.risk-research-methods article > div {
  display: block;
  margin-bottom: 0;
}

.risk-research-methods article > div span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.risk-research-methods h3 {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.risk-research-methods article > p {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.risk-insights {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.risk-insights-header {
  margin-top: 0;
}

.risk-insights-header h2 {
  font-size: var(--type-feature);
  font-weight: 700;
  line-height: 1.2;
}

.risk-insights-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.risk-insights-list article {
  min-height: 230px;
  padding: 32px 28px;
  border-left: 1px solid var(--line);
}

.risk-insights-list article:first-child {
  border-left: 0;
}

.risk-insights-list span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.risk-insights-list h3 {
  max-width: 320px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.risk-insights-list p {
  max-width: 340px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.risk-review-experience {
  padding: 96px 64px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.risk-review-experience-header {
  margin-top: 72px;
}

.risk-review-experience-header h2 {
  max-width: none;
  font-size: var(--type-section);
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.risk-review-phase-divider {
  margin-top: 96px;
}

.risk-review-phase-title {
  color: var(--line);
}

.risk-review-feature {
  margin-top: 72px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--line);
}

.risk-review-feature-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: 80px;
  align-items: center;
}

.risk-review-feature-scope {
  display: grid;
  grid-template-columns: 604px minmax(280px, 350px);
  gap: clamp(72px, 8vw, 128px);
  align-items: center;
  justify-content: center;
  margin-top: 104px;
  padding-bottom: 0;
  border-bottom: 0;
}

.risk-review-scope-screen {
  margin: 0;
}

.risk-review-scope-screen img {
  display: block;
  box-sizing: border-box;
  width: 604px;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.risk-review-scope-notes {
  display: grid;
  gap: 28px;
  max-width: 350px;
}

.risk-review-scope-notes p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.risk-review-scope-notes strong {
  color: var(--ink);
  font-weight: 700;
}

.risk-review-feature-preparation {
  margin-top: 120px;
  padding-bottom: 0;
  border-bottom: 0;
}

.risk-review-preparation-scene {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 604px));
  gap: clamp(72px, 10vw, 162px);
  align-items: start;
  justify-content: center;
}

.risk-review-preparation-column {
  display: grid;
}

.risk-review-preparation-mobile {
  display: none;
}

.risk-review-preparation-notes {
  display: grid;
  gap: 28px;
  max-width: 420px;
}

.risk-review-preparation-notes p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.risk-review-preparation-notes strong {
  color: var(--ink);
  font-weight: 700;
}

.risk-review-preparation-column .risk-review-preparation-screen {
  margin-top: 96px;
}

.risk-review-preparation-screen {
  margin: 0;
}

.risk-review-preparation-screen img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.risk-review-session {
  margin-top: 104px;
}

.risk-review-session-row {
  display: grid;
  align-items: center;
  justify-content: center;
}

.risk-review-session-main,
.risk-review-session-scenarios {
  grid-template-columns: minmax(0, 604px) minmax(280px, 420px);
  gap: clamp(72px, 9vw, 144px);
}

.risk-review-session-discussion {
  grid-template-columns: minmax(280px, 420px) minmax(0, 533px);
  gap: clamp(96px, 12vw, 190px);
  margin-top: 168px;
}

.risk-review-session-scenarios {
  margin-top: 168px;
}

.risk-review-session-screen {
  margin: 0;
}

.risk-review-session-screen img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.risk-review-session-notes,
.risk-review-session-caption {
  display: grid;
  gap: 28px;
  max-width: 420px;
}

.risk-review-session-notes p,
.risk-review-session-caption p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.risk-review-session-notes strong,
.risk-review-session-caption strong {
  color: var(--ink);
  font-weight: 700;
}

.risk-review-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 604px));
  gap: clamp(72px, 9vw, 144px);
  align-items: start;
  justify-content: center;
  margin-top: 104px;
}

.risk-review-summary-column {
  min-width: 0;
}

.risk-review-summary-screen {
  margin: 0;
}

.risk-review-summary-screen:not(.risk-review-summary-frame) {
  width: 540px;
  max-width: 100%;
}

.risk-review-summary-left
  .risk-review-summary-screen:not(.risk-review-summary-frame) {
  margin-left: clamp(0px, 5.55vw, 80px);
}

.risk-review-summary-screen img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.risk-review-summary-notes,
.risk-review-summary-overview {
  display: grid;
  gap: 28px;
  max-width: 420px;
}

.risk-review-summary-notes {
  margin-top: 460px;
}

.risk-review-summary-overview {
  margin-top: 120px;
}

.risk-review-summary-overview + .risk-review-summary-screen {
  margin-top: 120px;
}

.risk-review-summary-notes p,
.risk-review-summary-overview p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.risk-review-summary-notes strong,
.risk-review-summary-overview strong {
  color: var(--ink);
  font-weight: 700;
}

.risk-review-summary-frame {
  width: 1040px;
  margin-top: 120px;
}

.risk-review-feature-reverse {
  grid-template-columns: minmax(560px, 1.28fr) minmax(300px, 0.72fr);
}

.risk-review-feature-copy {
  max-width: 420px;
}

.risk-review-feature-copy > span,
.risk-review-feature-heading span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--type-label);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.risk-review-feature h3 {
  margin-top: 24px;
  font-size: var(--type-feature);
  font-weight: 700;
  line-height: 1.2;
}

.risk-review-feature-copy > p,
.risk-review-feature-heading > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.6;
}

.risk-review-feature-heading > p strong {
  color: var(--ink);
  font-weight: 700;
}

.risk-review-feature-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.risk-review-feature-heading h3 {
  max-width: 440px;
}

.risk-review-feature-heading > p {
  max-width: 560px;
}

.risk-plugin-stage {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 40px;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.risk-plugin-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.risk-plugin-stage-tall {
  padding-top: 48px;
  padding-bottom: 48px;
}

.risk-plugin-pair,
.risk-completion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.risk-review-subphase-divider {
  margin-top: 96px;
}

.risk-review-feature-scenarios .risk-plugin-stage {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.risk-review-feature-completion {
  padding-bottom: 0;
  border-bottom: 0;
}

.risk-completion-grid .risk-plugin-stage {
  padding: 32px;
}

.risk-summary-stage {
  max-width: 960px;
  margin: 24px auto 0;
}

.risk-summary-stage img {
  width: min(100%, 727px);
}

.risk-team-summary {
  border-top: 1px solid var(--line);
}

.risk-team-summary-header {
  margin-top: 72px;
}

.risk-team-summary-header h2 {
  font-size: var(--type-section);
  font-weight: 700;
  line-height: 1.05;
}

.risk-team-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 88px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.risk-team-feature-grid article {
  grid-column: span 3;
  min-height: 240px;
  padding: 36px 40px 40px;
  border-bottom: 1px solid var(--line);
}

.risk-team-feature-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.risk-team-feature-grid article:nth-child(n + 3) {
  grid-column: span 2;
  border-bottom: 0;
}

.risk-team-feature-grid article:nth-child(3),
.risk-team-feature-grid article:nth-child(4) {
  border-right: 1px solid var(--line);
}

.risk-team-feature-grid article:nth-child(5) {
  border-right: 0;
}

.risk-team-feature-grid span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--type-label);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.risk-team-feature-grid h3 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.risk-team-feature-grid p {
  max-width: 360px;
  margin-top: 16px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.55;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(360px, 0.9fr);
  gap: 112px;
  align-items: start;
}

.case-title-block {
  max-width: 765px;
}

.case-kicker,
.case-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.case-kicker i,
.case-label i {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--blue);
}

.case-title-block h1 {
  margin-top: 47px;
  color: var(--ink);
  font-size: clamp(48px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.case-title-block > p {
  max-width: 512px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}

.case-meta div {
  min-height: 70px;
  padding: 16px 24px 16px 0;
  border-bottom: 1px solid var(--line);
}

.case-meta dt,
.case-meta dd {
  margin: 0;
}

.case-meta dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-weight: 500;
}

.case-meta dd {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.case-quote {
  margin-top: 91px;
  padding: 24px 0 0 65px;
  border-left: 1px solid var(--line);
}

.case-quote blockquote {
  max-width: 480px;
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.case-quote span {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.case-quote blockquote span.keep-together-desktop {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: none;
}

.case-hero-image {
  width: 100%;
  height: 738px;
  margin: 64px 0 80px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface);
}

.case-page:not(.idea-page) .case-hero-image {
  border: 1px solid var(--line);
}

.case-page.risk-page .case-hero-image {
  border: 0;
}

.case-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.idea-page {
  --idea-blue: var(--blue);
  --idea-violet: var(--blue);
  --idea-orange: #ff7630;
  --idea-yellow: #ffc928;
}

.idea-hero {
  background: var(--surface);
}

.idea-hero .breadcrumb span:last-child {
  color: var(--blue);
}

.idea-hero .case-kicker i,
.idea-page .case-label i {
  background: var(--blue);
}

.idea-hero .case-quote {
  border-left-color: var(--line);
}

.idea-hero-image {
  height: 738px;
  background: var(--idea-blue);
}

.idea-hero-image img {
  object-fit: cover;
  object-position: center;
}

.case-section {
  padding: 96px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.case-two-col {
  display: grid;
  grid-template-columns: minmax(320px, 416px) minmax(420px, 1fr);
  gap: 32px;
  align-items: start;
}

.case-section-heading h2,
.case-split-title h2,
.case-showcase h2 {
  margin-top: 24px;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.case-section-heading p {
  margin-top: 24px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.6;
}

.idea-copy-block {
  align-self: end;
  max-width: 520px;
  padding-top: 92px;
}

.idea-copy-block p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.idea-copy-block p + p {
  margin-top: 24px;
}

.response-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 1120px);
  min-height: 360px;
  padding: 44px 36px 38px;
  border-radius: 12px;
  background: var(--surface);
}

.response-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.response-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.response-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 7.5%;
  right: 7.5%;
  height: 1px;
  background: var(--line);
}

.response-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.response-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.response-steps .is-alert b {
  border-color: #ef4438;
  background: #ef4438;
  color: #fff;
}

.response-steps .is-action b {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.response-steps strong,
.insight-list h3,
.decision-table h3 {
  font-size: 16px;
  line-height: 1.6;
}

.response-steps p,
.insight-list p,
.decision-table p,
.case-flow p,
.reflection-grid p,
.next-project p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.response-steps p {
  margin-top: 4px;
  white-space: nowrap;
}

.response-progress {
  position: relative;
  height: 10px;
  margin-top: 47px;
  border-top: 1px solid var(--line);
}

.response-progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--surface);
}

.response-progress i {
  position: absolute;
  left: 0;
  top: 28px;
  z-index: 1;
  width: 15%;
  height: 8px;
  border-radius: 999px;
  background: #ef4438;
}

.response-caption {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin-top: 41px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.response-caption span:first-child {
  color: #ef4438;
}

.response-caption span:last-child {
  justify-self: end;
  color: var(--blue);
}

.case-split-title {
  display: grid;
  grid-template-columns: minmax(320px, 416px) minmax(420px, 1fr);
  gap: 80px;
  margin-bottom: 48px;
}

.case-split-title h2 {
  margin-top: 0;
}

.flow-section {
  padding: 96px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.flow-header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.flow-number {
  grid-column: 1 / -1;
}

.flow-header h2 {
  grid-column: 1 / span 5;
  margin-top: 60px;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.flow-header p {
  grid-column: 6 / span 6;
  margin-top: 63px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.core-flow-panel {
  margin-top: 80px;
  padding: 50px 48px 65px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.panel-label {
  display: block;
  margin-bottom: 50px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.flow-cards {
  display: grid;
  grid-template-columns: minmax(220px, 304px) 25px minmax(220px, 304px) 25px minmax(220px, 304px) 25px minmax(220px, 304px);
  gap: 24px;
  align-items: center;
}

.flow-cards > i {
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.flow-card {
  display: grid;
  grid-template-rows: 122px 160px;
  min-height: 282px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.flow-card > div:first-child {
  padding: 28px 30px;
  background: var(--light-ink);
}

.flow-card > div:last-child {
  padding: 25px 30px 26px;
  border-top: 1px solid var(--line);
}

.flow-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.flow-card h3 {
  font-size: 24px;
  line-height: 1.2;
}

.flow-card strong {
  display: block;
  max-width: 230px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.45;
}

.flow-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.flow-card.is-trigger {
  border-color: #ef4438;
}

.flow-card.is-trigger > div:first-child {
  background: #ef4438;
  color: #fff;
}

.flow-card.is-trigger span {
  color: #ffd9d5;
}

.flow-card.is-trigger > div:last-child {
  border-top-color: #ef4438;
}

.flow-legend {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.flow-legend > div {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
}

.flow-legend strong {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.flow-legend i {
  display: block;
  width: 380px;
  height: 1px;
  background: var(--line);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.legend-dot.red {
  background: #ef4438;
}

.legend-dot.blue {
  background: var(--blue);
}

.flow-legend p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.case-flow article {
  min-height: 220px;
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--line);
}

.case-flow article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.case-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

.case-flow h3 {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.2;
}

.research-section {
  padding: 96px 64px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.research-header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.research-number {
  grid-column: 1 / -1;
}

.research-title-block {
  grid-column: 1 / span 4;
  margin-top: 60px;
}

.research-title-block h2 {
  margin-bottom: 48px;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.research-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 64px;
  margin: 0;
}

.research-stats div,
.research-stats dt,
.research-stats dd {
  margin: 0;
}

.research-stats dt {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.research-stats dd {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.research-copy {
  grid-column: 6 / span 7;
  display: grid;
  gap: 28px;
  margin-top: 66px;
}

.research-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.research-panel {
  margin-top: 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.research-panel > span {
  display: block;
  padding: 32px 48px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.observation-grid article {
  min-height: 285px;
  padding: 38px 48px 48px;
}

.observation-grid article + article {
  border-left: 1px solid var(--line);
}

.observation-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.observation-grid h3 {
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.35;
}

.observation-grid p {
  position: relative;
  margin-top: 16px;
  padding-left: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.observation-grid p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1px;
  bottom: 0.1em;
  background: var(--line);
}

.decision-shift-section {
  padding: 96px 64px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.decision-shift-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 88px;
  align-items: center;
  margin-top: 64px;
}

.decision-shift-copy h2 {
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.18;
}

.decision-shift-copy p {
  max-width: 360px;
  margin-top: 28px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.6;
}

.before-after-flow {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 48px minmax(280px, 1fr);
  align-items: center;
}

.before-after-flow article {
  min-height: 160px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.before-after-flow article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.before-after-flow h3 {
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.45;
}

.before-after-flow p {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
}

.before-after-flow p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: var(--line);
}

.before-after-flow > i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  box-shadow: 0 0 0 8px #fff;
}

.urgency-section {
  padding: 96px 64px;
  background: var(--dark);
  color: var(--light-ink);
}

.urgency-label {
  color: var(--muted);
}

.urgency-top {
  display: grid;
  grid-template-columns: minmax(360px, 480px) minmax(640px, 1fr);
  gap: 120px;
  align-items: start;
  margin-top: 64px;
}

.urgency-copy h2 {
  color: #fff;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.urgency-copy p {
  max-width: 430px;
  margin-top: 48px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.6;
}

.priority-stack {
  display: grid;
  gap: 20px;
}

.priority-card {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  background: #121212;
}

.priority-card header {
  display: grid;
  grid-template-columns: max-content 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 62px;
  padding: 0 30px;
  background: #232323;
}

.priority-card header strong {
  font-size: 16px;
  line-height: 1.6;
}

.priority-card header p {
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.6;
}

.priority-card header span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dark-line);
}

.priority-card.is-critical {
  border-color: var(--blue);
}

.priority-card.is-critical header {
  background: var(--blue);
}

.priority-card.is-critical header p {
  color: rgba(255, 255, 255, 0.68);
}

.priority-card.is-critical header span {
  background: #fff;
}

.priority-card:not(.is-critical):nth-child(2) header span {
  background: var(--blue);
}

.priority-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 24px 30px;
}

.priority-items.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
}

.priority-items div {
  padding-left: 18px;
  border-left: 4px solid var(--blue);
  border-radius: 2px;
}

.priority-card:not(.is-critical) .priority-items div {
  border-left-color: var(--dark-line);
}

.priority-items h3 {
  font-size: 16px;
  line-height: 1.35;
}

.priority-items p {
  margin-top: 4px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
}

.urgency-principle {
  margin-top: 58px;
  padding-top: 72px;
  border-top: 1px solid var(--dark-line);
}

.urgency-principle > span {
  display: block;
  color: var(--muted-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.urgency-principle h3 {
  margin-top: 32px;
  font-size: 32px;
  line-height: 1.25;
}

.urgency-steps {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 24px minmax(220px, 1fr) 24px minmax(220px, 1fr) 24px minmax(220px, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 64px;
}

.urgency-steps article {
  min-height: 276px;
  padding: 32px 30px;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  background: #202020;
}

.urgency-steps article > span {
  display: block;
  min-height: 32px;
  margin-bottom: 18px;
  color: #a0a0a0;
  font-size: 26px;
  line-height: 1;
}

.urgency-steps article:nth-of-type(2) > span {
  color: #ffb800;
}

.urgency-steps small {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.6;
}

.urgency-steps h4 {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.35;
}

.urgency-steps p {
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.6;
}

.urgency-steps > i {
  align-self: center;
  color: var(--dark-line);
  font-size: 32px;
  font-style: normal;
  text-align: center;
}

.insight-list,
.decision-table {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.insight-list article,
.decision-table article {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 1fr;
  gap: 32px;
  padding: 33px 0 32px;
  border-bottom: 1px solid var(--line);
}

.intent-section {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 108px;
  align-items: start;
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--surface);
}

.intent-heading h2 {
  max-width: 520px;
  margin-top: 89px;
  font-size: clamp(44px, 4.5vw, 56px);
  line-height: 1.18;
}

.intent-heading p {
  max-width: 460px;
  margin-top: 44px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.intent-table {
  margin-top: 108px;
  border-top: 1px solid var(--line);
}

.intent-table article {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: 52px;
  min-height: 136px;
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--line);
}

.intent-table h3 {
  font-size: 20px;
  line-height: 1.4;
}

.intent-table p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.idea-challenge {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--surface);
}

.idea-challenge-top {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1fr);
  gap: 96px;
  align-items: start;
}

.idea-challenge .case-section-heading h2 {
  margin-top: 52px;
  font-size: clamp(44px, 4.5vw, 56px);
  line-height: 1.05;
}

.idea-challenge .challenge-callout {
  max-width: 560px;
  margin-top: 42px;
  padding-left: 24px;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.idea-challenge-copy {
  padding-top: 116px;
}

.idea-challenge-copy h3 {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.55;
}

.idea-challenge-copy p {
  max-width: 820px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.challenge-findings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.challenge-findings article {
  min-height: 164px;
  padding: 32px 28px 36px;
}

.challenge-findings article + article {
  border-left: 1px solid var(--line);
}

.challenge-findings span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.challenge-findings p {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.6;
}

.idea-audit {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.idea-audit h2 {
  font-size: 20px;
  line-height: 1.4;
}

.idea-audit-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.audit-finding {
  display: flex;
  min-height: 428px;
  overflow: hidden;
  flex-direction: column;
  padding: 32px 28px 28px;
  border-radius: 12px;
  background: var(--surface);
}

.audit-finding-large {
  grid-column: 1 / -1;
  min-height: 710px;
  padding-bottom: 34px;
}

.audit-finding-copy {
  position: relative;
  z-index: 1;
}

.audit-finding:not(.audit-finding-large) .audit-finding-copy {
  min-height: 96px;
}

.audit-finding span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.audit-finding h3 {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
}

.audit-finding-large h3 {
  max-width: none;
  white-space: nowrap;
}

.audit-finding figure {
  display: flex;
  min-height: 0;
  margin: 22px 0 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f0f0f0;
}

.audit-finding-large figure {
  height: 550px;
  margin-top: 22px;
}

.audit-finding:not(.audit-finding-large) figure {
  height: 260px;
  margin-top: 22px;
}

.audit-finding img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.audit-finding picture {
  display: contents;
}

.audit-finding-large img {
  object-position: center;
}

.audit-finding:not(.audit-finding-large) img {
  object-position: center top;
}

.idea-research {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.idea-research-top {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(420px, 0.84fr);
  gap: 52px;
  align-items: end;
}

.idea-research-heading h2 {
  margin-top: 52px;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.idea-research-heading p {
  max-width: 480px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.research-stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 720px);
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.research-stats-card div {
  min-height: 116px;
  padding: 24px 20px;
}

.research-stats-card div + div {
  border-left: 1px solid var(--line);
}

.research-stats-card dt,
.research-stats-card dd {
  margin: 0;
}

.research-stats-card dt {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.research-stats-card dd {
  margin-top: 16px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.research-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-methods article {
  min-height: 160px;
  padding: 28px;
}

.research-methods article + article {
  border-left: 1px solid var(--line);
}

.research-methods span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.research-methods h3 {
  font-size: 16px;
  line-height: 1.6;
}

.research-methods p {
  max-width: 260px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.research-board-intro {
  max-width: none;
  margin-top: 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap;
}

.research-board {
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.research-board img {
  width: 100%;
  height: auto;
}

.idea-decision {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.idea-decision-header h2 {
  margin-top: 52px;
  max-width: 620px;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.decision-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.decision-insights article {
  min-height: 620px;
  padding: 36px 48px 0 0;
}

.decision-insights article + article {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.decision-insights span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.decision-insights b {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.decision-insights h3 {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.45;
}

.decision-insights p {
  max-width: 430px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.decision-insights hr {
  height: 1px;
  margin: 36px 0;
  border: 0;
  background: var(--line);
}

.decision-insights h4 {
  max-width: 430px;
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.idea-reflection {
  background: var(--dark);
  margin-top: -18px;
  position: relative;
  z-index: 2;
}

.case-showcase {
  padding: 96px 64px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.case-showcase h2 {
  max-width: 720px;
  margin-top: 40px;
  margin-bottom: 92px;
}

.primary-flow-divider {
  height: 1px;
  margin-bottom: 38px;
  background: var(--line);
}

.primary-flow-title {
  display: block;
  color: var(--line);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.idea-screens {
  background: var(--surface);
  border-bottom: 0;
}

.idea-screens h2 {
  max-width: 920px;
}

.idea-first-decision-scene {
  position: relative;
  min-height: 1500px;
  margin-top: 74px;
}

.first-decision-copy {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 531px;
  width: 436px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.idea-screen-note {
  width: 280px;
}

.idea-screen-note p,
.learning-caption p,
.flow-note p,
.beyond-copy {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.idea-screen-note strong,
.learning-caption strong,
.flow-note strong,
.beyond-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.understand-note {
  left: 181px;
  top: 193px;
}

.assess-note {
  left: 531px;
  top: 291px;
}

.apply-note {
  left: 912px;
  top: 482px;
}

.idea-screen-phone {
  filter: none;
}

.idea-screen-home {
  left: 112px;
  top: 312px;
  width: 360px;
}

.idea-screen-reasons {
  left: 478px;
  top: 445px;
  width: 345px;
}

.idea-screen-trial {
  left: 851px;
  top: 561px;
  width: 419px;
}

.idea-learning-divider {
  margin-top: 74px;
}

.idea-learning-block {
  padding-top: 74px;
  padding-bottom: 80px;
}

.learning-copy {
  max-width: 488px;
  margin-left: calc(33.333% + 22px);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.idea-learning-scene {
  position: relative;
  min-height: 1650px;
  margin-top: 120px;
}

.learning-desktop {
  width: min(79.5%, 1042px);
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 40px;
  background: var(--light-ink);
}

.learning-desktop img {
  width: 100%;
  height: auto;
}

.learning-phone {
  filter: none;
}

.learning-phone-events {
  left: 72px;
  top: 500px;
  width: 368px;
}

.learning-phone-gallery {
  left: 443px;
  top: 790px;
  width: 353px;
}

.learning-caption {
  position: absolute;
  z-index: 2;
  width: 280px;
}

.learning-caption-life {
  left: 141px;
  top: 1148px;
}

.learning-caption-gallery {
  left: 492px;
  top: 1439px;
}

.idea-trust-divider {
  margin-top: 56px;
}

.idea-trust-block {
  padding-top: 74px;
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-copy {
  max-width: 516px;
  margin-left: calc(33.333% + 116px);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.idea-trust-phones {
  position: relative;
  min-height: 482px;
  margin-top: 140px;
}

.trust-phone {
  filter: none;
}

.trust-phone-reviews {
  left: 378px;
  top: 0;
  width: 359px;
}

.trust-phone-faq {
  left: 717px;
  top: 0;
  width: 347px;
}

.trust-phone-parents {
  left: 0;
  top: 0;
  width: 374px;
}

.product-experience-scene {
  position: relative;
  min-height: 1120px;
  margin-top: 74px;
  border-bottom: 1px solid var(--line);
}

.flow-note {
  position: absolute;
  z-index: 2;
  width: 280px;
}

.flow-note.idea-screen-note {
  width: 280px;
}

.flow-note.assess-note {
  width: 280px;
}

.mobile-only-break {
  display: none;
}

.alert-note {
  left: 203px;
  top: 129px;
  width: 280px;
}

.context-note {
  left: 553px;
  top: 298px;
}

.shelter-note {
  left: 903px;
  top: 129px;
  width: 280px;
}

.phone-stage {
  position: absolute;
  z-index: 1;
  margin: 0;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.11));
}

.product-experience-scene .phone-stage {
  filter: none;
}

.phone-stage.idea-screen-phone,
.phone-stage.learning-phone,
.phone-stage.trust-phone {
  filter: none;
}

.phone-stage img {
  width: 100%;
  height: auto;
}

.phone-alert {
  left: 108px;
  top: 120px;
  width: 470px;
}

.phone-context {
  left: 458px;
  top: 290px;
  width: 470px;
}

.phone-shelter {
  left: 808px;
  top: 120px;
  width: 470px;
}

.supporting-tools-block {
  padding-top: 54px;
  padding-bottom: 112px;
  border-bottom: 1px solid var(--line);
}

.supporting-tools-copy {
  max-width: 455px;
  margin: 92px auto 0;
  font-size: 16px;
  line-height: 1.55;
}

.supporting-tools-phones {
  position: relative;
  min-height: 720px;
  margin-top: 140px;
}

.support-phone {
  filter: none;
}

.support-phone-map {
  left: 48px;
  top: 0;
  width: 330px;
}

.support-phone-sources {
  left: 402px;
  top: 0;
  width: 347px;
}

.support-phone-history {
  left: 773px;
  top: 0;
  width: 348px;
}

.personalization-block {
  padding-top: 54px;
  padding-bottom: 112px;
  border-bottom: 1px solid var(--line);
}

.personalization-phones {
  position: relative;
  min-height: 760px;
  margin-top: 168px;
}

.personalization-phone {
  filter: none;
}

.personalization-phone-region {
  left: 288px;
  top: 0;
  width: 337px;
}

.personalization-phone-settings {
  left: 650px;
  top: 96px;
  width: 350px;
}

.beyond-core-block {
  padding-top: 54px;
  padding-bottom: 112px;
  overflow: hidden;
}

.beyond-community-row {
  position: relative;
  min-height: 650px;
  margin-top: 128px;
}

.beyond-phone {
  filter: none;
}

.beyond-phone-community {
  left: 78px;
  top: 0;
  width: 350px;
}

.beyond-phone-chat {
  left: 452px;
  top: 0;
  width: 348px;
}

.beyond-copy {
  position: absolute;
  width: 280px;
  max-width: 280px;
}

.community-copy {
  left: 850px;
  top: 205px;
}

.mini-game-row {
  position: relative;
  min-height: 720px;
  margin-top: 132px;
}

.mini-game-copy {
  left: 0;
  top: 220px;
}

.mini-game-carousel,
.community-carousel {
  display: contents;
}

.trust-slide {
  display: contents;
}

.mini-game-dots,
.community-dots,
.supporting-tools-dots,
.personalization-dots,
.trust-dots {
  display: none;
}

.mini-sketch {
  position: absolute;
  margin: 0;
}

.mini-sketch img {
  display: block;
  width: 100%;
  height: auto;
}

.mini-sketch-game {
  left: 362px;
  top: 0;
  width: 270px;
}

.mini-sketch-donate {
  left: 702px;
  top: 0;
  width: 270px;
}

.mini-sketch-thanks {
  left: 1042px;
  top: 0;
  width: 270px;
}

.case-reflection {
  padding: 96px 64px;
  background: var(--dark);
  color: var(--light-ink);
}

.case-reflection .case-label {
  color: var(--muted-dark);
}

.case-reflection .case-label span:first-child {
  color: #7da6ff;
}

.urgency-section .case-label span:first-child {
  color: #7da6ff;
}

.case-reflection .case-label i,
.urgency-section .case-label i {
  background: #7da6ff;
}

.reflection-grid {
  display: grid;
  grid-template-columns: minmax(420px, 7fr) minmax(320px, 5fr);
  gap: 96px;
  margin-top: 80px;
}

.reflection-grid h2 {
  max-width: 760px;
  margin-bottom: 36px;
  font-size: 32px;
  line-height: 1.3;
}

.reflection-grid p {
  max-width: 705px;
  margin-top: 20px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.6;
}

.reflection-notes {
  display: grid;
  gap: 48px;
  padding-top: 3px;
}

.reflection-notes article {
  padding-left: 33px;
  border-left: 1px solid var(--dark-line);
}

.reflection-notes span {
  display: block;
  margin-bottom: 11px;
  color: var(--muted-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.reflection-notes strong {
  display: block;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.6;
}

.next-project {
  display: grid;
  grid-template-columns: minmax(420px, 1.35fr) minmax(360px, 414px);
  gap: 64px;
  align-items: center;
  min-height: 460px;
  padding: 80px 64px;
  background: var(--dark);
  border-top: 1px solid var(--dark-line);
  color: #fff;
}

.next-project-linkable {
  position: relative;
  cursor: pointer;
}

.next-project-hit-area {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.next-project-linkable:has(.next-project-hit-area:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: -4px;
}

.next-project > div > span,
.next-project p {
  color: var(--muted-dark);
}

.next-project h2 {
  margin: 32px 0 20px;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1.25;
}

.next-project p {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: 16px;
}

.next-project picture {
  display: block;
  width: 100%;
  align-self: center;
}

.next-project img {
  display: block;
  width: 100%;
  aspect-ratio: 414 / 309;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.case-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 21px 64px 20px;
  background: var(--dark);
  border-top: 1px solid var(--dark-line);
  color: var(--muted-dark);
}

.case-footer a {
  color: inherit;
}

.case-footer > a:last-child {
  justify-self: end;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  transition:
    border-color 350ms ease,
    color 350ms ease;
}

.back-to-top span {
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover,
  .back-to-top:focus-visible {
    border-color: #777;
    color: var(--light-ink);
  }

  .back-to-top:hover span,
  .back-to-top:focus-visible span {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top span {
    transition: none;
  }

  .back-to-top:hover span,
  .back-to-top:focus-visible span {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .risk-review-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .risk-review-summary-frame {
    width: 820px;
  }

  .risk-review-session-main,
  .risk-review-session-scenarios {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 48px;
  }

  .risk-review-session-discussion {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    gap: 64px;
  }

  .risk-review-preparation-scene {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .risk-review-preparation-screen img {
    width: 100%;
  }

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

  .risk-team-feature-grid article,
  .risk-team-feature-grid article:nth-child(n + 3) {
    grid-column: span 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .risk-team-feature-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .risk-team-feature-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .site-header,
  .hero,
  .approach > .section-rule,
  .approach-intro {
    padding-left: 32px;
    padding-right: 32px;
  }

  .header-meta span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 1fr) 258px;
    gap: 40px;
  }

  .intro-card {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    margin-left: 0;
  }

  .intro-card > p {
    white-space: normal;
  }

  .approach-intro {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .approach-intro > div {
    grid-column: 1 / -1;
  }

  .project-row,
  .project-row.reverse {
    grid-template-columns: 1fr;
  }

  .project-row.reverse .project-copy {
    order: 2;
  }

  .project-row.reverse .project-media {
    order: 1;
  }

  .project-copy {
    min-height: 280px;
  }

  .contact,
  .case-hero-grid,
  .case-two-col,
  .intent-section,
  .idea-research-top,
  .idea-challenge-top,
  .case-split-title,
  .decision-shift-grid,
  .urgency-top,
  .reflection-grid,
  .next-project {
    grid-template-columns: 1fr;
  }

  .case-quote {
    margin-top: 0;
    padding-left: 32px;
  }

  .intent-heading h2 {
    margin-top: 64px;
  }

  .intent-section {
    gap: 48px;
  }

  .intent-table {
    margin-top: 0;
  }

  .idea-copy-block {
    padding-top: 0;
  }

  .idea-challenge-copy {
    grid-column: 1;
    margin-top: 24px;
    padding-top: 0;
  }

  .idea-challenge-top > div:not(.case-label) {
    grid-column: 1;
  }

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

  .idea-audit-board {
    grid-template-columns: 1fr;
  }

  .research-stats-card {
    margin-top: 0;
    width: 100%;
  }

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

  .research-methods article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .research-methods article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .audit-finding,
  .audit-finding-large {
    min-height: 0;
  }

  .decision-insights {
    grid-template-columns: 1fr;
  }

  .decision-insights article {
    min-height: 0;
    padding: 36px 0;
  }

  .decision-insights article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .flow-header {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .research-header {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-header h2,
  .flow-header p,
  .research-title-block,
  .research-copy {
    grid-column: 1;
  }

  .flow-header p,
  .research-copy {
    margin-top: 24px;
  }

  .research-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

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

  .observation-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .before-after-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .urgency-top {
    gap: 56px;
  }

  .urgency-steps {
    grid-template-columns: 1fr 1fr;
  }

  .urgency-steps > i {
    display: none;
  }

  .before-after-flow > i {
    transform: rotate(90deg);
  }

  .flow-cards > i {
    display: none;
  }

  .case-hero-image {
    height: 520px;
  }

  .product-experience-scene {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
    margin-top: 64px;
    padding-bottom: 64px;
  }

  .idea-first-decision-scene {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
    margin-top: 64px;
    padding-bottom: 64px;
  }

  .first-decision-copy {
    position: static;
    grid-column: 1 / -1;
    width: min(100%, 520px);
    transform: none;
  }

  .idea-learning-block {
    padding-bottom: 80px;
  }

  .learning-copy {
    max-width: 520px;
    margin-left: 0;
  }

  .idea-learning-scene {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
    margin-top: 80px;
  }

  .learning-desktop {
    grid-column: 1 / -1;
    width: 100%;
  }

  .learning-caption {
    position: static;
    width: auto;
  }

  .idea-trust-block {
    padding-bottom: 80px;
  }

  .trust-copy {
    max-width: 520px;
    margin-left: 0;
  }

  .idea-trust-phones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
    margin-top: 80px;
  }

  .supporting-tools-phones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
    margin-top: 80px;
  }

  .personalization-phones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
    margin-top: 80px;
  }

  .beyond-community-row,
  .mini-game-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
  }

  .beyond-community-row {
    margin-top: 80px;
  }

  .mini-game-row {
    grid-template-columns: minmax(220px, 0.8fr) repeat(3, minmax(0, 1fr));
    margin-top: 80px;
  }

  .flow-note,
  .phone-stage,
  .support-phone,
  .personalization-phone,
  .beyond-phone,
  .beyond-copy,
  .mini-game-copy,
  .mini-sketch {
    position: static;
    width: auto;
  }

  .phone-stage {
    align-self: start;
  }
}

@media (max-width: 720px) {
  .motion-ready .reveal-on-scroll {
    filter: none;
    will-change: auto;
  }

  .phone-motion-ready .phone-reveal {
    will-change: auto;
  }

  .desktop-only-break {
    display: none;
  }

  .keep-together-desktop {
    white-space: normal;
  }

  .keep-together-mobile {
    display: inline !important;
    margin: 0 !important;
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-transform: inherit !important;
    white-space: nowrap;
  }

  .risk-review-summary {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
  }

  .risk-review-summary-column {
    display: contents;
  }

  .risk-review-summary-left .risk-review-summary-screen {
    order: 1;
  }

  .risk-review-summary-notes {
    order: 2;
  }

  .risk-review-summary-right
    .risk-review-summary-screen:not(.risk-review-summary-frame) {
    order: 4;
  }

  .risk-review-summary-overview {
    order: 5;
  }

  .risk-review-summary-frame {
    order: 3;
  }

  .risk-review-summary-notes,
  .risk-review-summary-overview {
    gap: 20px;
    max-width: none;
  }

  .risk-review-summary .risk-review-summary-notes,
  .risk-review-summary .risk-review-summary-overview {
    margin-top: 32px;
  }

  .risk-review-summary-right
    .risk-review-summary-screen:not(.risk-review-summary-frame),
  .risk-review-summary .risk-review-summary-frame {
    margin-top: 40px;
  }

  .risk-review-summary .risk-review-summary-frame {
    width: calc(100% + 160px);
    max-width: none;
    align-self: flex-start;
  }

  .risk-review-summary-left
    .risk-review-summary-screen:not(.risk-review-summary-frame) {
    margin-left: 0;
  }

  .risk-review-session {
    margin-top: 48px;
  }

  .risk-review-session-main,
  .risk-review-session-discussion,
  .risk-review-session-scenarios {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .risk-review-session-discussion,
  .risk-review-session-scenarios {
    margin-top: 40px;
  }

  .risk-review-session-discussion .risk-review-session-screen {
    order: -1;
  }

  .risk-review-session-notes,
  .risk-review-session-caption {
    gap: 20px;
    max-width: none;
  }

  .risk-review-feature-preparation {
    margin-top: 72px;
  }

  .risk-review-preparation-scene {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .risk-review-preparation-desktop {
    display: none;
  }

  .risk-review-preparation-mobile {
    display: block;
  }

  .risk-review-preparation-carousel {
    display: flex;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 16px;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .risk-review-preparation-carousel::-webkit-scrollbar {
    display: none;
  }

  .risk-review-preparation-carousel .risk-review-preparation-screen {
    flex: 0 0 calc(100vw - 40px);
    width: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .risk-preparation-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .risk-preparation-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .risk-preparation-dots button.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--blue);
  }

  .risk-review-preparation-mobile .risk-review-preparation-notes {
    margin-top: 32px;
  }

  .risk-review-preparation-notes {
    gap: 20px;
    max-width: none;
  }

  .risk-review-preparation-column .risk-review-preparation-screen {
    margin-top: 40px;
  }

  .risk-team-summary-header {
    margin-top: 40px;
  }

  .risk-team-summary-header h2 {
    font-size: var(--mobile-section-title-size);
  }

  .risk-team-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .risk-team-feature-grid article,
  .risk-team-feature-grid article:nth-child(n + 3),
  .risk-team-feature-grid article:last-child {
    grid-column: 1;
    min-height: 0;
    padding: 28px 24px 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .risk-team-feature-grid article:last-child {
    border-bottom: 0;
  }

  .risk-team-feature-grid h3 {
    margin-top: 24px;
  }

  :root {
    --type-section: 44px;
    --mobile-label-size: 11px;
    --mobile-action-size: 13px;
    --mobile-body-size: 16px;
    --mobile-secondary-size: 16px;
    --mobile-small-title-size: 18px;
    --mobile-card-title-size: 20px;
    --mobile-medium-title-size: 24px;
    --mobile-subsection-title-size: 32px;
    --mobile-section-title-size: 44px;
    --mobile-page-title-size: 48px;
    --mobile-display-size: 58px;
    --mobile-role-title-size: var(--mobile-small-title-size);
    --mobile-role-level-size: var(--mobile-secondary-size);
  }

  .site-header {
    position: static;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .header-meta {
    margin-left: auto;
  }

  .hero {
    height: auto;
    padding: 32px 20px 40px;
  }

  .disciplines {
    gap: 8px 12px;
  }

  .disciplines span + span::before {
    margin: 0 12px 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 48px;
  }

  .hero h1 {
    font-size: var(--mobile-display-size);
  }

  .portrait {
    width: min(100%, 258px);
  }

  .intro-card {
    width: min(100%, 320px);
    padding-bottom: 0;
  }

  .role-block p:first-child {
    font-size: var(--mobile-role-title-size);
  }

  .role-block p:last-child {
    font-size: var(--mobile-role-level-size);
  }

  .intro-card > p {
    max-width: 300px;
    font-size: var(--mobile-body-size);
  }

  .intro-card .text-link {
    font-size: var(--mobile-action-size);
  }

  .approach > .section-rule,
  .approach-intro,
  .work,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .approach-intro,
  .principles {
    grid-template-columns: 1fr;
  }

  .approach h2 {
    font-size: var(--type-section);
  }

  .work h2 {
    font-size: var(--type-section);
  }

  .principles h3,
  .project-copy h3,
  .case-flow h3 {
    font-size: var(--type-feature);
  }

  .tags span {
    font-size: 12px;
  }

  .contact-heading h2 {
    font-size: var(--type-section);
  }

  .contact-links strong {
    font-size: var(--mobile-card-title-size);
  }

  .principles article {
    min-height: auto;
    padding: 32px 20px;
  }

  .principles article:nth-child(odd) {
    border-right: 0;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 48px 0;
  }

  .project-row .project-copy {
    display: contents;
  }

  .project-copy > span {
    order: 1;
    margin-bottom: 28px;
  }

  .project-copy h3 {
    order: 2;
    margin-bottom: 24px;
  }

  .project-row .project-media,
  .project-row.reverse .project-media {
    order: 3;
    margin-bottom: 32px;
  }

  .project-copy > p {
    order: 4;
  }

  .project-copy .tags {
    order: 5;
    margin-top: 32px;
  }

  .project-copy .text-link {
    order: 6;
    margin-top: 40px;
  }

  .work .project-media {
    width: 100vw;
    height: auto;
    aspect-ratio: 2852 / 2048;
    margin-left: calc(50% - 50vw);
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .work .project-row:nth-child(3) .project-media {
    border-top: 0;
    border-bottom: 0;
  }

  .case-hero,
  .case-section,
  .idea-challenge,
  .flow-section,
  .research-section,
  .decision-shift-section,
  .urgency-section,
  .case-showcase,
  .case-reflection,
  .next-project,
  .case-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .case-hero {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
  }

  .risk-hero .case-title-block h1 {
    font-size: clamp(36px, 10.7vw, 42px);
    letter-spacing: -0.025em;
  }

  .risk-missing-step {
    padding: 64px 20px;
  }

  .risk-section-label {
    margin-bottom: 40px;
  }

  .risk-missing-step > h2 {
    font-size: var(--mobile-section-title-size);
  }

  .risk-missing-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 48px;
  }

  .risk-missing-narrative h3 {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .risk-review-list {
    gap: 20px;
  }

  .risk-review-list article {
    padding-left: 20px;
  }

  .risk-research {
    padding: 64px 20px;
  }

  .risk-research-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
  }

  .risk-research-heading h2 {
    font-size: var(--mobile-section-title-size);
  }

  .risk-research-methods {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .risk-research-methods-label {
    padding: 24px;
  }

  .risk-research-methods article {
    min-height: 0;
    padding: 28px 24px 32px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .risk-research-methods article:nth-of-type(1) {
    border-top: 0;
  }

  .risk-research-methods article > div {
    margin-bottom: 0;
  }

  .risk-research-methods h3 {
    font-size: 16px;
  }

  .risk-research-methods article > p {
    font-size: 16px;
  }

  .risk-insights {
    margin-top: 72px;
    padding-top: 48px;
  }

  .risk-insights-header {
    margin-top: 0;
  }

  .risk-insights-header h2 {
    font-size: var(--type-feature);
  }

  .risk-insights-list {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .risk-insights-list article {
    min-height: 0;
    padding: 28px 24px 32px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .risk-insights-list article:first-child {
    border-top: 0;
  }

  .risk-insights-list h3 {
    font-size: 16px;
  }

  .risk-insights-list p {
    font-size: 16px;
  }

  .risk-review-experience {
    padding: 64px 20px;
  }

  .risk-review-experience-header {
    margin-top: 40px;
  }

  .risk-review-experience-header h2 {
    font-size: var(--mobile-section-title-size);
    white-space: normal;
  }

  .risk-review-phase-title {
    font-size: var(--type-feature);
  }

  .risk-review-phase-divider {
    margin-top: 64px;
  }

  .risk-review-feature {
    margin-top: 48px;
    padding-bottom: 64px;
  }

  .risk-review-feature-split,
  .risk-review-feature-reverse,
  .risk-review-feature-scope,
  .risk-review-feature-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .risk-review-feature-scope {
    justify-content: stretch;
    margin-top: 48px;
    padding-bottom: 0;
  }

  .risk-review-feature-preparation {
    margin-top: 40px;
  }

  .risk-review-scope-screen {
    width: 100%;
  }

  .risk-review-scope-screen img {
    width: 100%;
  }

  .risk-review-scope-screen img,
  .risk-review-preparation-screen img,
  .risk-review-session-screen img,
  .risk-review-summary-screen img {
    border-radius: 8px;
  }

  .risk-review-scope-notes,
  .risk-review-preparation-notes,
  .risk-review-session-notes,
  .risk-review-session-caption,
  .risk-review-summary-notes,
  .risk-review-summary-overview {
    gap: 8px;
  }

  .risk-review-scope-notes {
    max-width: none;
  }

  .risk-review-feature-reverse .risk-review-feature-copy {
    order: -1;
  }

  .risk-review-feature-heading {
    margin-bottom: 40px;
  }

  .risk-review-feature h3 {
    font-size: var(--type-feature);
  }

  .risk-review-feature-copy > p,
  .risk-review-feature-heading > p {
    margin-top: 20px;
  }

  .risk-plugin-stage,
  .risk-plugin-stage-tall,
  .risk-completion-grid .risk-plugin-stage {
    padding: 16px;
  }

  .risk-plugin-pair,
  .risk-completion-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .risk-review-subphase-divider {
    margin-top: 64px;
  }

  .risk-summary-stage {
    margin-top: 16px;
  }

  .case-hero-grid {
    display: contents;
  }

  .case-title-block {
    order: 1;
  }

  .case-hero .case-hero-image {
    order: 2;
    width: calc(100% + 40px);
    height: auto;
    aspect-ratio: 2852 / 2048;
    margin-top: 32px;
    margin-bottom: 40px;
    margin-left: -20px;
    border-radius: 0;
  }

  .case-hero .case-hero-image picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .case-page.sky-page .case-hero-image {
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .case-quote {
    order: 3;
    margin-bottom: 48px;
  }

  .breadcrumb {
    margin-bottom: 40px;
  }

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

  .case-meta dt {
    font-size: 12px;
  }

  .case-meta dd {
    font-size: 16px;
  }

  .case-showcase h2 {
    margin-bottom: 56px;
  }

  .primary-flow-title {
    font-size: var(--mobile-subsection-title-size);
    text-align: left;
  }

  .product-experience-scene {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    overflow: hidden;
  }

  .product-experience-scene .phone-stage {
    position: static;
    top: auto;
    left: auto;
    justify-self: unsafe center;
    width: 135%;
    max-width: none;
    margin: -64px 0 0;
    filter: none;
    translate: 1% 0;
  }

  .product-experience-scene .flow-note {
    width: 100%;
    margin: -88px 0 32px;
    text-align: center;
  }

  .mobile-only-break {
    display: initial;
  }

  .product-experience-scene .flow-note p {
    max-width: 300px;
    margin: 0 auto;
  }

  .product-experience-scene .phone-alert {
    order: 1;
  }

  .product-experience-scene .alert-note {
    order: 2;
  }

  .product-experience-scene .phone-context {
    order: 3;
  }

  .product-experience-scene .context-note {
    order: 4;
  }

  .product-experience-scene .phone-shelter {
    order: 5;
  }

  .product-experience-scene .shelter-note {
    order: 6;
    margin-bottom: 0;
  }

  .idea-first-decision-scene {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 48px;
    padding-bottom: 65px;
    overflow: hidden;
  }

  .first-decision-copy {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0 auto 42px;
    font-size: var(--mobile-secondary-size);
    line-height: 1.55;
    text-align: left;
  }

  .idea-first-decision-scene .idea-screen-home {
    order: 2;
  }

  .idea-first-decision-scene .understand-note {
    order: 3;
  }

  .idea-first-decision-scene .idea-screen-reasons {
    order: 4;
  }

  .idea-first-decision-scene .assess-note {
    order: 5;
  }

  .idea-first-decision-scene .idea-screen-trial {
    order: 6;
  }

  .idea-first-decision-scene .apply-note {
    order: 7;
    margin-bottom: 0;
  }

  .idea-learning-divider,
  .idea-trust-divider {
    margin-top: 0;
    margin-bottom: 54px;
  }

  .idea-learning-block {
    padding-top: 48px;
    padding-bottom: 65px;
  }

  .learning-copy,
  .trust-copy {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    font-size: var(--mobile-secondary-size);
    line-height: 1.55;
    text-align: left;
  }

  .idea-learning-scene {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 48px;
    overflow: visible;
  }

  .idea-screens {
    overflow: hidden;
  }

  .learning-desktop {
    justify-self: start;
    width: calc(100% + 160px);
    max-width: none;
    border-radius: 16px;
    order: 1;
    margin: 0;
  }

  .idea-trust-block {
    padding-top: 48px;
    padding-bottom: 0;
  }

  .idea-trust-phones {
    position: relative;
    z-index: 3;
    margin-top: 48px;
  }

  .supporting-tools-copy {
    margin-top: 48px;
  }

  .supporting-tools-phones {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .personalization-phones {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .beyond-community-row,
  .mini-game-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .beyond-copy,
  .mini-game-copy {
    max-width: 100%;
  }

  .flow-note {
    margin-top: 28px;
  }

  .phone-stage,
  .support-phone,
  .personalization-phone,
  .beyond-phone,
  .idea-screen-phone,
  .learning-phone,
  .trust-phone {
    width: min(100%, 290px);
    margin: 0 auto 18px;
  }

  .case-showcase .phone-stage {
    position: static;
    top: auto;
    left: auto;
    justify-self: unsafe center;
    width: 135%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    filter: none;
  }

  .case-showcase .support-phone-map {
    width: 94.74%;
    translate: -4.8% 0;
  }

  .case-showcase .support-phone-sources {
    width: 99.92%;
    translate: -7.3% 0;
  }

  .case-showcase .support-phone-history {
    width: 100.22%;
    translate: -7.4% 0;
  }

  .case-showcase .personalization-phone-region {
    width: 97.08%;
    translate: -6.3% 0;
  }

  .case-showcase .personalization-phone-settings,
  .case-showcase .beyond-phone-community {
    width: 100.68%;
  }

  .case-showcase .personalization-phone-settings {
    translate: -7.1% 0;
  }

  .case-showcase .beyond-phone-community {
    translate: -5.2% 0;
  }

  .case-showcase .beyond-phone-chat {
    width: 100.08%;
    translate: -4.9% 0;
  }

  .supporting-tools-phones,
  .personalization-phones,
  .beyond-community-row {
    row-gap: 0;
    overflow: hidden;
  }

  .case-showcase .support-phone-map,
  .case-showcase .support-phone-sources {
    margin-bottom: 36px;
  }

  .supporting-tools-block {
    padding-bottom: 59px;
  }

  .case-showcase .support-phone-history {
    margin-bottom: 0;
  }

  .case-showcase .personalization-phone-region {
    margin-bottom: 13px;
  }

  .personalization-block {
    padding-bottom: 14px;
  }

  .case-showcase .personalization-phone-settings {
    margin-bottom: 0;
  }

  .case-showcase .beyond-phone-community {
    order: 2;
    margin-bottom: 22px;
  }

  .case-showcase .beyond-phone-chat {
    order: 3;
    margin-bottom: 20px;
  }

  .beyond-community-row .community-copy {
    order: 1;
    max-width: 300px;
    margin: 0 auto 48px;
    font-size: var(--mobile-body-size);
    line-height: 1.6;
    text-align: center;
  }

  .mini-game-row .mini-game-copy {
    max-width: 300px;
    margin: 0 auto 48px;
    font-size: var(--mobile-body-size);
    line-height: 1.6;
    text-align: center;
  }

  .mini-game-row {
    row-gap: 0;
  }

  .mini-game-carousel,
  .community-carousel,
  .trust-carousel {
    display: flex;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 30px 16px;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mini-game-carousel::-webkit-scrollbar,
  .community-carousel::-webkit-scrollbar,
  .trust-carousel::-webkit-scrollbar {
    display: none;
  }

  .mini-game-carousel .mini-sketch {
    flex: 0 0 min(78vw, 280px);
    width: auto;
    margin: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .community-carousel {
    order: 2;
    padding-right: 20px;
    padding-left: 20px;
    scroll-padding-inline: 20px;
  }

  .community-carousel .beyond-phone {
    flex: 0 0 min(89vw, 320px);
    width: auto;
    margin: 0;
    translate: 0 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .trust-carousel {
    padding: 0 20px;
    scroll-padding-inline: 20px;
  }

  .trust-carousel .trust-slide {
    display: flex;
    flex: 0 0 calc(100vw - 40px);
    min-width: 0;
    justify-content: center;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .trust-carousel .trust-phone {
    flex: 0 0 auto;
  }

  .idea-screens .trust-carousel .trust-phone-parents {
    width: 374px;
    translate: -5.04% 0;
  }

  .idea-screens .trust-carousel .trust-phone-reviews {
    width: 359px;
    translate: 0.34% 0;
  }

  .idea-screens .trust-carousel .trust-phone-faq {
    width: 347px;
    translate: -4.6% 0;
  }

  .trust-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .trust-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .trust-dots button.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--blue);
  }

  .mini-game-dots,
  .community-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .mini-game-dots button,
  .community-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .mini-game-dots button.is-active,
  .community-dots button.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--blue);
  }

  .community-dots {
    order: 3;
  }

  .idea-screens .idea-screen-reasons {
    width: 371px;
    translate: -5.15% 0;
  }

  .idea-screens .idea-screen-home {
    width: 388px;
    translate: -7.37% 0;
  }

  .idea-screens .idea-screen-trial {
    width: 428px;
    translate: 0 0;
  }

  .idea-screens .learning-phone.learning-phone-events {
    position: relative;
    z-index: 2;
    width: 400px;
    margin-top: -300px;
    translate: -6.3% 0;
  }

  .idea-screens .learning-phone.learning-phone-gallery {
    width: 384px;
    translate: -2.8% 0;
  }

  .learning-phone-events {
    order: 2;
  }

  .learning-caption-life {
    order: 3;
  }

  .learning-phone-gallery {
    order: 4;
  }

  .learning-caption-gallery {
    order: 5;
  }

  .learning-caption {
    width: 100%;
    margin: 0 auto 32px;
    text-align: center;
  }

  .learning-caption-gallery {
    margin-bottom: 0;
  }

  .idea-first-decision-scene .idea-screen-note {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .idea-first-decision-scene .idea-screen-phone {
    margin-bottom: 0;
  }

  .idea-first-decision-scene .understand-note {
    margin-top: -11px;
    margin-bottom: 107px;
  }

  .idea-first-decision-scene .assess-note {
    margin-top: 27px;
    margin-bottom: 86px;
  }

  .idea-first-decision-scene .apply-note {
    margin-top: 28px;
    margin-bottom: 0;
  }

  .idea-first-decision-scene .idea-screen-note p {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .idea-learning-scene .learning-caption-life {
    margin-top: 7px;
    margin-bottom: 113px;
  }

  .idea-learning-scene .learning-caption-gallery {
    margin-top: 15px;
  }

  .idea-learning-scene .learning-caption p {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .idea-screens .learning-phone,
  .idea-screens .trust-phone {
    justify-self: unsafe center;
    max-width: none;
    margin: 0;
    filter: none;
    translate: 0 0;
  }

  .idea-screens .idea-screen-phone {
    justify-self: unsafe center;
    margin-right: 0;
    margin-left: 0;
  }

  .idea-screens .trust-phone-parents {
    width: 374px;
    translate: -17.75% 0;
  }

  .idea-screens .trust-phone-reviews {
    width: 359px;
    translate: -10.75% 0;
  }

  .idea-screens .trust-phone-faq {
    width: 347px;
    translate: -14.4% 0;
  }

  .idea-trust-phones .trust-phone {
    margin: 0;
    filter: none;
  }

  .mini-sketch {
    width: min(100%, 260px);
    margin: 0 auto 18px;
  }

  .flow-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .case-section:not(.idea-audit) {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .flow-header h2 {
    margin-top: 40px;
  }

  .research-title-block {
    margin-top: 40px;
  }

  .research-title-block h2 {
    margin-bottom: 32px;
  }

  .research-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .research-stats div {
    min-width: 0;
    padding: 0 12px;
    text-align: center;
  }

  .research-stats div:first-child {
    padding-left: 0;
  }

  .research-stats div:last-child {
    padding-right: 0;
  }

  .research-stats div + div {
    border-left: 1px solid var(--line);
  }

  .research-stats dt {
    font-size: var(--mobile-subsection-title-size);
  }

  .research-stats dd {
    min-height: 34px;
    font-size: var(--mobile-label-size);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .research-panel {
    margin-top: 48px;
  }

  .research-panel > span,
  .observation-grid article {
    padding-left: 24px;
    padding-right: 24px;
  }

  .decision-shift-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .decision-shift-grid {
    gap: 40px;
    margin-top: 40px;
  }

  .before-after-flow article {
    padding: 24px;
  }

  .urgency-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .case-showcase {
    padding-top: 64px;
  }

  .urgency-copy h2 {
    letter-spacing: 0;
  }

  .priority-card header,
  .priority-items,
  .priority-items.compact,
  .urgency-steps {
    grid-template-columns: 1fr;
  }

  .priority-card header {
    gap: 6px;
    padding: 18px 24px;
  }

  .priority-card header span {
    position: absolute;
    right: 24px;
    top: 24px;
  }

  .priority-card {
    position: relative;
  }

  .priority-items {
    padding: 24px;
  }

  .urgency-principle {
    padding-top: 48px;
  }

  .urgency-steps {
    margin-top: 40px;
  }

  .urgency-steps article > span {
    font-size: var(--mobile-medium-title-size);
  }

  .core-flow-panel {
    margin-top: 48px;
    padding: 32px 24px 40px;
  }

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

  .flow-card {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .flow-legend > div {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .flow-legend i {
    width: 100%;
    order: 3;
  }

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

  .case-quote blockquote {
    font-size: var(--mobile-medium-title-size);
  }

  .case-hero-image {
    height: clamp(260px, 70vw, 420px);
    margin: 48px 0 56px;
  }

  .idea-hero-image {
    height: clamp(260px, 72vw, 420px);
  }

  .response-card {
    padding: 24px;
  }

  .idea-copy-block p,
  .intent-table p {
    font-size: var(--mobile-secondary-size);
  }

  .risk-beyond-mvp .intent-heading p {
    font-size: var(--mobile-secondary-size);
  }

  .idea-challenge .challenge-callout {
    font-size: var(--mobile-secondary-size);
  }

  .idea-challenge-copy h3 {
    font-size: var(--mobile-card-title-size);
  }

  .idea-challenge-copy p {
    font-size: var(--mobile-secondary-size);
  }

  .challenge-findings p {
    font-size: var(--mobile-body-size);
  }

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

  .challenge-findings article,
  .challenge-findings article:nth-child(3),
  .challenge-findings article:nth-child(4) {
    min-height: 0;
  }

  .research-stats-card,
  .research-methods {
    grid-template-columns: 1fr;
  }

  .research-stats-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-radius: 0;
  }

  .research-stats-card div {
    min-height: 0;
    min-width: 0;
    padding: 0 12px;
    text-align: center;
  }

  .research-stats-card div:first-child {
    padding-left: 0;
  }

  .research-stats-card div:last-child {
    padding-right: 0;
  }

  .research-stats-card div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .research-stats-card dt {
    font-size: var(--mobile-subsection-title-size);
  }

  .research-stats-card dd {
    min-height: 34px;
    font-size: var(--mobile-label-size);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .research-methods article,
  .research-methods article:nth-child(3),
  .research-methods article:nth-child(4) {
    min-height: 0;
    border: 0;
  }

  .research-methods {
    display: block;
    margin-top: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .research-methods article,
  .research-methods article:nth-child(3),
  .research-methods article:nth-child(4) {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 20px;
    align-items: start;
    width: 100%;
    padding: 32px 0;
  }

  .research-methods article:nth-child(n + 2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .research-methods span {
    grid-row: 1 / 3;
    margin: 0;
    padding-top: 3px;
  }

  .research-methods h3,
  .research-methods p {
    grid-column: 2;
    margin-top: 0;
  }

  .research-board {
    border-radius: 8px;
  }

  .research-board-intro {
    white-space: normal;
  }

  .research-board img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .decision-insights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    border-top: 0;
    counter-reset: decision-pair;
  }

  .decision-insights article {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 32px 0 40px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 2px solid var(--blue);
    counter-increment: decision-pair;
  }

  .decision-insights article + article {
    padding-left: 20px;
    border-top: 1px solid var(--line);
    border-left: 2px solid var(--blue);
  }

  .decision-insights article > b {
    order: 1;
    margin: 0 0 12px;
    font-size: var(--mobile-action-size);
  }

  .decision-insights article > span:first-child {
    order: 2;
    margin-bottom: 24px;
  }

  .decision-insights article > h3 {
    order: 3;
  }

  .decision-insights article > p:first-of-type {
    order: 4;
  }

  .decision-insights hr {
    order: 5;
    margin: 32px 0;
  }

  .decision-insights article > span:nth-of-type(2) {
    order: 6;
  }

  .decision-insights article > h4 {
    order: 7;
  }

  .decision-insights article > p:last-of-type {
    order: 8;
  }

  .decision-insights h3,
  .decision-insights h4 {
    font-size: var(--mobile-card-title-size);
  }

  .decision-insights p {
    font-size: var(--mobile-secondary-size);
  }

  .audit-finding {
    padding: 24px 20px 20px;
  }

  .audit-finding-large {
    padding-bottom: 20px;
  }

  .audit-finding figure {
    border-color: var(--line);
  }

  .audit-finding-large figure,
  .audit-finding:not(.audit-finding-large) figure {
    height: clamp(220px, 54vw, 360px);
  }

  .audit-finding-large figure {
    height: clamp(220px, 54vw, 360px);
    aspect-ratio: auto;
    background: var(--surface);
  }

  .audit-finding-large img {
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .idea-audit-board .audit-finding:nth-child(2) img,
  .idea-audit-board .audit-finding:nth-child(3) img {
    object-fit: cover;
    object-position: center bottom;
  }

  .audit-finding span {
    margin-bottom: 28px;
  }

  .audit-finding h3 {
    font-size: var(--mobile-secondary-size);
  }

  .audit-finding-large h3 {
    white-space: normal;
  }

  .response-card li,
  .insight-list article,
  .intent-table article,
  .decision-table article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .risk-beyond-mvp-list article {
    gap: 16px;
  }

  .response-steps p {
    white-space: normal;
  }

  .case-page :not(.research-copy) > p + p {
    margin-top: 14px;
  }

  .research-copy {
    gap: 14px;
  }

  .response-card {
    min-height: 0;
    padding: 28px 20px 32px;
  }

  .response-card > span {
    margin-bottom: 32px;
  }

  .response-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .response-steps::before {
    top: 20px;
    right: auto;
    bottom: 20px;
    left: 19px;
    width: 1px;
    height: auto;
  }

  .response-card .response-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 16px;
    justify-items: start;
    min-height: 72px;
    padding-bottom: 20px;
    text-align: left;
  }

  .response-card .response-steps li:last-child {
    min-height: 40px;
    padding-bottom: 0;
  }

  .response-steps b {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .response-steps strong {
    align-self: end;
    line-height: 1.3;
  }

  .response-steps p {
    grid-column: 2;
    margin-top: 0;
    line-height: 1.45;
  }

  .response-progress {
    margin-top: 32px;
  }

  .response-progress::before,
  .response-progress i {
    top: 24px;
    height: 6px;
  }

  .response-caption {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 35px;
    font-size: 11px;
  }

  .response-caption span:nth-child(2) {
    text-align: center;
  }

  .case-flow article + article {
    padding-left: 0;
    border-left: 0;
  }

  .case-section-heading h2,
  .case-split-title h2,
  .case-showcase h2 {
    font-size: var(--mobile-section-title-size);
  }

  .idea-challenge .case-section-heading h2,
  .idea-research-heading h2,
  .idea-decision-header h2 {
    margin-top: 40px;
  }

  .idea-challenge-top {
    gap: 48px;
  }

  .idea-challenge-copy {
    margin-top: 0;
  }

  .idea-challenge-copy h3 br {
    display: none;
  }

  .idea-challenge .challenge-callout,
  .idea-research-heading p {
    margin-top: 32px;
  }

  .challenge-findings {
    display: block;
    margin-top: 56px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .challenge-findings article,
  .challenge-findings article:nth-child(3),
  .challenge-findings article:nth-child(4) {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    width: 100%;
    min-height: 0;
    padding: 32px 0;
    border: 0;
    background: transparent;
  }

  .challenge-findings article:nth-child(n + 2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .challenge-findings span {
    margin: 0;
    padding-top: 4px;
    font-size: var(--mobile-action-size);
  }

  .challenge-findings p {
    font-size: var(--mobile-secondary-size);
    line-height: 1.4;
  }

  .idea-research-top {
    gap: 48px;
  }

  .research-methods {
    margin-top: 0;
  }

  .research-board-intro {
    margin-top: 32px;
  }

  .research-board {
    margin-top: 32px;
  }

  .decision-insights {
    margin-top: 48px;
  }

  .reflection-grid {
    margin-top: 48px;
  }

  .idea-reflection .reflection-grid,
  .risk-reflection .reflection-grid {
    gap: 64px;
  }

  .reflection-notes strong {
    font-size: 18px;
  }

  .case-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-footer .back-to-top {
    order: 1;
  }

  .case-footer > span {
    order: 3;
  }

  .case-footer > a:last-child {
    order: 2;
    justify-self: start;
  }

  .contact-links > a,
  .contact-email-row {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    min-height: 108px;
    padding: 24px 0;
  }

  .contact-links > a > span,
  .contact-email-row > span {
    grid-column: 1 / -1;
    max-width: 320px;
  }

  .contact-heading h2 br {
    display: none;
  }

  .contact-heading p {
    max-width: 320px;
  }

  .contact {
    gap: 40px;
  }

  .contact-links > a[href*="t.me"] > span {
    font-size: var(--mobile-body-size);
    white-space: normal;
  }

  .contact-email-copy {
    grid-column: 1;
    justify-self: start;
  }

  /* Unified mobile type scale: 11 / 13 / 15 / 16 / 18 / 20 / 24 / 32 / 44 / 48 / 58 */
  .case-title-block h1 {
    font-size: var(--mobile-page-title-size);
  }

  .approach-intro > p,
  .experience-list,
  .principles p,
  .project-copy p,
  .contact-heading p,
  .contact-links > a > span,
  .contact-email-row > span,
  .case-section-heading p,
  .response-steps p,
  .decision-shift-copy p,
  .reflection-grid p,
  .research-methods p,
  .idea-screen-note p,
  .learning-caption p,
  .email-popover span {
    font-size: var(--mobile-body-size);
  }

  .idea-screen-note h3,
  .learning-caption h3 {
    font-size: var(--mobile-small-title-size);
  }

  .idea-page .idea-screen-note p,
  .idea-page .learning-caption p {
    font-size: var(--mobile-secondary-size);
  }

  .idea-page .first-decision-copy,
  .idea-page .learning-copy,
  .idea-page .trust-copy {
    font-size: var(--mobile-secondary-size);
  }

  .risk-review-scope-notes p,
  .risk-review-preparation-notes p,
  .risk-review-session-notes p,
  .risk-review-session-caption p,
  .risk-review-summary-notes p,
  .risk-review-summary-overview p,
  .product-experience-scene .flow-note p,
  .sky-page .beyond-copy,
  .idea-page .idea-screen-note p,
  .idea-page .learning-caption p {
    line-height: 1.55;
  }

  .flow-card > div > span,
  .before-after-flow p,
  .email-popover button {
    font-size: var(--mobile-action-size);
  }
}

/* Shared portfolio design-system normalization */
.urgency-label,
.urgency-principle p,
.urgency-principle footer,
.case-reflection .case-label,
.reflection-notes span,
.next-project > div > span,
.next-project p,
.case-footer {
  color: var(--muted-dark);
}

.next-project > div > .text-link {
  color: #7da6ff;
}

.case-section-heading h2,
.flow-header h2,
.research-title-block h2,
.risk-review-experience-header h2 {
  line-height: 1.05;
}

.case-section-heading p,
.flow-header p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .sky-page .supporting-tools-phones,
  .sky-page .personalization-phones {
    margin-top: 40px;
  }

  .sky-page .supporting-tools-carousel {
    display: flex;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 16px;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sky-page .supporting-tools-carousel::-webkit-scrollbar {
    display: none;
  }

  .sky-page .supporting-tools-carousel .support-phone {
    display: flex;
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    justify-content: center;
    margin-bottom: 0;
    translate: 0 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .sky-page .supporting-tools-carousel .support-phone-map img {
    width: 94.74%;
    max-width: none;
    translate: -4.32% 0;
  }

  .sky-page .supporting-tools-carousel .support-phone-sources img {
    width: 99.92%;
    max-width: none;
    translate: -2.42% 0;
  }

  .sky-page .supporting-tools-carousel .support-phone-history img {
    width: 100.22%;
    max-width: none;
    translate: -2.57% 0;
  }

  .sky-page .supporting-tools-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .sky-page .supporting-tools-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .sky-page .supporting-tools-dots button.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--blue);
  }

  .sky-page .personalization-carousel {
    display: flex;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 16px;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sky-page .personalization-carousel::-webkit-scrollbar {
    display: none;
  }

  .sky-page .personalization-carousel .personalization-phone {
    display: flex;
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    justify-content: center;
    margin-bottom: 0;
    translate: 0 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .sky-page .personalization-carousel .personalization-phone-region img {
    width: 97.08%;
    max-width: none;
    translate: -6.31% 0;
  }

  .sky-page .personalization-carousel .personalization-phone-settings img {
    width: 100.68%;
    max-width: none;
    translate: -7.08% 0;
  }

  .sky-page .personalization-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .sky-page .personalization-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .sky-page .personalization-dots button.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--blue);
  }

  .sky-page .personalization-block {
    padding-bottom: 59px;
  }

  .sky-page .beyond-community-row {
    margin-top: 48px;
  }

  .sky-page .mini-game-row {
    margin-top: 56px;
  }

  .sky-page .community-carousel,
  .sky-page .mini-game-carousel {
    order: 1;
  }

  .sky-page .community-carousel .beyond-phone {
    display: flex;
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    justify-content: center;
    translate: 0 0;
  }

  .sky-page .community-carousel .beyond-phone-community img {
    width: 100%;
    max-width: none;
    translate: -4.88% 0;
  }

  .sky-page .community-carousel .beyond-phone-chat img {
    width: 99.4%;
    max-width: none;
    translate: -4.66% 0;
  }

  .sky-page .community-dots,
  .sky-page .mini-game-dots {
    order: 2;
  }

  .sky-page .beyond-community-row .community-copy,
  .sky-page .mini-game-row .mini-game-copy {
    order: 3;
    max-width: none;
    margin: 24px 0 0;
    font-size: var(--mobile-secondary-size);
    line-height: 1.55;
    text-align: left;
  }

  .sky-page .intent-table article {
    gap: 16px;
  }

  .sky-page .case-reflection .reflection-grid {
    gap: 64px;
  }

  .sky-page .urgency-top {
    gap: 48px;
  }

  .sky-page .urgency-steps {
    margin-top: 48px;
  }

  .sky-page .before-after-flow {
    gap: 0;
  }

  .sky-page .before-after-flow article > span {
    font-size: 12px;
  }

  .sky-page .before-after-flow p {
    font-size: 16px;
  }

  .sky-page .before-after-flow > i {
    transform: none;
    box-shadow: 0 0 0 8px #fff;
    font-size: 0;
  }

  .sky-page .before-after-flow > i::before {
    content: none;
  }

  .sky-page .before-after-flow > i::after {
    content: "↓";
    font-size: 20px;
  }

  .risk-hero .case-title-block h1 {
    font-size: var(--mobile-page-title-size);
    letter-spacing: 0;
  }

  .idea-audit {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .next-project h2 {
    font-size: var(--mobile-section-title-size);
    line-height: 1.15;
  }

  .case-section-heading p,
  .flow-header p,
  .idea-challenge .case-section-heading p {
    font-size: var(--mobile-body-size);
    line-height: 1.6;
  }

  .sky-page .case-section.case-two-col .case-section-heading p {
    font-size: 16px;
  }

  .risk-review-experience .risk-review-phase-title {
    font-size: var(--type-feature);
    line-height: 1.2;
  }

  .home-page {
    --mobile-body-size: 16px;
  }

  .home-page .intro-card > p,
  .home-page .approach-intro > p,
  .home-page .experience-list,
  .home-page .principles p,
  .home-page .project-copy p,
  .home-page .contact-heading p,
  .home-page .contact-links > a > span,
  .home-page .contact-email-row > span,
  .home-page .email-popover span {
    line-height: 1.6;
  }
}
