:root {
  --navy: #0d3557;
  --navy-dark: #071f35;
  --ink: #172230;
  --muted: #647181;
  --orange: #d86f2d;
  --gold: #c4963c;
  --green: #4f7f6b;
  --cream: #fbf7f0;
  --beige: #f3eadf;
  --paper: #fffdf9;
  --line: #e3d6c8;
  --shadow: 0 24px 70px rgba(13, 53, 87, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 240, 0.9);
  border-bottom: 1px solid rgba(227, 214, 200, 0.8);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-image img {
  width: 236px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.en,
em {
  color: #697789;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 112px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 247, 240, 0.92), rgba(255, 253, 249, 0.86)),
    radial-gradient(circle at 18% 18%, rgba(216, 111, 45, 0.12), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(79, 127, 107, 0.16), transparent 30%);
}

.hero-bg {
  position: absolute;
  inset: auto -12% -24% 44%;
  height: 520px;
  background: linear-gradient(125deg, rgba(13, 53, 87, 0.16), rgba(216, 111, 45, 0.06));
  transform: rotate(-8deg);
  border-radius: 44px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.14;
}

h1 {
  max-width: 780px;
  color: var(--navy-dark);
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

h2 {
  color: var(--navy-dark);
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

.hero-lead {
  max-width: 730px;
  margin: 28px 0 0;
  color: #3d4c5f;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(13, 53, 87, 0.2);
}

.btn.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-line span {
  padding: 7px 11px;
  border: 1px solid rgba(13, 53, 87, 0.12);
  border-radius: 999px;
  color: #475569;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(227, 214, 200, 0.9);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: -10px 0 18px;
  mix-blend-mode: multiply;
}

.panel-mark {
  color: rgba(13, 53, 87, 0.08);
  font-family: "Noto Serif SC", serif;
  font-size: 118px;
  font-weight: 700;
  line-height: 0.86;
}

.panel-kicker {
  margin: 28px 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: 30px;
}

.hero-panel p:last-child {
  margin-bottom: 0;
  color: #526174;
}

.metrics {
  background: var(--navy-dark);
  color: #fff;
}

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

.metrics-grid div {
  min-height: 156px;
  padding: 30px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.metrics em {
  display: inline-block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
}

.rich-text p {
  margin: 0 0 20px;
  color: #405166;
  font-size: 17px;
}

.title-en {
  margin: 18px 0 0;
  color: #6a7788;
  font-size: 17px;
  font-weight: 600;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.compact {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p:not(.section-label) {
  margin: 18px 0 0;
  color: #526174;
  font-size: 17px;
}

.services {
  background: var(--cream);
}

.offer-wall {
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.offer-grid div {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(251, 247, 240, 0.94)),
    repeating-linear-gradient(0deg, rgba(13, 53, 87, 0.05), rgba(13, 53, 87, 0.05) 1px, transparent 1px, transparent 18px);
  box-shadow: 0 14px 34px rgba(13, 53, 87, 0.06);
}

.offer-grid span {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.offer-grid strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 20px;
}

.offer-grid em {
  margin-top: 4px;
  font-size: 13px;
}

.cases {
  background: var(--cream);
}

.case-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.case-section-title {
  margin: 42px 0 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.case-section-title:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.case-section-title h3 {
  font-size: 26px;
}

.case-section-title p {
  max-width: 760px;
  color: #526174;
}

.case-matrix article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 53, 87, 0.05);
}

.case-matrix small {
  color: var(--orange);
  font-weight: 800;
}

.case-matrix h3 {
  margin-top: 8px;
  font-size: 21px;
}

.case-matrix p {
  margin-bottom: 0;
  color: #526174;
}

.case-more {
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 42px;
}

.offer-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 53, 87, 0.08);
}

.offer-strip figure {
  margin: 0;
}

.offer-strip figcaption {
  margin-top: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.pathways {
  background: var(--beige);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pathway-grid div {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(227, 214, 200, 0.92);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.82);
}

.pathway-grid strong,
.pathway-grid span {
  display: block;
}

.pathway-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.pathway-grid span {
  margin-top: 10px;
  color: #536477;
  font-size: 15px;
}

.service-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  margin-bottom: 24px;
  padding: 38px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
}

.service-band h3 {
  color: #fff;
  font-size: 30px;
}

.service-band p {
  color: rgba(255, 255, 255, 0.78);
}

.service-band ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.service-band li + li {
  margin-top: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.service-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(13, 53, 87, 0.06);
}

.service-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
}

.service-card p {
  color: #526174;
}

.advisor-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy) !important;
  font-weight: 700;
}

.global {
  background: #fff;
}

.story {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: start;
}

.story-lead {
  margin-top: 24px;
  color: #536477;
  font-size: 16px;
  line-height: 1.9;
}

.story-lead.en {
  margin-top: 14px;
  color: #6b7786;
}

.story-timeline {
  display: grid;
  gap: 18px;
}

.story-timeline div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, rgba(251, 247, 240, 0.76));
  box-shadow: 0 14px 36px rgba(13, 53, 87, 0.05);
}

.story-timeline strong {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1;
}

.story-timeline h3 {
  margin-top: 12px;
  font-size: 21px;
}

.story-timeline p {
  margin-bottom: 0;
  color: #526174;
}

.insights-preview {
  background: var(--cream);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.insight-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(13, 53, 87, 0.06);
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(13, 53, 87, 0.1);
}

.insight-card small,
.article-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: 12px;
  color: var(--navy-dark);
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.28;
}

.insight-card p {
  margin: 14px 0 0;
  color: #526174;
}

.insight-card span {
  margin-top: 24px;
  color: var(--navy);
  font-weight: 800;
}

.insights-page-hero,
.article-hero {
  padding: 104px 0 68px;
  background:
    linear-gradient(135deg, rgba(251, 247, 240, 0.96), rgba(255, 253, 249, 0.9)),
    radial-gradient(circle at 14% 18%, rgba(216, 111, 45, 0.14), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(79, 127, 107, 0.16), transparent 30%);
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #6b7786;
  font-size: 14px;
  font-weight: 700;
}

.page-breadcrumb a:hover {
  color: var(--orange);
}

.insights-page-hero h1,
.article-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 5vw, 58px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insights-page-hero p,
.article-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #405166;
  font-size: 19px;
}

.column-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.column-filter span {
  padding: 7px 12px;
  border: 1px solid rgba(13, 53, 87, 0.12);
  border-radius: 999px;
  color: #475569;
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 58px;
  align-items: start;
}

.article-shell > * {
  min-width: 0;
}

.article-main {
  min-width: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  color: #667487;
  font-size: 14px;
  font-weight: 700;
}

.article-body {
  padding-top: 8px;
  max-width: 100%;
  overflow-x: hidden;
}

.article-hero,
.article-main {
  max-width: 100%;
  overflow-x: hidden;
}

.article-body h2 {
  margin: 44px 0 16px;
  color: var(--navy-dark);
  font-size: clamp(26px, 3vw, 36px);
}

.article-body h3 {
  margin: 30px 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.article-body p {
  margin: 0 0 18px;
  color: #405166;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 1.25em;
  color: #405166;
}

.article-body li {
  margin-bottom: 9px;
}

.article-note {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: var(--cream);
  color: var(--navy);
  font-weight: 800;
}

.article-cta-box {
  margin-top: 48px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.article-cta-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 53, 87, 0.05);
}

.article-sidebar h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.article-sidebar a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #526174;
  font-weight: 700;
}

.article-sidebar a:last-child {
  border-bottom: 0;
}

.article-sidebar a:hover {
  color: var(--orange);
}

.article-disclaimer {
  margin-top: 24px;
  color: #778496;
  font-size: 14px !important;
}

.region-table {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.region-row {
  display: grid;
  grid-template-columns: 0.65fr 1.12fr 1.45fr;
  border-bottom: 1px solid var(--line);
}

.region-row:last-child {
  border-bottom: 0;
}

.region-row > div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.region-row > div:last-child {
  border-right: 0;
}

.region-header {
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.proof {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 53, 0.97), rgba(13, 53, 87, 0.93)),
    radial-gradient(circle at 20% 0%, rgba(216, 111, 45, 0.24), transparent 35%);
}

.proof h2,
.proof .section-label {
  color: #fff;
}

.proof p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  color: #fff;
  font-size: 19px;
}

.proof-list span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
}

.case-note {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.case-note h3 {
  color: #fff;
}

.case-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.mini-table {
  display: grid;
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.mini-table > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 1px;
}

.mini-table strong,
.mini-table span {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.mini-table strong {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.team {
  background: var(--paper);
}

.mentors {
  background: var(--paper);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mentor-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 53, 87, 0.06);
}

.mentor-grid strong,
.mentor-grid span,
.mentor-grid em {
  display: block;
}

.mentor-grid strong {
  color: var(--navy);
  font-size: 19px;
}

.mentor-grid span {
  margin-top: 10px;
  color: #425266;
}

.mentor-grid em {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.mentor-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mentor-categories div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 53, 87, 0.06);
}

.mentor-categories h3 {
  font-size: 19px;
}

.mentor-categories p {
  margin-bottom: 0;
  color: #526174;
}

.mentor-card {
  position: relative;
  padding-top: 72px !important;
}

.avatar {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(13, 53, 87, 0.16);
}

.mentor-roster {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mentor-roster span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3f5268;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.method {
  background: var(--beige);
}

.operating-system {
  background: linear-gradient(180deg, #fffdf9, #f6efe4);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.system-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(227, 214, 200, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(13, 53, 87, 0.06);
}

.system-grid span {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
}

.system-grid h3 {
  margin-top: 16px;
  font-size: 22px;
}

.system-grid p {
  margin-bottom: 0;
  color: #526174;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(13, 53, 87, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.system-flow div {
  padding: 18px;
  border-radius: 16px;
  background: var(--cream);
}

.system-flow strong,
.system-flow span {
  display: block;
}

.system-flow strong {
  color: var(--navy-dark);
  font-size: 16px;
}

.system-flow span {
  margin-top: 8px;
  color: #5b6b7c;
  font-size: 13px;
  line-height: 1.55;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 53, 87, 0.05);
}

.testimonial-grid p {
  margin: 0;
  color: #425266;
  font-size: 16px;
}

.testimonial-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.testimonial-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-image-grid img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 53, 87, 0.08);
}

.process {
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-steps div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, rgba(251, 247, 240, 0.74));
}

.process-steps span {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
}

.process-steps strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 18px;
}

.process-steps p {
  margin-bottom: 0;
  color: #536477;
}

.faq-preview {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #536477;
}

.founder-message {
  background: #fff;
}

.signature {
  color: var(--navy) !important;
  font-weight: 800;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.method-grid div {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(227, 214, 200, 0.9);
}

.method-grid span {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
}

.method-grid h3 {
  margin-top: 14px;
  font-size: 20px;
}

.method-grid p {
  margin-bottom: 0;
  color: #536477;
  font-size: 15px;
}

.method-grid em {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.cta-section {
  padding: 104px 0;
  background: var(--navy-dark);
}

.cta-inner {
  max-width: 1080px;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p:not(.section-label) {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.contact-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}

.contact-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy-dark);
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.contact-card h3 {
  color: #fff;
  font-size: 21px;
}

.cta-inner .contact-card p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.qr-card img {
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  margin: 0 auto 12px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.contact-card small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 12px;
}

.social-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.social-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-card strong,
.social-card em {
  display: block;
}

.social-card strong {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.social-card em {
  margin-top: 4px;
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.cta-inner .btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer {
  padding: 56px 0;
  background: #071724;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
}

.footer .brand {
  color: #fff;
}

.footer .brand small {
  color: rgba(255, 255, 255, 0.62);
}

.footer .brand-image img {
  width: 250px;
  height: auto;
  filter: brightness(1.05);
  mix-blend-mode: normal;
}

.footer p {
  max-width: 420px;
}

.footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

/* Homepage clarity pass — one decision path, fewer competing modules. */
.home-hero {
  min-height: 650px;
  padding: 96px 0 80px;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 72px;
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.4vw, 68px);
  line-height: 1.16;
  overflow-wrap: normal;
}

.home-hero .hero-lead {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.85;
}

.hero-note {
  max-width: 680px;
  margin: 20px 0 0;
  color: #697789;
  font-size: 14px;
}

.hero-brief {
  padding: 34px;
  border: 1px solid rgba(227, 214, 200, 0.95);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow);
}

.brief-list {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.brief-list li {
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.brief-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.brief-list strong,
.brief-list span {
  display: block;
}

.brief-list strong {
  color: var(--navy-dark);
  font-size: 18px;
}

.brief-list span {
  margin-top: 6px;
  color: #5c6b7c;
  font-size: 15px;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
}

.text-link:hover {
  color: var(--orange);
}

.text-link.light {
  color: rgba(255, 255, 255, 0.82);
}

.section-link {
  display: inline-block;
  margin-top: 30px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-intro > p,
.section-intro > a {
  margin: 0;
  color: #58687a;
  font-size: 16px;
}

.section-intro > a {
  justify-self: end;
  color: var(--navy);
}

.home-services,
.journey-section {
  background: var(--paper);
}

.home-service-grid,
.home-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-service-grid .service-card {
  min-height: 290px;
}

.identity-section {
  background: #fff;
}

.identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.identity-statement > p:not(.section-label) {
  margin-top: 24px;
  color: #526174;
  font-size: 17px;
  line-height: 1.9;
}

.identity-statement blockquote,
.philosophy-copy blockquote {
  margin: 30px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: var(--beige);
  color: var(--navy-dark);
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  line-height: 1.8;
}

.value-grid {
  display: grid;
  gap: 14px;
}

.value-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 3px 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.value-grid article > span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
}

.value-grid h3,
.value-grid p {
  margin: 0;
}

.value-grid p {
  margin-top: 7px;
  color: #58687a;
}

.fit-section {
  background: var(--beige);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}

.fit-copy p:not(.section-label) {
  margin: 22px 0;
  color: #526174;
  font-size: 17px;
}

.fit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fit-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.84);
}

.fit-card.positive {
  border-top: 4px solid var(--orange);
}

.fit-card ul {
  margin: 22px 0 0;
  padding-left: 1.2em;
  color: #526174;
}

.fit-card li + li {
  margin-top: 12px;
}

.team-preview {
  background: var(--paper);
}

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

.expertise-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 53, 87, 0.05);
}

.expertise-grid article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expertise-grid h3 {
  margin-top: 32px;
}

.expertise-grid p {
  color: #58687a;
}

.team-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.team-preview-footer p {
  margin: 0;
  color: #657487;
  font-size: 14px;
}

.team-philosophy {
  background: #fff;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.philosophy-copy > p {
  margin: 0;
  color: #526174;
  font-size: 17px;
  line-height: 1.9;
}

.philosophy-copy > p + p {
  margin-top: 18px;
}

.expertise-section {
  background: var(--beige);
}

.team-disclosure {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.team-disclosure strong {
  color: var(--navy-dark);
}

.team-disclosure p {
  margin: 0;
  color: #5c6b7c;
}

.founder-note {
  color: #fff;
  background: linear-gradient(135deg, #071f35, #0d3557);
}

.founder-note-inner {
  max-width: 900px;
}

.founder-note .section-label {
  color: rgba(255, 255, 255, 0.62);
}

.founder-note blockquote {
  margin: 24px 0;
  color: #fff;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.65;
}

.founder-note-inner > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journey-grid article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(13, 53, 87, 0.06);
}

.journey-grid > article > span {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
}

.journey-grid h3 {
  margin-top: 16px;
}

.journey-grid p {
  color: #526174;
}

.journey-grid em {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.proof-summary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 53, 0.99), rgba(13, 53, 87, 0.96)),
    radial-gradient(circle at 15% 0%, rgba(216, 111, 45, 0.22), transparent 34%);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.proof-summary h2,
.proof-summary .section-label {
  color: #fff;
}

.proof-summary p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.proof-points {
  display: grid;
}

.proof-points div {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-points div:first-child {
  padding-top: 0;
  border-top: 0;
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  color: #fff;
  font-size: 18px;
}

.proof-points span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
}

.proof-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: -12px;
}

.proof-actions .btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.home-insight-grid .insight-card {
  min-height: 280px;
}

.home-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 38px auto 0;
  text-align: left;
}

.home-contact .contact-card {
  padding: 26px;
}

.home-contact .qr-card img {
  max-width: 220px;
}

.home-contact .contact-card > a {
  display: inline-flex;
  margin-top: 4px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-grid,
  .story-grid,
  .split,
  .proof-grid,
  .service-band,
  .home-hero .hero-grid,
  .section-intro,
  .fit-grid,
  .proof-layout,
  .identity-layout,
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-intro > a {
    justify-self: start;
  }

  .hero-panel {
    padding: 28px;
  }

  .home-service-grid,
  .home-insight-grid,
  .journey-grid,
  .service-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

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

  .home-service-grid .service-card,
  .home-insight-grid .insight-card,
  .journey-grid article {
    min-height: auto;
  }

  .metrics-grid,
  .offer-grid,
  .offer-strip,
  .case-matrix,
  .insight-grid,
  .service-grid,
  .pathway-grid,
  .system-grid,
  .system-flow,
  .mentor-categories,
  .testimonial-grid,
  .testimonial-image-grid,
  .process-steps,
  .method-grid,
  .contact-matrix,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .region-row {
    grid-template-columns: 1fr;
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-sidebar {
    position: static;
  }

  .region-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .region-row > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-image img {
    width: 190px;
    height: auto;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .home-hero {
    padding: 56px 0 52px;
  }

  h1 {
    font-size: 34px;
  }

  .home-hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .panel-mark {
    font-size: 82px;
  }

  .metrics-grid,
  .offer-grid,
  .offer-strip,
  .case-matrix,
  .insight-grid,
  .service-grid,
  .pathway-grid,
  .system-grid,
  .system-flow,
  .mentor-categories,
  .testimonial-grid,
  .testimonial-image-grid,
  .process-steps,
  .method-grid,
  .mentor-grid,
  .contact-matrix,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-table > div {
    grid-template-columns: 1fr;
  }

  .metrics-grid div,
  .metrics-grid div:last-child {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 68px 0;
  }

  .service-band,
  .service-card {
    padding: 24px;
    border-radius: 18px;
  }

  .region-row > div {
    padding: 17px;
  }

  .insights-page-hero,
  .article-hero {
    padding: 64px 0 44px;
  }

  .insights-page-hero h1,
  .article-hero h1 {
    font-size: 27px;
    line-height: 1.32;
    line-break: anywhere;
    word-break: break-all;
  }

  .article-hero .container,
  .article-shell,
  .article-main,
  .article-body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .article-lead,
  .article-body p,
  .article-body li {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .article-lead {
    font-size: 17px;
    line-height: 1.85;
  }

  .article-meta {
    display: grid;
    gap: 6px;
  }

  .insight-card,
  .article-cta-box {
    padding: 24px;
    border-radius: 18px;
  }

  .fit-cards,
  .home-contact {
    grid-template-columns: 1fr;
  }

  .expertise-grid,
  .team-disclosure {
    grid-template-columns: 1fr;
  }

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

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

  .hero-brief,
  .journey-grid article {
    padding: 24px;
  }

  .proof-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 30px;
  }

  .home-hero h1 {
    font-size: 34px;
  }
}
