@font-face {
  font-family: "ITC Charter";
  src: url("assets/fonts/ITCCharter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Charter";
  src: url("assets/fonts/ITCCharter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("assets/fonts/HelveticaNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("assets/fonts/HelveticaNeue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("assets/fonts/HelveticaNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --pwc-orange: #fd5108;
  --pwc-orange-medium: #fe7c39;
  --pwc-orange-light: #ffaa72;
  --pwc-orange-tint-1: #ffcda8;
  --pwc-orange-tint-2: #ffe8d4;
  --pwc-orange-tint-3: #fff5ed;
  --pwc-black: #000000;
  --pwc-white: #ffffff;
  --pwc-grey: #68717d;
  --pwc-grey-medium: #b5bcc4;
  --pwc-grey-light: #cbd1d6;
  --pwc-grey-tint-1: #dfe3e6;
  --pwc-grey-tint-2: #eeeff1;
  --pwc-grey-tint-3: #f5f7f8;
  --font-display: "ITC Charter", Georgia, serif;
  --font-ui: "Helvetica Neue LT Pro", Arial, sans-serif;
  --content-width: 1480px;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --radius-control: 2px;
  --radius-panel: 4px;
  --header-height: 76px;
  --focus-ring: 0 0 0 4px rgba(253, 81, 8, 0.28);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--pwc-white);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--pwc-black);
  background: var(--pwc-white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-style: normal;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--pwc-black);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--pwc-white);
  background: var(--pwc-black);
  transform: translateY(-120%);
  transition: transform 160ms var(--ease-out);
}

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

.app-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-white);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 48px;
  color: var(--pwc-black);
  text-decoration: none;
}

.brand-lockup img {
  width: 54px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 28px;
  margin: 0 0.9rem;
  background: var(--pwc-grey-tint-1);
}

.product-name {
  display: grid;
  line-height: 1.05;
}

.product-name strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.product-name span {
  margin-top: 0.22rem;
  color: #545c65;
  font-size: 0.76rem;
  font-weight: 500;
}

.lens-nav {
  justify-self: center;
}

.lens-switcher {
  --active-index: 0;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(84px, 1fr));
  width: min(360px, 38vw);
  min-width: 286px;
  padding: 4px;
  border: 1px solid #c6cbd0;
  border-radius: var(--radius-panel);
  background: var(--pwc-grey-tint-3);
}

.lens-indicator {
  position: absolute;
  z-index: -1;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 3);
  border-radius: 2px;
  background: var(--pwc-black);
  transform: translateX(calc(var(--active-index) * 100%));
  transition: transform 240ms var(--ease-out);
}

.lens-tab {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  color: #34383d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: color 160ms var(--ease-out);
}

.lens-tab.is-active {
  color: var(--pwc-white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1rem;
}

.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4c535b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.preview-label::before {
  width: 7px;
  height: 7px;
  background: var(--pwc-orange);
  content: "";
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
  gap: 1rem;
  border: 1px solid #bfc5cb;
  border-radius: var(--radius-control);
  background: var(--pwc-white);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.search-trigger:hover {
  border-color: var(--pwc-black);
  background: var(--pwc-grey-tint-3);
}

.search-trigger kbd {
  padding: 0.18rem 0.35rem;
  border: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-grey-tint-3);
  color: #555c63;
  font-family: var(--font-ui);
  font-size: 0.68rem;
}

.view-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  min-height: 392px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) var(--page-gutter) clamp(3.75rem, 6vw, 6rem);
  gap: 4rem;
  overflow: hidden;
}

.view-hero::before {
  position: absolute;
  top: 0;
  left: var(--page-gutter);
  width: 72px;
  height: 5px;
  background: var(--pwc-orange);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.eyebrow {
  margin-bottom: 1rem;
  color: #50565d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 0.55rem 0.23rem 0;
  background: var(--pwc-orange);
  content: "";
}

.view-hero h1 {
  max-width: 940px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 760px;
  margin-bottom: 0;
  color: #34383d;
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  font-weight: 500;
  line-height: 1.42;
}

.hero-signal {
  position: relative;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 1.7rem 0 0 1.6rem;
  gap: 1.25rem;
  border-top: 1px solid var(--pwc-black);
  border-left: 5px solid var(--pwc-orange);
}

.hero-count {
  color: var(--pwc-orange);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-count-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signal p {
  margin-bottom: 0;
  color: #4f555c;
  font-size: 0.86rem;
  line-height: 1.45;
}

.momentum-mark {
  position: absolute;
  right: var(--page-gutter);
  bottom: 0.3rem;
  width: 180px;
  height: auto;
  opacity: 0.17;
  pointer-events: none;
}

.explore-shell {
  min-height: 760px;
  border-top: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-grey-tint-3);
}

.view-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) var(--page-gutter) clamp(4rem, 8vw, 8rem);
  animation: view-enter 320ms var(--ease-out) both;
}

@keyframes view-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-state {
  max-width: 620px;
  padding: 6rem var(--page-gutter);
}

.loading-state p {
  margin-top: 1.5rem;
  color: #5b626a;
  font-size: 0.85rem;
}

.loading-line {
  display: block;
  width: 64%;
  height: 12px;
  margin-bottom: 0.8rem;
  background: var(--pwc-grey-tint-1);
  animation: loading-pulse 1.2s ease-in-out infinite alternate;
}

.loading-line-wide {
  width: 100%;
  height: 36px;
}

.loading-line-short {
  width: 38%;
}

@keyframes loading-pulse {
  to {
    opacity: 0.45;
  }
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  align-items: end;
  margin-bottom: 2.5rem;
  gap: 3rem;
}

.section-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-note {
  margin-bottom: 0;
  padding-left: 1.15rem;
  border-left: 3px solid var(--pwc-orange);
  color: #4b5259;
  font-size: 0.9rem;
  line-height: 1.5;
}

.challenge-rail,
.sector-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1.4rem;
  border-top: 1px solid #bdc3c9;
  border-bottom: 1px solid #bdc3c9;
}

.choice-card,
.sector-button {
  position: relative;
  min-width: 0;
  min-height: 154px;
  padding: 1.25rem 1.15rem 1.35rem;
  border: 0;
  border-right: 1px solid #bdc3c9;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.choice-card:last-child,
.sector-button:last-child {
  border-right: 0;
}

.choice-card::after,
.sector-button::after {
  position: absolute;
  right: 1rem;
  bottom: 0.95rem;
  color: var(--pwc-orange);
  font-size: 1.1rem;
  content: "↗";
}

.choice-card:hover,
.sector-button:hover {
  background: var(--pwc-white);
}

.choice-card.is-active,
.sector-button.is-active {
  background: var(--pwc-black);
  color: var(--pwc-white);
}

.choice-card.is-active::before,
.sector-button.is-active::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--pwc-orange);
  content: "";
}

.choice-number {
  display: block;
  margin-bottom: 2rem;
  color: #4b5259;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.choice-card.is-active .choice-number,
.sector-button.is-active .choice-number {
  color: var(--pwc-orange-light);
}

.choice-title {
  display: block;
  max-width: 18ch;
  padding-right: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.08;
}

.detail-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  min-height: 650px;
  border: 1px solid #c8cdd2;
  background: var(--pwc-white);
}

.narrative-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
  color: var(--pwc-white);
  background: var(--pwc-black);
}

.narrative-panel::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 52px solid var(--pwc-orange);
  content: "";
  transform: rotate(12deg);
  opacity: 0.9;
}

.stage-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  gap: 0.7rem;
  color: var(--pwc-orange-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-index::before {
  width: 24px;
  height: 2px;
  background: var(--pwc-orange);
  content: "";
}

.narrative-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 3.6vw, 4.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.stage-summary {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 2rem;
  color: #e4e6e8;
  font-size: 1.05rem;
  line-height: 1.55;
}

.pressure-strip {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-top: auto;
  margin-bottom: 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--pwc-orange);
  background: #181818;
  color: #f0f0f0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.mapping-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem);
  min-width: 0;
}

.mapping-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  gap: 2rem;
}

.mapping-head h3 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.content-state {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.55rem;
  gap: 0.45rem;
  border: 1px solid #d1d5d8;
  color: #545b62;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.content-state::before {
  width: 7px;
  height: 7px;
  background: var(--pwc-orange);
  content: "";
}

.outcome-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 0.45rem;
}

.outcome-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.62rem;
  gap: 0.55rem;
  border: 1px solid #cdd2d6;
  background: var(--pwc-grey-tint-3);
  font-size: 0.72rem;
  font-weight: 700;
}

.outcome-tag span {
  color: var(--pwc-black);
}

.route-label {
  margin-bottom: 0.75rem;
  color: #596068;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-list {
  position: relative;
  display: grid;
  margin-bottom: 2rem;
}

.route-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 76px;
  padding: 0.8rem 0;
  gap: 1rem;
  border-top: 1px solid var(--pwc-grey-tint-1);
}

.route-step:last-child {
  border-bottom: 1px solid var(--pwc-grey-tint-1);
}

.route-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--pwc-orange-tint-2);
  color: var(--pwc-black);
  font-size: 0.72rem;
  font-weight: 700;
}

.route-step strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.route-step small {
  display: block;
  margin-top: 0.25rem;
  color: #5d646c;
  font-size: 0.75rem;
}

.route-type {
  color: #636a71;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mapping-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 1.5rem;
}

.mapping-actions p {
  max-width: 390px;
  margin-bottom: 0;
  color: #565d65;
  font-size: 0.78rem;
  line-height: 1.45;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--pwc-black);
  border-radius: var(--radius-control);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.primary-button {
  background: var(--pwc-orange);
  color: var(--pwc-black);
}

.primary-button:hover {
  background: var(--pwc-black);
  color: var(--pwc-white);
}

.secondary-button {
  background: var(--pwc-white);
  color: var(--pwc-black);
}

.secondary-button:hover {
  background: var(--pwc-grey-tint-3);
}

.conversation-block {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  margin-top: 1.4rem;
  border: 1px solid #c8cdd2;
  background: var(--pwc-white);
}

.conversation-opener {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-orange-tint-3);
}

.conversation-opener blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
}

.prompt-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(2rem, 4vw, 3.5rem);
  gap: 2.5rem;
}

.prompt-panel h3 {
  margin-bottom: 1rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prompt-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prompt-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  color: #3e444a;
  font-size: 0.82rem;
  line-height: 1.45;
}

.prompt-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--pwc-orange);
  content: "";
}

.mode-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.group-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  padding: 4px;
  border: 1px solid #c6cbd0;
  background: var(--pwc-white);
}

.group-button {
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.group-button.is-active {
  background: var(--pwc-black);
  color: var(--pwc-white);
}

.ems-layer {
  max-width: 430px;
  margin: 0;
  color: #565d64;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.ems-layer strong {
  color: var(--pwc-black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 1.4rem;
  border: 1px solid #c8cdd2;
  background: var(--pwc-white);
}

.solution-selector {
  position: relative;
  min-width: 0;
  min-height: 130px;
  padding: 1.15rem 1rem 1.1rem;
  border: 0;
  border-right: 1px solid var(--pwc-grey-tint-1);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.solution-selector:last-child {
  border-right: 0;
}

.solution-selector:hover {
  background: var(--pwc-orange-tint-3);
}

.solution-selector.is-active {
  background: var(--pwc-orange);
}

.solution-selector.is-active::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  font-size: 1.1rem;
  content: "↓";
}

.solution-number {
  display: block;
  margin-bottom: 1.5rem;
  color: #555d65;
  font-size: 0.66rem;
  font-weight: 700;
}

.solution-selector.is-active .solution-number {
  color: var(--pwc-black);
}

.solution-selector strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
}

.solution-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(300px, 0.35fr);
  min-height: 580px;
  border: 1px solid #c8cdd2;
  background: var(--pwc-white);
}

.solution-main {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2.5rem, 5vw, 5.5rem);
  overflow: hidden;
}

.solution-main::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 7px;
  background: var(--pwc-orange);
  content: "";
}

.solution-type {
  margin-bottom: 1.2rem;
  color: #5a6168;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.solution-main h3 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 4.8vw, 5.6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.solution-strap {
  max-width: 730px;
  margin-bottom: 1.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.solution-summary {
  max-width: 760px;
  margin-bottom: 2.4rem;
  color: #41474d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.solution-contribution {
  max-width: 760px;
  margin-top: auto;
  margin-bottom: 2rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--pwc-orange);
  background: var(--pwc-orange-tint-3);
  font-size: 0.88rem;
  line-height: 1.5;
}

.solution-aside {
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--pwc-white);
  background: var(--pwc-black);
}

.solution-aside .eyebrow {
  color: #c6cbd0;
}

.signal-list {
  display: grid;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 64px;
  gap: 0.75rem;
  border-top: 1px solid #343434;
  font-size: 0.82rem;
  font-weight: 500;
}

.signal-list li:last-child {
  border-bottom: 1px solid #343434;
}

.signal-list span {
  color: var(--pwc-orange-light);
  font-size: 0.66rem;
  font-weight: 700;
}

.connected-routes {
  margin-top: 1.2rem;
}

.connected-routes h4 {
  margin: 0 0 0.7rem;
  color: #c5c9cd;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connection-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid #343434;
  background: transparent;
  color: var(--pwc-white);
  text-align: left;
  cursor: pointer;
}

.connection-link:hover {
  color: var(--pwc-orange-light);
}

.connection-link span:last-child {
  color: var(--pwc-orange);
}

.solution-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.solution-meta {
  margin: 0;
  color: #666d74;
  font-size: 0.72rem;
}

.sector-button {
  min-height: 138px;
}

.sector-button .choice-title {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.industry-stage {
  overflow: hidden;
  border: 1px solid #c8cdd2;
  background: var(--pwc-white);
}

.industry-sector-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(320px, 0.54fr);
  align-items: center;
  min-height: 260px;
  padding: clamp(2.25rem, 4vw, 4.25rem);
  gap: clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-white);
}

.industry-sector-header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 6px;
  background: var(--pwc-orange);
  content: "";
}

.industry-sector-identity {
  min-width: 0;
}

.industry-sector-header .stage-index {
  margin-bottom: 1.4rem;
  color: #596169;
}

.industry-sector-identity h3 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 4.6vw, 5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.industry-sector-summary {
  min-width: 0;
  padding-left: clamp(1.5rem, 3vw, 3.25rem);
  border-left: 1px solid var(--pwc-grey-tint-1);
}

.industry-descriptor {
  max-width: 690px;
  margin-bottom: 2rem;
  color: #34383c;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.industry-sector-meta {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.industry-context-note {
  margin-bottom: 0;
  max-width: 660px;
  color: #5b6269;
  font-size: 0.78rem;
  line-height: 1.5;
}

.industry-workspace {
  min-width: 0;
  padding: clamp(2.25rem, 4vw, 4.25rem);
}

.industry-workspace-head {
  margin-bottom: 1.75rem;
}

.industry-workspace-head .eyebrow {
  margin-bottom: 0.75rem;
}

.industry-workspace-head h4 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.industry-challenges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bfc5ca;
  border-left: 1px solid #bfc5ca;
}

.industry-challenge-button {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 174px;
  padding: 1.35rem 1.25rem 1.2rem;
  border: 0;
  border-right: 1px solid #bfc5ca;
  border-bottom: 1px solid #bfc5ca;
  background: var(--pwc-white);
  text-align: left;
  cursor: pointer;
  transition: background 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.industry-challenge-button:hover {
  background: var(--pwc-grey-tint-3);
}

.industry-challenge-button.is-active {
  background: var(--pwc-orange-tint-3);
  box-shadow: inset 0 5px 0 var(--pwc-orange);
}

.industry-challenge-number {
  display: block;
  margin-bottom: 1.2rem;
  color: #596169;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.industry-challenge-button.is-active .industry-challenge-number {
  color: var(--pwc-black);
}

.industry-challenge-title {
  display: block;
  max-width: 360px;
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.industry-challenge-state {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.35rem;
  gap: 0.5rem;
  color: #596169;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.industry-challenge-state::before {
  width: 7px;
  height: 7px;
  border: 1px solid #8e969e;
  content: "";
}

.industry-challenge-button.is-active .industry-challenge-state {
  color: var(--pwc-black);
}

.industry-challenge-button.is-active .industry-challenge-state::before {
  border-color: var(--pwc-orange);
  background: var(--pwc-orange);
}

.industry-detail-panel {
  margin-top: 1.5rem;
  border: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-grey-tint-3);
  animation: industry-detail-reveal 220ms var(--ease-out);
}

.industry-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  padding: clamp(2rem, 4vw, 3.75rem);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.industry-detail-copy h5 {
  max-width: 700px;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.industry-detail-copy p {
  max-width: 720px;
  margin-bottom: 1.4rem;
  color: #4b5259;
  font-size: 0.92rem;
  line-height: 1.6;
}

.industry-opener {
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--pwc-orange);
  background: var(--pwc-white);
  color: var(--pwc-black) !important;
  font-weight: 500;
}

.industry-detail-copy .prompt-list {
  margin-bottom: 0;
}

.industry-map {
  min-width: 0;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--pwc-grey-tint-1);
}

.industry-map .route-step {
  grid-template-columns: 42px minmax(0, 1fr);
}

.industry-map .route-type {
  display: none;
}

.industry-actions {
  display: flex;
  justify-content: flex-end;
  padding: 1.25rem clamp(2rem, 4vw, 3.75rem);
  border-top: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-white);
}

@keyframes industry-detail-reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.asset-preview {
  margin-top: 1.4rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid #c8cdd2;
  background: var(--pwc-white);
}

.asset-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.7rem;
  gap: 2rem;
}

.asset-preview-head h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
}

.asset-preview-head p {
  max-width: 420px;
  margin-bottom: 0;
  color: #5b6269;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--pwc-grey-tint-1);
  border-bottom: 1px solid var(--pwc-grey-tint-1);
}

.asset-card {
  display: flex;
  flex-direction: column;
  min-height: 172px;
  padding: 1.35rem;
  border-right: 1px solid var(--pwc-grey-tint-1);
  background: var(--pwc-white);
  color: var(--pwc-black);
  text-decoration: none;
  transition: background 160ms var(--ease-out);
}

.asset-card:last-child {
  border-right: 0;
}

.asset-card:hover {
  background: var(--pwc-orange-tint-3);
}

.asset-type {
  display: block;
  margin-bottom: 2rem;
  color: #5b6269;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.asset-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  line-height: 1.25;
}

.asset-card p {
  margin-bottom: 0;
  color: #5a6168;
  font-size: 0.74rem;
  line-height: 1.45;
}

.resource-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--pwc-black);
  font-size: 0.72rem;
  font-weight: 700;
}

.resource-link span {
  color: var(--pwc-orange);
  font-size: 1rem;
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.6rem var(--page-gutter);
  gap: 2rem;
  border-top: 1px solid var(--pwc-grey-tint-1);
}

.app-footer p {
  margin-bottom: 0;
  color: #5b6269;
  font-size: 0.7rem;
}

.app-dialog {
  width: min(920px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--pwc-black);
  border-radius: var(--radius-panel);
  background: var(--pwc-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.app-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.dialog-frame {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.4rem;
  gap: 2rem;
}

.dialog-header h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.close-button {
  min-height: 42px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--pwc-black);
  background: var(--pwc-white);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.close-button:hover {
  background: var(--pwc-black);
  color: var(--pwc-white);
}

.search-field-wrap label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.search-field-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 0.8rem 1rem;
  border: 1px solid #aeb5bc;
  border-radius: var(--radius-control);
  background: var(--pwc-grey-tint-3);
  color: var(--pwc-black);
  font-size: 1rem;
}

.search-results {
  display: grid;
  margin-top: 1.4rem;
  border-top: 1px solid var(--pwc-grey-tint-1);
}

.search-result {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 0.9rem 0.4rem;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid var(--pwc-grey-tint-1);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-result:hover {
  background: var(--pwc-orange-tint-3);
}

.search-result-type {
  color: var(--pwc-black);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}

.search-result small {
  display: block;
  color: #5d646b;
  font-size: 0.72rem;
  line-height: 1.4;
}

.search-result-arrow {
  color: var(--pwc-orange);
  font-size: 1.2rem;
}

.empty-state {
  padding: 2.5rem 0;
  color: #596067;
}

.empty-state strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--pwc-black);
}

.briefing-frame {
  padding-bottom: 0;
}

.briefing-content {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--pwc-black);
}

.brief-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 1.35rem 0;
  gap: 1.5rem;
  border-bottom: 1px solid var(--pwc-grey-tint-1);
}

.brief-section h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-section p,
.brief-section ul {
  margin-bottom: 0;
  color: #353b40;
  font-size: 0.86rem;
  line-height: 1.55;
}

.brief-section ul {
  padding-left: 1.1rem;
}

.brief-section li + li {
  margin-top: 0.5rem;
}

.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.5rem calc(clamp(1.5rem, 4vw, 3.5rem) * -1) 0;
  padding: 1.4rem clamp(1.5rem, 4vw, 3.5rem);
  gap: 1.5rem;
  background: var(--pwc-grey-tint-3);
}

.dialog-footer p {
  margin-bottom: 0;
  color: #5c636a;
  font-size: 0.72rem;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: min(360px, calc(100vw - 3rem));
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--pwc-orange);
  background: var(--pwc-black);
  color: var(--pwc-white);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript-message {
  position: fixed;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 2px solid var(--pwc-orange);
  background: var(--pwc-black);
  color: var(--pwc-white);
}

body[data-view="solution"] .view-hero::before {
  width: 130px;
}

body[data-view="industry"] .view-hero::before {
  width: 188px;
}

@media (max-width: 1180px) {
  .app-header {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  }

  .preview-label {
    display: none;
  }

  .search-trigger span {
    display: none;
  }

  .search-trigger {
    gap: 0;
  }

  .challenge-rail,
  .sector-track {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .choice-card,
  .sector-button {
    scroll-snap-align: start;
  }

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

  .solution-selector:nth-child(3) {
    border-right: 0;
  }

  .solution-selector:nth-child(-n + 3) {
    border-bottom: 1px solid var(--pwc-grey-tint-1);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 116px;
  }

  .app-header {
    grid-template-columns: 1fr 1fr;
    min-height: var(--header-height);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    row-gap: 0.4rem;
  }

  .brand-lockup {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .lens-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .lens-switcher {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .view-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 4.5rem;
    gap: 3rem;
  }

  .hero-signal {
    max-width: 520px;
  }

  .section-intro,
  .detail-stage,
  .conversation-block,
  .solution-stage {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 1.4rem;
  }

  .narrative-panel {
    min-height: 520px;
  }

  .conversation-opener {
    border-right: 0;
    border-bottom: 1px solid var(--pwc-grey-tint-1);
  }

  .solution-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .solution-aside .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -1rem;
  }

  .industry-sector-header {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2rem;
  }

  .industry-sector-summary {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid var(--pwc-grey-tint-1);
    border-left: 0;
  }

  .industry-detail {
    grid-template-columns: 1fr;
  }

  .industry-map {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid var(--pwc-grey-tint-1);
    border-left: 0;
  }

}

@media (max-width: 720px) {
  :root {
    --page-gutter: 1.25rem;
  }

  .brand-lockup img {
    width: 48px;
  }

  .brand-divider {
    margin: 0 0.65rem;
  }

  .product-name {
    display: none;
  }

  .search-trigger {
    min-width: 74px;
    justify-content: center;
    padding: 0.5rem 0.7rem;
  }

  .search-trigger span {
    display: inline;
  }

  .search-trigger kbd {
    display: none;
  }

  .view-hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.8rem);
  }

  .hero-signal {
    grid-template-columns: 76px 1fr;
    gap: 1rem;
  }

  .hero-count {
    font-size: 3.5rem;
  }

  .momentum-mark {
    width: 130px;
  }

  .section-intro {
    margin-bottom: 1.8rem;
  }

  .detail-stage,
  .solution-stage,
  .industry-stage {
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
    border-right: 0;
    border-left: 0;
  }

  .narrative-panel {
    min-height: 480px;
  }

  .mapping-head,
  .mapping-actions,
  .mode-tools,
  .industry-workspace-head,
  .asset-preview-head,
  .dialog-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .mapping-head,
  .industry-workspace-head {
    display: grid;
    gap: 1rem;
  }

  .content-state {
    justify-self: start;
  }

  .mapping-actions,
  .solution-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .conversation-block,
  .asset-preview {
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
    border-right: 0;
    border-left: 0;
  }

  .prompt-panel,
  .solution-aside,
  .industry-detail,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .prompt-panel {
    gap: 1.5rem;
  }

  .group-toggle {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .ems-layer,
  .asset-preview-head p {
    max-width: none;
    text-align: left;
  }

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

  .solution-selector,
  .solution-selector:nth-child(3) {
    border-right: 1px solid var(--pwc-grey-tint-1);
    border-bottom: 1px solid var(--pwc-grey-tint-1);
  }

  .solution-selector:nth-child(even) {
    border-right: 0;
  }

  .solution-selector:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .solution-main h3 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .industry-challenges {
    grid-template-columns: 1fr;
  }

  .industry-challenge-button {
    min-height: 128px;
    border-right: 1px solid #bfc5ca;
    border-bottom: 1px solid #bcc3c9;
  }

  .industry-challenge-button:last-child {
    border-bottom: 1px solid #bfc5ca;
  }

  .industry-challenge-number {
    margin-bottom: 0.7rem;
  }

  .asset-card {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--pwc-grey-tint-1);
  }

  .asset-card:last-child {
    border-bottom: 0;
  }

  .asset-type {
    margin-bottom: 1.2rem;
  }

  .app-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .search-result {
    grid-template-columns: 84px minmax(0, 1fr) auto;
  }

  .brief-section {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .dialog-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .lens-switcher {
    min-width: 0;
  }

  .lens-tab {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .view-hero {
    padding-top: 3.75rem;
  }

  .challenge-rail,
  .sector-track {
    grid-template-columns: repeat(5, minmax(168px, 82vw));
  }

  .route-step {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .route-type {
    display: none;
  }

  .portfolio-grid {
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
    border-right: 0;
    border-left: 0;
  }

  .solution-selector {
    min-height: 144px;
  }

  .search-result {
    grid-template-columns: 1fr auto;
  }

  .search-result-type {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .app-header,
  .view-hero,
  .explore-shell,
  .app-footer,
  .dialog-footer,
  .close-button {
    display: none !important;
  }

  .app-dialog[open] {
    position: static;
    display: block;
    width: 100%;
    max-height: none;
    border: 0;
    box-shadow: none;
  }

  .app-dialog[open]::backdrop {
    display: none;
  }
}
