:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-tint: #e6f6f5;
  --text: #18353c;
  --muted: #53696f;
  --line: rgba(24, 53, 60, 0.1);
  --brand: #2f9aa3;
  --brand-dark: #1a5961;
  --brand-soft: #8fd5db;
  --accent: #c8df95;
  --shadow: 0 24px 70px rgba(25, 60, 67, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6.5rem 0;
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(24, 53, 60, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.5rem;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1 1 auto;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(124px, 16vw, 170px);
  border-radius: 0;
  background: transparent;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(24, 53, 60, 0.12);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(24, 53, 60, 0.08);
  color: var(--brand-dark);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease,
    transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(47, 154, 163, 0.35);
  background: rgba(47, 154, 163, 0.06);
  box-shadow: 0 16px 28px rgba(24, 53, 60, 0.1);
  transform: translateY(-1px);
}

.menu-toggle-label {
  line-height: 1;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.24rem;
  width: 1rem;
}

.menu-toggle-icon span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(24, 53, 60, 0.1);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(24, 53, 60, 0.05);
  white-space: nowrap;
}

.language-toggle a {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.language-toggle a:hover,
.language-toggle a:focus-visible,
.language-toggle a.is-active {
  color: var(--brand-dark);
}

.language-toggle-divider {
  color: rgba(24, 53, 60, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-dark);
  background: rgba(47, 154, 163, 0.09);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 12px 24px rgba(47, 154, 163, 0.2);
}

.site-nav .is-active {
  color: var(--brand-dark);
  background: rgba(47, 154, 163, 0.12);
}

.hero-section {
  padding-top: 4.5rem;
}

.hero-grid,
.split-section,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: start;
  width: fit-content;
  padding: 0.46rem 0.9rem;
  border: 1.5px solid rgba(47, 154, 163, 0.75);
  border-radius: 8px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #ffffff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  max-width: 10ch;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

h1,
h2,
h3,
.section-subtitle,
.impact-column h3,
.work-card h3,
.approach-point h3 {
  color: var(--brand-dark);
}

p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.18rem;
  line-height: 1.72;
  color: rgba(31, 42, 47, 0.9);
}

.hero-note {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 16px 30px rgba(47, 154, 163, 0.26);
}

.button-secondary {
  color: var(--brand-dark);
  border: 1px solid rgba(47, 154, 163, 0.25);
  background: rgba(255, 255, 255, 0.78);
}

.button-disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  position: relative;
  width: min(100%, 29rem);
  min-height: 38rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-card::before {
  content: none;
}

.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  margin-bottom: 2.4rem;
}

.section-subtitle {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.2;
}

.section-heading.left-aligned {
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.4rem;
}

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

.info-card,
.path-card,
.impact-card,
.mini-card,
.step-card,
.contact-card,
.system-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 16px 40px rgba(24, 53, 60, 0.06);
}

.info-card,
.path-card,
.impact-card,
.step-card,
.contact-card {
  padding: 1.7rem;
}

.card-label,
.panel-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card h3,
.path-card h3,
.impact-card h3,
.mini-card h3,
.step-card h3 {
  margin-bottom: 0.9rem;
}

.info-card ul,
.impact-card ul {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(230, 246, 245, 0.92));
}

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

.mini-card {
  padding: 1.25rem;
}

.system-panel {
  padding: 2rem;
  min-height: 100%;
  overflow: hidden;
}

.system-panel::before {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 213, 219, 0.38), transparent 68%);
}

.system-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 24rem;
  margin-top: 1.6rem;
}

.core-node {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  width: 14.5rem;
  height: 14.5rem;
  padding: 1.6rem;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #2fa7b1, #15393f 72%);
  box-shadow: 0 25px 50px rgba(21, 57, 63, 0.22);
}

.core-title {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.core-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.core-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 154, 163, 0.14);
  box-shadow: 0 10px 24px rgba(24, 53, 60, 0.08);
}

.core-pill:nth-of-type(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.core-pill:nth-of-type(3) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.core-pill:nth-of-type(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.core-pill:nth-of-type(5) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.process-section {
  background: transparent;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.6rem;
  align-items: center;
}

.diagram-shell {
  padding: 1.2rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(228, 246, 245, 0.86));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: var(--shadow);
}

.diagram-shell svg {
  width: 100%;
  height: auto;
}

.svg-kicker,
.svg-node-title,
.svg-title,
.svg-caption,
.svg-node-text {
  font-family: "Sora", sans-serif;
}

.svg-kicker {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  fill: rgba(255, 255, 255, 0.72);
}

.svg-title {
  font-size: 29px;
  font-weight: 700;
  fill: #ffffff;
  letter-spacing: 0.06em;
}

.svg-caption {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  fill: rgba(255, 255, 255, 0.78);
}

.svg-node-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.svg-node-text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.dark {
  fill: var(--brand-dark);
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(47, 154, 163, 0.1);
  color: var(--brand);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.about-frame {
  position: relative;
  padding: 0;
  border-radius: 2rem;
  width: min(100%, 30rem);
  min-height: 31rem;
  margin-left: auto;
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-frame::after {
  content: "";
  position: absolute;
  inset: auto auto 1.5rem 1.5rem;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  border: 1px solid rgba(47, 154, 163, 0.12);
}

.about-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-portrait {
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: grid;
  gap: 1.2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.about-highlights div {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 53, 60, 0.08);
}

.about-highlights strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.contact-section {
  padding-bottom: 7.5rem;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-card img {
  width: 12rem;
  mix-blend-mode: multiply;
}

.contact-card ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1rem;
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 700;
}

.info-card {
  border-radius: 0;
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.14);
  box-shadow: none;
}

.accent-card {
  background: #ffffff;
}

.approach-section {
  background: transparent;
}

.approach-heading {
  max-width: 58rem;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(20rem, 32rem) minmax(14rem, 1fr);
  gap: 1.8rem;
  align-items: center;
  margin-top: 3rem;
}

.approach-column {
  display: grid;
  gap: 3.2rem;
}

.approach-point {
  text-align: center;
}

.approach-point h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.approach-point p {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.approach-wheel {
  padding: 0.25rem;
}

.approach-wheel svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.approach-diagram-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}

.localized-diagram-frame {
  overflow: hidden;
}

.localized-diagram-crop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.16);
  transform-origin: center;
}

.work-heading {
  max-width: 62rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.work-card {
  display: grid;
  grid-template-rows: auto minmax(7.4rem, auto) minmax(8.2rem, auto) 1fr;
  align-content: start;
  min-height: 41rem;
  padding: 1.5rem 1.35rem 2rem;
  border-radius: 10px;
  border: 2px solid rgba(47, 154, 163, 0.25);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.92);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -2px;
  width: 10px;
  background: linear-gradient(180deg, #2f9aa3, #49bad4);
  border-radius: 10px 0 0 10px;
}

.work-card h3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  text-align: center;
}

.work-card p {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  align-self: start;
}

.work-card p + p {
  margin-top: 2rem;
}

.download-row {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.entry-page .section {
  padding: 5.8rem 0;
}

.subpage-hero {
  padding-top: 4.4rem;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.subpage-copy h1 {
  max-width: 12ch;
}

.subpage-diagram {
  display: flex;
  justify-content: flex-end;
}

.subpage-diagram-card {
  width: min(100%, 32rem);
  padding: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(143, 213, 219, 0.28), transparent 60%),
    linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.subpage-diagram-card .approach-diagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.entry-diagram-title,
.entry-diagram-copy {
  fill: var(--brand-dark);
  font-family: "Sora", sans-serif;
}

.entry-diagram-title {
  font-size: 1.05rem;
}

.entry-diagram-copy {
  font-size: 0.5rem;
}

.service-overview-grid,
.phase-grid,
.entry-columns,
.deliverables-grid-entry,
.service-bullet-grid {
  display: grid;
  gap: 1.4rem;
}

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

.service-overview-card,
.phase-card,
.entry-column,
.deliverable-item,
.entry-focus-panel,
.continuation-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 18px 36px rgba(24, 53, 60, 0.08);
}

.service-overview-card::after,
.phase-card::after,
.entry-column::after,
.deliverable-item::after,
.entry-focus-panel::after,
.continuation-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
}

.service-overview-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.6rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-overview-card:hover,
.service-overview-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(47, 154, 163, 0.36);
  box-shadow: 0 22px 42px rgba(24, 53, 60, 0.12);
}

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

.entry-focus-panel,
.continuation-panel {
  margin-top: 1.5rem;
  padding: 1.6rem 1.8rem;
}

.entry-focus-panel p,
.continuation-panel p {
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.phase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.phase-card,
.entry-column,
.deliverable-item {
  padding: 1.5rem;
}

.challenge-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 245, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(188, 111, 76, 0.18);
  box-shadow: 0 18px 36px rgba(24, 53, 60, 0.08);
}

.challenge-card::after {
  background: linear-gradient(180deg, #d47a57, #b45638);
}

.challenge-card .card-label {
  color: #a04c31;
}

.benefit-card {
  background:
    linear-gradient(180deg, rgba(241, 251, 249, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(47, 154, 163, 0.22);
  box-shadow: 0 18px 36px rgba(24, 53, 60, 0.08);
}

.benefit-card::after {
  background: linear-gradient(180deg, #d47a57, #b45638);
}

.benefit-card .card-label {
  color: var(--brand-dark);
}

.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(47, 154, 163, 0.1);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.phase-card h3,
.entry-column h3,
.deliverable-item h3,
.service-overview-card h3 {
  margin-bottom: 0.8rem;
}

.phase-card p + ul,
.entry-column h3 + ul,
.deliverable-item p + ul {
  margin-top: 0.8rem;
}

.entry-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.entry-columns.single-column {
  grid-template-columns: 1fr;
}

.entry-note,
.deliverable-use {
  margin-top: 0.9rem;
  color: var(--brand-dark);
  font-size: 1rem;
}

.deliverables-grid-entry {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.deliverable-item-wide {
  grid-column: 1 / -1;
}

.entry-cta-panel {
  margin-top: 2rem;
}

.diagnostic-heading {
  max-width: 66rem;
}

.diagnostic-shell {
  display: grid;
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.diagnostic-stage,
.diagnostic-summary-card,
.diagnostic-highlight,
.diagnostic-result-card,
.diagnostic-recommendation,
.diagnostic-cta {
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 36px rgba(24, 53, 60, 0.08);
}

.diagnostic-stage {
  padding: 2rem;
}

.diagnostic-stage-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.diagnostic-stage-header h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.diagnostic-kicker {
  margin-bottom: 0.5rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-progress-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.diagnostic-progress-meta span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 154, 163, 0.08);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.diagnostic-question-list {
  display: grid;
  gap: 1rem;
}

.diagnostic-question {
  margin: 0;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(24, 53, 60, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 252, 0.92));
}

.diagnostic-question legend {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
}

.diagnostic-question-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.diagnostic-question-number,
.diagnostic-dimension-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.diagnostic-question-number {
  background: rgba(24, 53, 60, 0.06);
  color: var(--brand-dark);
}

.diagnostic-dimension-tag {
  background: rgba(47, 154, 163, 0.08);
  color: var(--brand);
}

.diagnostic-question-text {
  display: block;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.diagnostic-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.diagnostic-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.diagnostic-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.diagnostic-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(24, 53, 60, 0.12);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.diagnostic-option:hover span,
.diagnostic-option:focus-within span {
  border-color: rgba(47, 154, 163, 0.34);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.diagnostic-option input:checked + span {
  border-color: rgba(47, 154, 163, 0.54);
  background: linear-gradient(180deg, rgba(47, 154, 163, 0.12), rgba(255, 255, 255, 0.96));
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(47, 154, 163, 0.14);
}

.diagnostic-actions .button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.diagnostic-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
}

.diagnostic-progress-text,
.diagnostic-results-intro {
  max-width: 44rem;
  font-size: 1rem;
}

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

.diagnostic-field {
  display: grid;
  gap: 0.45rem;
}

.diagnostic-field span {
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.diagnostic-field input {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(24, 53, 60, 0.12);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.diagnostic-field input:focus {
  outline: none;
  border-color: rgba(47, 154, 163, 0.52);
  box-shadow: 0 0 0 4px rgba(47, 154, 163, 0.12);
}

.diagnostic-summary-card,
.diagnostic-recommendation,
.diagnostic-cta {
  padding: 1.5rem 1.6rem;
}

.diagnostic-key-points,
.diagnostic-results-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

.diagnostic-highlight,
.diagnostic-result-card {
  padding: 1.35rem 1.5rem;
}

.diagnostic-highlight h4,
.diagnostic-result-card h4 {
  margin: 0.45rem 0 0;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

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

.diagnostic-result-card {
  position: relative;
  overflow: hidden;
}

.diagnostic-result-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 8px;
}

.diagnostic-result-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.diagnostic-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.4rem;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.diagnostic-score small {
  color: var(--muted);
  font-size: 0.92rem;
}

.diagnostic-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.diagnostic-scorebar {
  height: 0.6rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(24, 53, 60, 0.08);
  overflow: hidden;
}

.diagnostic-scorebar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.diagnostic-result-card.status-high-pressure::before,
.diagnostic-result-card.status-high-pressure .diagnostic-scorebar span {
  background: linear-gradient(180deg, #d47a57, #b45638);
}

.diagnostic-result-card.status-high-pressure .diagnostic-status-pill {
  background: rgba(212, 122, 87, 0.12);
  color: #a04c31;
}

.diagnostic-result-card.status-emerging-strain::before,
.diagnostic-result-card.status-emerging-strain .diagnostic-scorebar span {
  background: linear-gradient(180deg, #e0a761, #c9873c);
}

.diagnostic-result-card.status-emerging-strain .diagnostic-status-pill {
  background: rgba(224, 167, 97, 0.14);
  color: #9b611d;
}

.diagnostic-result-card.status-moderate-stability::before,
.diagnostic-result-card.status-moderate-stability .diagnostic-scorebar span {
  background: linear-gradient(180deg, #5ab7be, #2f9aa3);
}

.diagnostic-result-card.status-moderate-stability .diagnostic-status-pill {
  background: rgba(47, 154, 163, 0.12);
  color: var(--brand-dark);
}

.diagnostic-result-card.status-stronger-capacity::before,
.diagnostic-result-card.status-stronger-capacity .diagnostic-scorebar span {
  background: linear-gradient(180deg, #2a7f88, #174d56);
}

.diagnostic-result-card.status-stronger-capacity .diagnostic-status-pill {
  background: rgba(26, 89, 97, 0.12);
  color: var(--brand-dark);
}

.diagnostic-recommendation p,
.diagnostic-cta p {
  color: var(--brand-dark);
  font-size: 1.08rem;
}

.process-heading {
  max-width: 66rem;
}

.process-heading h2 {
  max-width: 18ch;
}

.process-graphic {
  margin-top: 2rem;
}

.process-graphic svg {
  width: 100%;
  height: auto;
}

.process-diagram-image {
  width: 100%;
  height: auto;
  display: block;
}

.process-grid-localized {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-node {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.process-node-circle {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(100%, 17rem);
  aspect-ratio: 1;
  padding: 1.8rem 1.4rem;
  border-radius: 50%;
  border: 4px solid var(--brand-dark);
  box-shadow: inset 0 0 34px rgba(143, 213, 219, 0.2);
}

.process-node-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.process-node-copy {
  max-width: 16rem;
  font-size: 0.98rem;
}

.process-node-title,
.process-node-copy {
  fill: var(--text);
  text-anchor: middle;
}

.process-node-title {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.process-node-copy {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.impact-section {
  background: transparent;
}

.impact-heading {
  max-width: 52rem;
}

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

.impact-column {
  padding-left: 2rem;
  border-left: 5px solid #3aa9c3;
}

.impact-column h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.2vw, 2.5rem);
}

.impact-column ul {
  display: grid;
  gap: 1rem;
  padding-left: 1.2rem;
}

.impact-column li {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text);
}

.impact-note {
  margin-top: 4rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--text);
}

.diagnostic-home-cta-section {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.diagnostic-home-cta {
  gap: 1.15rem;
}

.diagnostic-home-cta h2 {
  max-width: 32rem;
}

.diagnostic-home-cta p {
  max-width: 42rem;
}

.insights-preview-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.insights-preview-heading {
  max-width: 58rem;
}

.insights-preview-heading h2 {
  max-width: 20ch;
}

.insights-preview-actions {
  margin-top: 2rem;
}

.insights-page .section {
  padding: 5.8rem 0;
}

.insights-hero {
  padding-top: 4.4rem;
}

.insights-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.8fr);
  gap: 3.5rem;
  align-items: center;
}

.insights-hero-copy h1 {
  max-width: 9ch;
}

.insights-support-copy {
  max-width: 40rem;
  margin-top: 1.15rem;
  font-size: 1.05rem;
  line-height: 1.78;
}

.insights-author-line {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.insights-hero-card {
  position: relative;
  width: min(100%, 24rem);
  min-height: 31rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.insights-portrait {
  object-fit: cover;
  object-position: 50% 38%;
  filter: brightness(1.02) saturate(0.97);
  -webkit-mask-image: radial-gradient(ellipse 72% 82% at 46% 44%, #000 62%, transparent 92%);
  mask-image: radial-gradient(ellipse 72% 82% at 46% 44%, #000 62%, transparent 92%);
}

.insights-section-heading {
  max-width: 52rem;
}

.insight-card-grid {
  display: grid;
  gap: 1.35rem;
}

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

.insight-content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.insight-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.94));
  border: 1px solid rgba(24, 53, 60, 0.1);
  box-shadow: 0 16px 36px rgba(24, 53, 60, 0.06);
}

.insight-card[hidden],
.insight-card.is-hidden {
  display: none !important;
}

.insight-card.is-clickable {
  cursor: pointer;
}

.insight-card-featured {
  padding-top: 1.85rem;
}

.insight-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 154, 163, 0.08);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.insight-card p {
  font-size: 1rem;
  line-height: 1.72;
}

.insight-cta {
  margin-top: auto;
  padding-top: 0.65rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.insight-cta-link {
  display: inline-flex;
  width: fit-content;
}

.insights-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.insights-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(24, 53, 60, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.insights-filter-button:hover,
.insights-filter-button:focus-visible {
  color: var(--brand-dark);
  border-color: rgba(47, 154, 163, 0.34);
  transform: translateY(-1px);
}

.insights-filter-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(47, 154, 163, 0.2);
}

.insight-entry-page .section {
  padding: 3.2rem 0;
}

.insight-entry-intro {
  padding-top: 4rem;
}

.insight-entry-shell {
  width: min(920px, calc(100vw - 2rem));
  margin: 0 auto;
}

.insight-entry-page h1 {
  max-width: 12ch;
}

.insight-entry-subtitle {
  max-width: 46rem;
  margin-top: 1.2rem;
  font-size: 1.16rem;
  line-height: 1.74;
  color: rgba(31, 42, 47, 0.9);
}

.insight-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.insight-entry-meta span + span {
  position: relative;
}

.insight-entry-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.78rem;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(26, 89, 97, 0.35);
  transform: translateY(-50%);
}

.insight-entry-section {
  padding-top: 2.2rem;
}

.insight-diagnostic-intro-list {
  display: grid;
  gap: 0.55rem;
  max-width: 34rem;
  margin: 1.15rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.68;
}

.insight-article {
  display: grid;
  gap: 0;
}

.insight-article-section {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(24, 53, 60, 0.08);
}

.insight-closing-block,
.insight-related-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.94));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 16px 34px rgba(24, 53, 60, 0.05);
}

.insight-article-section h2,
.insight-closing-block h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.insight-prose {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  font-size: 1.06rem;
  line-height: 1.82;
}

.insight-prose p,
.insight-section-list li,
.insight-related-card span,
.insight-related-card {
  font-size: 1.02rem;
}

.insight-pullquote {
  margin: 0;
  padding: 2.2rem 0 0.9rem 1.35rem;
  border-left: 2px solid rgba(47, 154, 163, 0.28);
}

.insight-pullquote p {
  margin: 0;
  max-width: 40rem;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.45;
}

.insight-section-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.72;
}

.insight-section-list-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
}

.insight-closing-block {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.4rem;
  padding: 1.7rem 1.8rem;
  background: linear-gradient(180deg, rgba(240, 248, 248, 0.98), rgba(255, 255, 255, 0.98));
}

.insight-closing-lines {
  display: grid;
  gap: 0.35rem;
}

.insight-closing-lines p {
  margin: 0;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.45;
}

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

.insight-related-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem 1.3rem;
}

.insight-related-card strong {
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.insight-related-card:hover,
.insight-related-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 154, 163, 0.28);
  box-shadow: 0 20px 36px rgba(24, 53, 60, 0.08);
}

.insight-diagnostic-page .diagnostic-shell {
  margin-top: 0;
}

.insight-diagnostic-page .diagnostic-options-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.insight-diagnostic-page .diagnostic-option span {
  flex-direction: column;
  gap: 0.3rem;
  min-height: 4.9rem;
  padding: 0.75rem 0.55rem;
  text-align: center;
}

.insight-diagnostic-page .diagnostic-option span small {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
}

.protection-result-lead,
.protection-result-card,
.protection-dimension-card {
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(24, 53, 60, 0.05);
}

.protection-result-lead {
  padding: 1.45rem 1.55rem;
}

.protection-result-lead h4,
.protection-dimension-card h4 {
  margin: 0.45rem 0 0.55rem;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.2;
}

.protection-result-lead p,
.protection-result-card p,
.protection-dimension-card p {
  font-size: 1rem;
}

.protection-result-grid,
.protection-dimension-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

.protection-result-card,
.protection-dimension-card {
  padding: 1.35rem 1.45rem;
}

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

.protection-dimension-card p {
  margin: 0;
  color: var(--muted);
}

.button-secondary-subtle {
  background: rgba(255, 255, 255, 0.82);
}

.explainer-entry-page .section {
  padding: 3.4rem 0;
}

.explainer-entry-intro {
  padding-top: 4rem;
}

.explainer-entry-shell {
  width: min(920px, calc(100vw - 2rem));
  margin: 0 auto;
}

.explainer-backlink {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.explainer-backlink:hover,
.explainer-backlink:focus-visible {
  color: var(--brand-dark);
}

.explainer-entry-page h1 {
  max-width: 12ch;
}

.explainer-entry-subtitle {
  max-width: 44rem;
  margin-top: 1.25rem;
  font-size: 1.18rem;
  line-height: 1.72;
  color: rgba(31, 42, 47, 0.9);
}

.explainer-section-card,
.explainer-signal-card,
.explainer-logic-tab,
.explainer-logic-panel,
.explainer-logic-detail,
.explainer-cta-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.94));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 16px 34px rgba(24, 53, 60, 0.05);
}

.explainer-section-card {
  margin-top: 2rem;
  padding: 1.55rem 1.65rem;
}

.explainer-section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

.explainer-section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.explainer-body {
  display: grid;
  gap: 1rem;
}

.explainer-intro-body {
  max-width: 44rem;
  margin-top: 1.5rem;
}

.explainer-body p,
.explainer-section-heading p,
.explainer-bridge-grid p,
.explainer-logic-detail p,
.explainer-logic-detail li,
.explainer-compare-cell,
.explainer-cta-card {
  font-size: 1rem;
}

.explainer-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.explainer-signal-card {
  padding: 1.15rem 1.2rem;
  min-height: 7.4rem;
  display: flex;
  align-items: flex-start;
}

.explainer-signal-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.explainer-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.9fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 1.3rem;
  background: rgba(24, 53, 60, 0.08);
  border: 1px solid rgba(24, 53, 60, 0.08);
}

.explainer-compare-head,
.explainer-compare-cell {
  background: #ffffff;
  padding: 1rem 1.1rem;
}

.explainer-compare-head {
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.explainer-compare-cell {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  line-height: 1.55;
}

.explainer-bridge-card {
  margin-top: 0;
}

.explainer-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.explainer-logic {
  display: grid;
  gap: 1rem;
}

.explainer-logic-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.explainer-logic-tab {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  text-align: left;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.explainer-logic-tab:hover,
.explainer-logic-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 154, 163, 0.28);
}

.explainer-logic-tab.is-active {
  background: linear-gradient(180deg, rgba(240, 248, 248, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(47, 154, 163, 0.28);
  box-shadow: 0 20px 36px rgba(24, 53, 60, 0.07);
}

.explainer-logic-tab-title {
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.explainer-logic-tab-copy {
  font-size: 0.92rem;
  line-height: 1.5;
}

.explainer-logic-panel {
  padding: 1.3rem;
}

.explainer-logic-panel-compact {
  display: grid;
  gap: 0.8rem;
}

.explainer-logic-active-label {
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explainer-logic-panel-compact .explainer-logic-active-label {
  margin-bottom: 0;
}

.explainer-logic-panel-text,
.explainer-logic-panel-note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.explainer-logic-panel-note {
  color: var(--muted);
}

.explainer-logic-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.explainer-logic-detail {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem;
}

.explainer-logic-detail ul,
.explainer-bullet-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1rem;
}

.explainer-logic-detail-wide {
  grid-column: 1 / -1;
}

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

.explainer-cta-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem 1.3rem;
}

.explainer-cta-card strong {
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.explainer-follow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.explainer-follow-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.94));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 16px 34px rgba(24, 53, 60, 0.05);
}

.explainer-follow-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

.explainer-follow-card p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.explainer-page .section {
  padding: 5.8rem 0;
}

.explainer-hero {
  padding-top: 4.4rem;
}

.explainer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.explainer-hero-copy h1 {
  max-width: 11ch;
}

.explainer-hero-support {
  max-width: 42rem;
  margin-top: 1.15rem;
  line-height: 1.78;
}

.explainer-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.explainer-graphic-shell {
  width: min(100%, 35rem);
  padding: 1rem;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(143, 213, 219, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 251, 0.94));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 24px 54px rgba(24, 53, 60, 0.08);
}

.explainer-pressure-graphic {
  display: block;
  width: 100%;
  height: auto;
}

.explainer-graphic-label,
.explainer-graphic-note {
  fill: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.explainer-heading {
  max-width: 54rem;
}

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

.symptom-card,
.pillar-detail-card,
.capacity-contrast-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.94));
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 18px 36px rgba(24, 53, 60, 0.06);
}

.symptom-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 12.5rem;
  padding: 1.5rem;
}

.symptom-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 2.4rem;
  min-height: 2.1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 154, 163, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.symptom-card h3 {
  font-size: 1.38rem;
  line-height: 1.2;
}

.misread-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.85fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 1.8rem;
  background: rgba(24, 53, 60, 0.08);
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 22px 44px rgba(24, 53, 60, 0.06);
}

.misread-head,
.misread-cell {
  padding: 1.25rem 1.35rem;
  background: #ffffff;
}

.misread-head {
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.misread-head-middle,
.misread-cell-middle {
  background: linear-gradient(180deg, rgba(240, 248, 248, 0.96), rgba(232, 244, 244, 0.98));
}

.misread-cell {
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  line-height: 1.65;
}

.misread-cell strong {
  color: var(--brand-dark);
}

.pillar-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.4rem;
  align-items: start;
}

.pillar-nav {
  display: grid;
  gap: 0.9rem;
}

.pillar-tab,
.pillar-panel {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.08);
  box-shadow: 0 18px 36px rgba(24, 53, 60, 0.06);
}

.pillar-tab {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  padding: 1.3rem 1.35rem;
  text-align: left;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.pillar-tab:hover,
.pillar-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 154, 163, 0.28);
}

.pillar-tab.is-active {
  border-color: rgba(47, 154, 163, 0.3);
  background: linear-gradient(180deg, rgba(240, 248, 248, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 22px 40px rgba(24, 53, 60, 0.08);
}

.pillar-tab-title {
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.pillar-tab-copy {
  font-size: 0.96rem;
  line-height: 1.6;
}

.pillar-panel {
  padding: 1.5rem;
}

.pillar-visual-shell {
  padding: 1rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 25% 20%, rgba(143, 213, 219, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(248, 252, 252, 0.96), rgba(238, 248, 248, 0.98));
}

.pillar-visual {
  display: block;
  width: 100%;
  height: auto;
}

.pillar-node rect {
  fill: rgba(255, 255, 255, 0.86);
  stroke: rgba(24, 53, 60, 0.12);
  stroke-width: 1.5;
  transition: fill 220ms ease, stroke 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.pillar-node text,
.pillar-core-title,
.pillar-core-copy {
  fill: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-anchor: middle;
}

.pillar-node text {
  font-size: 14px;
}

.pillar-core {
  fill: url(#pillarCore);
  stroke: rgba(47, 154, 163, 0.3);
  stroke-width: 2;
  transition: transform 220ms ease, fill 220ms ease, stroke 220ms ease;
}

.pillar-core-title {
  font-size: 28px;
}

.pillar-core-copy {
  font-size: 18px;
}

.pillar-link {
  fill: none;
  stroke: rgba(26, 89, 97, 0.22);
  stroke-width: 3.5;
  stroke-linecap: round;
  transition: stroke 220ms ease, stroke-width 220ms ease, opacity 220ms ease, stroke-dasharray 220ms ease;
}

.pillar-state-layer {
  opacity: 0;
  transition: opacity 240ms ease;
}

.pillar-state-layer path,
.pillar-state-layer rect {
  fill: none;
  stroke: rgba(188, 111, 76, 0.6);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-state-layer rect {
  fill: rgba(188, 111, 76, 0.16);
}

[data-active-pillar="orientation"] .pillar-state-orientation,
[data-active-pillar="architecture"] .pillar-state-architecture,
[data-active-pillar="rhythm"] .pillar-state-rhythm,
[data-active-pillar="leadership"] .pillar-state-leadership {
  opacity: 1;
}

[data-active-pillar="orientation"] .pillar-node[data-pillar="orientation"] rect,
[data-active-pillar="architecture"] .pillar-node[data-pillar="architecture"] rect,
[data-active-pillar="rhythm"] .pillar-node[data-pillar="rhythm"] rect,
[data-active-pillar="leadership"] .pillar-node[data-pillar="leadership"] rect {
  fill: rgba(47, 154, 163, 0.16);
  stroke: rgba(47, 154, 163, 0.42);
}

[data-active-pillar="orientation"] .pillar-link-orientation,
[data-active-pillar="architecture"] .pillar-link-architecture,
[data-active-pillar="rhythm"] .pillar-link-rhythm,
[data-active-pillar="leadership"] .pillar-link-leadership {
  stroke: rgba(188, 111, 76, 0.88);
  stroke-width: 4.5;
}

[data-active-pillar="orientation"] .pillar-core {
  transform: translate(10px, 0);
}

[data-active-pillar="architecture"] .pillar-core {
  transform: scale(0.98, 1);
}

[data-active-pillar="rhythm"] .pillar-core {
  transform: translate(0, 7px);
}

[data-active-pillar="leadership"] .pillar-core {
  transform: translate(-8px, 4px);
}

.pillar-summary {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.pillar-state-kicker {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.pillar-detail-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem 1.35rem;
}

.pillar-detail-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.05rem;
}

.pillar-detail-card-wide {
  grid-column: 1 / -1;
}

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

.capacity-contrast-card {
  padding: 1.6rem;
}

.capacity-contrast-card ul {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.capacity-contrast-card-strong {
  background: linear-gradient(180deg, rgba(240, 248, 248, 0.98), rgba(255, 255, 255, 0.98));
}

.explainer-cta-panel h2 {
  max-width: 32rem;
}

.about-grid {
  align-items: start;
}

.about-copy p {
  font-size: 1.08rem;
}

.about-frame {
  min-height: 31rem;
}

.about-frame img {
  inset: 0;
}

.cta-section {
  padding-top: 2rem;
}

.cta-panel {
  display: grid;
  justify-items: center;
  gap: 1.3rem;
  padding: 3.2rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(24, 53, 60, 0.1);
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 46rem;
}

.site-footer {
  padding: 2.4rem 0 3.2rem;
  border-top: 0;
  background: var(--brand-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-branding {
  display: inline-flex;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  background: #ffffff;
}

.footer-branding img {
  width: 10rem;
  background: transparent;
}

.footer-details {
  display: grid;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-details a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-weight: 700;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .approach-layout,
  .impact-columns,
  .footer-inner,
  .explainer-hero-grid,
  .insights-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-card {
    min-height: 34rem;
  }

  .card-grid-three,
  .work-grid,
  .service-overview-grid,
  .service-bullet-grid,
  .phase-grid,
  .entry-columns,
  .deliverables-grid-entry,
  .diagnostic-results-grid,
  .insight-section-list-two-column,
  .insight-related-grid,
  .protection-result-grid,
  .explainer-follow-grid,
  .explainer-signal-grid,
  .explainer-bridge-grid,
  .explainer-logic-tabs,
  .explainer-cta-grid,
  .symptom-grid,
  .capacity-contrast-grid,
  .insight-card-grid-three,
  .insight-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage-diagram {
    justify-content: center;
  }

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

  .diagnostic-options,
  .diagnostic-form-grid,
  .diagnostic-key-points,
  .protection-dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnostic-stage-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .diagnostic-progress-meta {
    justify-content: flex-start;
  }

  .approach-column {
    gap: 1.6rem;
  }

  .approach-point {
    max-width: 30rem;
    margin: 0 auto;
  }

  .footer-inner {
    justify-items: start;
  }

  .explainer-hero-visual,
  .insights-hero-visual {
    justify-content: center;
  }

  .insight-entry-meta span + span::before {
    display: none;
  }

  .pillar-layout {
    grid-template-columns: 1fr;
  }

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

  .explainer-compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    padding: 0.9rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-controls {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(24, 53, 60, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 36px rgba(24, 53, 60, 0.1);
  }

  .site-header.is-menu-open .header-controls {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.92rem 1rem;
    border-radius: 1rem;
    text-align: left;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .language-toggle {
    align-self: flex-start;
  }

  .site-header.is-menu-open .menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-lead {
    font-size: 1.15rem;
  }

  .card-grid-three,
  .work-grid,
  .impact-columns,
  .service-overview-grid,
  .service-bullet-grid,
  .phase-grid,
  .entry-columns,
  .deliverables-grid-entry,
  .diagnostic-results-grid,
  .diagnostic-key-points,
  .diagnostic-form-grid,
  .insight-section-list-two-column,
  .insight-related-grid,
  .protection-result-grid,
  .protection-dimension-grid,
  .explainer-follow-grid,
  .explainer-signal-grid,
  .explainer-bridge-grid,
  .explainer-logic-tabs,
  .explainer-logic-detail-grid,
  .explainer-cta-grid,
  .symptom-grid,
  .capacity-contrast-grid,
  .pillar-detail-grid,
  .diagnostic-options,
  .insight-card-grid-three,
  .insight-content-grid {
    grid-template-columns: 1fr;
  }

  .insight-diagnostic-page .diagnostic-options-five {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 32rem;
  }

  .hero-portrait {
    object-position: center top;
  }

  .approach-layout {
    gap: 0.5rem;
  }

  .approach-wheel {
    order: -1;
  }

  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage-diagram {
    justify-content: center;
  }

  .process-grid-localized {
    grid-template-columns: 1fr;
  }

  .diagnostic-stage {
    padding: 1.4rem;
  }

  .diagnostic-stage-header,
  .diagnostic-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .diagnostic-question {
    padding: 1.15rem;
  }

  .diagnostic-question-text {
    font-size: 1.08rem;
  }

  .work-card {
    min-height: auto;
  }

  .impact-column {
    padding-left: 1.2rem;
  }

  .about-frame {
    min-height: 24rem;
  }

  .about-frame img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .cta-panel {
    padding: 2rem 1.3rem;
  }

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

  .insights-hero-card {
    width: min(100%, 20rem);
    min-height: 26rem;
  }

  .insights-filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .explainer-entry-page .section {
    padding: 2.8rem 0;
  }

  .insight-entry-page .section {
    padding: 2.8rem 0;
  }

  .insight-pullquote,
  .insight-closing-block,
  .insight-related-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .explainer-section-card,
  .explainer-logic-panel,
  .explainer-logic-detail,
  .explainer-compare-head,
  .explainer-compare-cell,
  .explainer-cta-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .explainer-graphic-shell,
  .pillar-panel,
  .misread-head,
  .misread-cell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pillar-tab {
    padding: 1.1rem;
  }
}
