:root {
  --navy: #10243a;
  --navy-2: #17324d;
  --teal: #2f6f73;
  --gold: #c9a96a;
  --green: #3e6b56;
  --red: #9b4038;
  --amber: #a66f22;
  --blue: #315f8f;
  --ink: #1f2933;
  --muted: #65717f;
  --line: rgba(31, 41, 51, 0.13);
  --panel: #ffffff;
  --paper: #f7f6f2;
  --soft-blue: #eaf2f6;
  --soft-teal: #e6f1f1;
  --soft-gold: #f6f0e2;
  --soft-red: #f8e9e7;
  --shadow: 0 20px 48px rgba(16, 36, 58, 0.1);
  --white: #ffffff;
  --stone: #f5f3ee;
  --warm: #faf8f4;
  --text: #1f2933;
  --max: 1180px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--warm);
  font-family: Inter, "Avenir Next", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 10001;
  padding: 10px 16px;
  border-radius: 0 0 6px 6px;
  color: var(--navy);
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-nav:focus {
  top: 0;
}

body.assistant-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: wrap;
}

summary,
.button,
.service-secondary-link,
.pc-cta,
.simulation-link {
  overflow-wrap: anywhere;
}

p,
li {
  text-wrap: pretty;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.2);
}

.button-primary:hover {
  background: #d5b45f;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(250, 249, 247, 0.94);
  border-bottom: 1px solid rgba(11, 29, 51, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(11, 29, 51, 0.08);
  background: rgba(250, 249, 247, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  width: min(260px, 58vw);
  height: 52px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-nav a:hover,
.nav-link:hover,
.nav-group.is-open > .nav-link {
  background: rgba(200, 162, 75, 0.14);
}

.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  display: none;
  min-width: 232px;
  padding: 8px;
  border: 1px solid rgba(11, 29, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.is-open .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  display: flex;
  justify-content: flex-start;
  min-height: 40px;
  padding: 9px 10px;
  white-space: nowrap;
}

.nav-cta {
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  background: var(--navy-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 29, 51, 0.16);
  border-radius: 6px;
  background: var(--white);
}

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


/* ===== Hero Carousel ===== */
.hero-carousel {
  position: relative;
  height: 76vh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  background: var(--navy);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 640ms ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,36,58,0.88) 0%, rgba(16,36,58,0.55) 55%, rgba(16,36,58,0.35) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 18%;
  left: 6%;
  right: 6%;
  max-width: 680px;
  z-index: 2;
}

.slide-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 2px;
}

.slide-content h1,
.slide-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
}

.slide-content p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.5;
  max-width: 580px;
}

.slide-meta {
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 700;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 0;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.slide-cta:hover {
  background: #d5b45f;
}

.slide-cta-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.slide-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Carousel Controls */
.carousel-dots {
  position: absolute;
  bottom: 6%;
  right: 6%;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  background: rgba(16,36,58,0.45);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  display: grid;
  place-items: center;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }


/* ===== Trust Strip (kept from old hero) ===== */
.trust-strip {
  padding: 26px 0;
  background: rgba(16, 36, 58, 0.98);
}

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

.trust-grid article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.trust-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
}

.trust-grid h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.3;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.trust-note {
  border-color: rgba(200, 162, 75, 0.25) !important;
  background: rgba(200, 162, 75, 0.06);
}

/* ===== News Modal ===== */
.news-modal[hidden] {
  display: none !important;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,36,58,0.55);
  cursor: pointer;
}

.news-modal-content {
  position: relative;
  max-width: 700px;
  max-height: 88vh;
  overflow-y: auto;
  width: 100%;
  padding: 36px 32px 32px;
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(16,36,58,0.18);
}

.news-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--panel);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.news-modal-close:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.news-modal-date {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.news-modal-content h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  padding-right: 32px;
}

.news-modal-image {
  margin: 0 0 20px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper);
}

.news-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.news-modal-body {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.news-modal-body p {
  margin: 0 0 12px;
}

.news-modal-body ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.news-modal-body li {
  margin-bottom: 8px;
}

body.news-open { overflow: hidden; }

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,36,58,0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

/* ===== News Cards with Image ===== */

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(16,36,58,0.1);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--paper);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 300ms ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.news-date {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.news-card-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.3;
}

.news-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.news-readmore {
  align-self: flex-start;
  border: 0;
  padding: 0;
  color: var(--teal);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.news-readmore:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .news-modal-content { padding: 28px 20px 24px; }
}
.trust-strip {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 29, 51, 0.08);
}

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

.trust-grid article {
  min-height: 156px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.trust-grid article:hover,
.question-grid article:hover,
.deliverable-grid article:hover,
.report-card:hover,
.case-column article:hover,
.social-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 29, 51, 0.1);
}

.trust-grid span,
.report-card span,
.case-column span,
.social-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-grid h3 {
  font-size: 20px;
  line-height: 1.3;
}

.trust-grid p {
  color: var(--muted);
  font-size: 14px;
}

.trust-note {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy) !important;
}

.trust-note h3 {
  color: var(--white);
}

.section {
  scroll-margin-top: 92px;
  padding: clamp(48px, 6vw, 78px) 0;
}

.hero-carousel {
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 100%;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 100%;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: 0;
}

h3,
h4 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
}

p {
  margin: 14px 0 0;
}

.lead,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
  max-width: 820px;
}

.problem {
  background: var(--warm);
}

.methodology {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}

.methodology-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.scroll-story-layout {
  align-items: start;
}

.scroll-story-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.scroll-story-content {
  min-width: 0;
}

.methodology-intro {
  position: sticky;
  top: 112px;
}

.methodology-intro .lead {
  max-width: 620px;
}

.methodology-intro h2 {
  white-space: nowrap;
}

.methodology-questions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.methodology-questions span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 162, 75, 0.28);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.methodology-system {
  display: grid;
  gap: 14px;
}

.methodology-system article {
  position: relative;
  min-height: 178px;
  padding: 26px 28px 26px 92px;
  border: 1px solid rgba(16, 36, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.08);
}

.methodology-system article::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 44px;
  width: 1px;
  height: calc(100% - 42px);
  background: rgba(200, 162, 75, 0.32);
}

.methodology-system article:last-child::before {
  display: none;
}

.methodology-system span {
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.methodology-system h3 {
  font-size: 24px;
}

.methodology-system p {
  color: var(--muted);
  font-size: 15px;
}

.entry {
  background: var(--white);
}

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

.entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.06);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.entry-card::after {
  content: "→";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 162, 75, 0.42);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.64);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.entry-card:hover,
.entry-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(200, 162, 75, 0.82);
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(11, 29, 51, 0.16);
}

.entry-card:hover::after,
.entry-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.entry-card:focus-visible {
  outline: 3px solid rgba(200, 162, 75, 0.34);
  outline-offset: 4px;
}

.entry-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.entry-card p {
  color: var(--muted);
  font-size: 14px;
}

.entry-card strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.entry-card em {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  font-style: normal;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.entry-card:hover em,
.entry-card:focus-visible em {
  color: var(--gold);
  transform: translateX(3px);
}

.featured-entry {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.featured-entry:hover,
.featured-entry:focus-visible {
  background: #0c2239;
  border-color: rgba(200, 162, 75, 0.86);
}

.featured-entry h3,
.featured-entry strong,
.featured-entry em {
  color: var(--white);
}

.featured-entry::after {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.featured-entry p {
  color: rgba(255, 255, 255, 0.66);
}

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

.question-grid article,
.deliverable-grid article,
.scenario-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.06);
}

.question-grid article {
  min-height: 230px;
  padding: 26px;
}

.question-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 850;
}

.question-grid p,
.deliverable-grid p,
.scenario-list p,
.report-card p,
.case-column p,
.social-grid p,
.module-list p,
.method-stack p,
.timeline p {
  color: var(--muted);
}

.service-band {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.service-band h2,
.service-band h3 {
  color: var(--white);
}

.service-band .lead {
  color: rgba(255, 255, 255, 0.86);
}

.conversion-service .section-heading {
  max-width: 100%;
}

.conversion-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 18px;
}

.conversion-steps article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.conversion-steps span,
.conversion-service-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-steps p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.conversion-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.conversion-service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 388px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.conversion-service-grid h3 {
  color: var(--navy);
  font-size: 20px;
}

.conversion-service-grid p {
  color: var(--muted);
  font-size: 14px;
}

.conversion-service-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #4f5b68;
  font-size: 13px;
  line-height: 1.5;
}

.conversion-service-grid .pc-cta {
  display: inline-flex;
  margin-top: auto;
}

.conversion-boundary {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(200, 162, 75, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.conversion-boundary strong {
  flex: 0 0 auto;
  color: var(--gold);
}

.conversion-boundary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module-list article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.module-list article:first-child {
  grid-column: span 2;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--stone);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.method-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.method-stack article {
  padding: 22px 0 20px;
  border-top: 1px solid rgba(32, 36, 42, 0.18);
}

.deliverables {
  background: var(--warm);
}

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

.deliverable-grid article {
  min-height: 178px;
  padding: 22px;
}

.inline-cta {
  padding: 26px 0;
  color: var(--white);
  background: var(--navy);
}

.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
}

.inline-cta h2 {
  max-width: 100%;
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 38px);
}

.reports {
  background: var(--white);
}

.reports-heading,
.proof-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.reports-heading > div,
.proof-heading > div {
  max-width: 920px;
}

.reports-title-nowrap {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(11, 29, 51, 0.12);
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.12);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.section-action::after {
  content: "→";
  margin-left: 8px;
}

.section-action:hover,
.section-action:focus-visible {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11, 29, 51, 0.16);
}

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

.report-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.report-card.featured {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.report-card.featured h3 {
  color: var(--white);
}

.report-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.report-card h3 {
  line-height: 1.28;
}

.report-card a {
  align-self: flex-start;
  margin-top: 22px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.report-card small {
  display: block;
  margin-top: auto;
  color: rgba(95, 102, 112, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.report-card.featured small {
  color: rgba(255, 255, 255, 0.6);
}

.report-card:not(.featured) a {
  color: var(--white);
  background: var(--navy);
}

.fit {
  background: var(--white);
}

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

.fit-grid article {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.fit-positive {
  background: rgba(62, 107, 86, 0.08);
}

.fit-negative {
  background: rgba(166, 66, 58, 0.08);
}

.fit-positive h3 {
  color: var(--green);
}

.fit-negative h3 {
  color: var(--red);
}

ul {
  padding-left: 20px;
  margin: 16px 0 0;
}

li + li {
  margin-top: 10px;
}

.scenarios {
  background: var(--warm);
}

.scenario-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.scenario-list article {
  padding: 22px;
}

.scenario-list span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.ecosystem {
  background: var(--white);
}

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

.partner-wall article {
  min-height: 206px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.partner-wall article:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 29, 51, 0.1);
}

.partner-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.partner-wall span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.partner-wall p,
.section-note,
.activity-grid figcaption,
.about p,
.team p,
.kit-grid p {
  color: var(--muted);
}

.section-note {
  max-width: 760px;
  margin-top: 18px;
  font-size: 13px;
}

.activities,
.about {
  background: var(--stone);
}

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

.trust-summary-grid article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.trust-summary-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 75, 0.42);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.1);
}

.trust-summary-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-summary-grid h3 {
  font-size: 20px;
}

.trust-summary-grid p {
  font-size: 14px;
}

.trust-summary-dark {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.trust-summary-dark h3 {
  color: var(--white);
}

.trust-summary-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.trust-summary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.trust-summary-actions .service-secondary-link {
  color: var(--navy);
  border-color: rgba(16, 36, 58, 0.2);
}

.trust-summary-actions .service-secondary-link:hover {
  border-color: rgba(16, 36, 58, 0.4);
  background: rgba(16, 36, 58, 0.06);
}

.about-heading {
  max-width: 100%;
}

.about-subsection {
  scroll-margin-top: 112px;
  margin-top: clamp(44px, 6vw, 72px);
}

.about-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.about-section-title span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section-title h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.about-company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.about-narrative {
  padding: 28px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.07);
}

.about-narrative p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
}

.about-narrative p + p {
  margin-top: 16px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-principles article {
  min-height: 182px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.about-principles span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-principles h4 {
  font-size: 22px;
}

.about-principles p {
  margin-top: 12px;
  font-size: 15px;
}

.about-principles .principle-dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.about-principles .principle-dark h4 {
  color: var(--white);
}

.about-principles .principle-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.about-founder {
  padding-top: 6px;
}

.about-scenes {
  padding-top: 2px;
}

.about-scenes-lead {
  max-width: 760px;
  margin: -4px 0 24px;
  font-size: 16px;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.activity-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.activity-grid .activity-large {
  grid-row: span 2;
  min-height: 536px;
}

.activity-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.activity-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(11, 29, 51, 0.72);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.activity-grid figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.team {
  padding-top: clamp(48px, 6vw, 78px);
  background: var(--warm);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: 34px;
  align-items: stretch;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.founder-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(200, 162, 75, 0.42);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(200, 162, 75, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.advisor-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.advisor-mini-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.advisor-mini-grid span,
.founder-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.advisor-mini-grid h3,
.advisor-mini-grid h4 {
  font-size: 17px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 58, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.founder-card > div {
  padding: 22px;
}

.founder-card h3,
.founder-card h4 {
  font-size: 26px;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.founder-grid article,
.advisor-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.founder-grid article {
  padding: 24px;
}

.person-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(11, 29, 51, 0.96), rgba(19, 41, 64, 0.78)),
    url("assets/founder-wangli-portrait.jpg") center / cover;
  font-size: 38px;
  font-weight: 850;
}

.founder-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.advisor-grid article {
  min-height: 220px;
  padding: 18px;
}

.advisor-grid div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(200, 162, 75, 0.24);
  font-size: 13px;
  font-weight: 850;
}

.advisor-grid h3 {
  font-size: 17px;
}

.meeting-kit {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.meeting-kit h2,
.meeting-kit h3 {
  color: var(--white);
}

.meeting-kit .lead {
  color: rgba(255, 255, 255, 0.76);
}

.meeting-kit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 42px;
  align-items: start;
}

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

.kit-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.kit-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 850;
}

.kit-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.proof {
  background: var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.case-column,
.testimonial-column {
  display: grid;
  gap: 14px;
}

.case-column {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.case-column article,
.testimonial-column blockquote,
.proof-testimonial {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
}

.case-column article,
.social-grid article {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.case-column article {
  min-height: 164px;
}

.proof-testimonial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: 22px;
  align-items: stretch;
  min-height: 360px;
  overflow: hidden;
  border-color: rgba(11, 29, 51, 0.18);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 29, 51, 0.98), rgba(18, 45, 70, 0.92)),
    var(--navy);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.14);
}

.proof-testimonial-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-testimonial::after {
  content: "”";
  position: absolute;
  right: 22px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
}

.proof-testimonial span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-testimonial p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  font-weight: 760;
  line-height: 1.62;
}

.proof-testimonial-visual {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-testimonial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 39, 0.06), rgba(7, 23, 39, 0.42));
}

.proof-testimonial-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.testimonial-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.58;
}

.testimonial-column footer,
.proof-testimonial footer {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.simulation-card {
  overflow: hidden;
  border: 1px solid rgba(16, 36, 58, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.simulation-preview {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.simulation-preview img {
  width: 100%;
  height: auto;
}

.simulation-body {
  padding: 24px;
}

.simulation-body > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.simulation-body h3 {
  font-size: 23px;
}

.simulation-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 16px;
}

.simulation-stats div {
  padding: 13px;
  border: 1px solid rgba(16, 36, 58, 0.1);
  border-radius: 8px;
  background: var(--warm);
}

.simulation-stats dt {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.simulation-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.simulation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.simulation-link:hover,
.simulation-link:focus-visible {
  background: #17395f;
}

.simulation-body small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.process {
  background: var(--stone);
  color: rgba(255, 255, 255, 0.78);
}

.process h2,
.process h3 {
  color: var(--navy);
}

.process .section-heading p {
  color: var(--muted);
}


/* ===== Process Grid (Unified 4-product layout) ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.proc-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(32, 36, 42, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.proc-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.3;
}

.proc-duration {
  display: inline-block;
  margin: 10px 0 14px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(200, 162, 75, 0.3);
  background: rgba(200, 162, 75, 0.08);
  font-size: 12px;
  font-weight: 850;
  align-self: flex-start;
}

.proc-steps {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proc-steps li {
  position: relative;
  padding: 8px 10px;
  border-left: 2px solid rgba(47, 111, 115, 0.25);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.proc-steps li:last-child {
  border-color: var(--gold);
}

/* ===== Company News ===== */
.news {
  background: var(--paper);
}

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



.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 202px;
  padding: 22px;
  border: 1px solid rgba(32, 36, 42, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 48px;
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.social {
  background: var(--stone);
}

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

.social .section-heading {
  margin-bottom: 0;
}

.social-news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.social-news-head h3 {
  font-size: clamp(24px, 3vw, 34px);
}

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(32, 36, 42, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.social-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(200, 162, 75, 0.7);
}

.contact-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,36,58,0.9) 0%, rgba(16,36,58,0.55) 100%);
  z-index: 1;
}

.contact .contact-inner {
  position: relative;
  z-index: 2;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.contact-inner {
  width: min(860px, calc(100% - clamp(40px, 9vw, 128px)));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) 0;
}

.contact h2 {
  max-width: 100%;
  color: var(--white);
}

.contact p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(760px, 100%);
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 29, 51, 0.56);
}

.contact-box h3 {
  color: var(--white);
}

.contact-box p {
  margin-top: 8px;
  font-size: 15px;
}

.contact-box small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.contact-buttons {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.contact-qr-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-qr-card {
  --contact-qr-size: clamp(112px, 9vw, 136px);
  display: grid;
  grid-template-columns: var(--contact-qr-size) minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  min-height: calc(var(--contact-qr-size) + 28px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-qr-card img {
  width: var(--contact-qr-size);
  height: var(--contact-qr-size);
  padding: 6px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  object-fit: contain;
}

.contact-qr-card strong,
.contact-qr-card span {
  min-width: 0;
}

.contact-qr-card strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.contact-qr-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  padding: 44px clamp(20px, 5vw, 64px) 26px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(16, 36, 58, 0.96), rgba(7, 23, 39, 1)),
    #071727;
}

.footer-main,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(220px, 0.8fr) minmax(260px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.site-footer img {
  height: auto;
}

.footer-brand img {
  width: 154px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.45;
}

.footer-brand span,
.footer-contact span,
.footer-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand span {
  max-width: 460px;
  margin-top: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 10px 22px;
}

.footer-links a,
.footer-bottom a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.footer-links a:hover,
.footer-bottom a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
}

.footer-contact a {
  display: inline-flex;
  margin: 10px 0 12px;
  color: var(--gold);
}

.footer-contact .footer-related-brand {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-contact .footer-related-brand a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(200, 162, 75, 0.55);
  text-underline-offset: 3px;
}

.footer-contact .footer-related-brand a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 32px 20px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand img {
    width: 132px;
    margin-bottom: 14px;
  }

  .footer-brand span,
  .footer-contact span,
  .footer-contact small {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .footer-contact {
    padding-top: 16px;
  }

  .footer-contact a {
    margin: 8px 0 10px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }
}

/* ===== Yundinh Deep Report Landings ===== */
.report-landing-page main {
  background: var(--warm);
}

.report-landing {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 56px 0 80px;
}

.report-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 44px;
  align-items: stretch;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.report-landing-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 52px clamp(28px, 5vw, 62px);
}

.report-landing-hero .breadcrumb {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.64);
}

.report-landing-hero .breadcrumb a {
  color: inherit;
}

.report-landing-hero .section-kicker {
  color: var(--gold);
}

.report-landing-hero h1 {
  max-width: 760px;
  margin: 10px 0 22px;
  color: inherit;
  font-size: 46px;
  line-height: 1.18;
}

.report-landing-deck {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.report-landing-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
}

.report-landing-meta div {
  min-width: 0;
}

.report-landing-meta dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.report-landing-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.55;
}

.report-landing-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy-2);
}

.report-landing-hero-card > span,
.report-evidence-card > span,
.report-source-item > div:first-child > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-landing-hero-card p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.report-landing-hero-card .button {
  align-self: flex-start;
}

.report-landing-text-link {
  align-self: flex-start;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.report-validation-questions,
.report-evidence,
.report-sources,
.report-boundary,
.report-related-insights {
  padding: 68px 0;
}

.report-validation-questions {
  border-bottom: 1px solid rgba(31, 41, 51, 0.1);
}

.report-validation-questions ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 42px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.report-validation-questions li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 41, 51, 0.1);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.report-evidence {
  padding-bottom: 20px;
}

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

.report-evidence-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
}

.report-evidence-card.judgment {
  border-top-color: var(--gold);
}

.report-evidence-card.scenario {
  border-top-color: var(--green);
}

.report-evidence-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

.report-source-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(31, 41, 51, 0.12);
}

.report-source-item:last-child {
  border-bottom: 1px solid rgba(31, 41, 51, 0.12);
}

.report-source-item h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.42;
}

.report-source-item h3 a {
  color: inherit;
}

.report-source-item h3 a:hover {
  color: var(--teal);
}

.report-source-item > div:first-child > p,
.report-source-scope p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.report-source-scope {
  display: grid;
  gap: 10px;
}

.report-source-scope strong {
  color: var(--navy);
}

.report-boundary {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 2px solid var(--gold);
}

.report-boundary h2 {
  margin: 9px 0 14px;
  color: var(--navy);
  font-size: 26px;
}

.report-boundary > p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.report-related-insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-related-insight-list article {
  padding: 20px 0 0;
  border-top: 1px solid rgba(31, 41, 51, 0.14);
}

.report-related-insight-list time {
  color: var(--muted);
  font-size: 13px;
}

.report-related-insight-list h3 {
  margin: 10px 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.report-related-insight-list h3 a {
  color: inherit;
}

.report-related-insight-list h3 a:hover {
  color: var(--teal);
}

.report-related-insight-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.report-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 34px 38px;
  color: var(--white);
  background: var(--teal);
}

.report-contact h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 27px;
}

.report-contact p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
}

.report-contact .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.report-contact .button {
  flex: 0 0 auto;
}

.report-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.report-card-full .report-card-actions a {
  margin-top: 0;
}

@media (max-width: 980px) {
  .report-landing-hero,
  .report-source-item {
    grid-template-columns: 1fr;
  }

  .report-landing-hero-card {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .report-evidence-grid,
  .report-related-insight-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .report-landing {
    width: min(100% - 28px, var(--max));
    padding: 28px 0 54px;
  }

  .report-landing-hero {
    min-height: 0;
    gap: 0;
  }

  .report-landing-hero > div,
  .report-landing-hero-card {
    padding: 36px 22px;
  }

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

  .report-landing-deck {
    font-size: 16px;
  }

  .report-landing-meta,
  .report-validation-questions ol {
    grid-template-columns: 1fr;
  }

  .report-validation-questions,
  .report-evidence,
  .report-sources,
  .report-boundary,
  .report-related-insights {
    padding: 46px 0;
  }

  .report-validation-questions li {
    font-size: 16px;
  }

  .report-evidence-card {
    min-height: 0;
  }

  .report-source-item {
    gap: 16px;
  }

  .report-contact {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }

  .report-contact .button {
    width: 100%;
  }
}

.quick-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.quick-actions.is-hidden-over-footer {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 138px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.28);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-action:hover {
  transform: translateY(-2px);
}

.quick-action:focus-visible {
  outline: 3px solid rgba(200, 162, 75, 0.42);
  outline-offset: 3px;
}

.assistant-action {
  color: var(--white);
  background: var(--navy);
}

.assistant-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 12px;
}

.top-action {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(11, 29, 51, 0.14);
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.14);
}

.top-action:hover {
  border-color: rgba(200, 162, 75, 0.7);
}

.contact-action {
  color: var(--navy);
  background: var(--gold);
  border-color: rgba(200, 162, 75, 0.8);
}

.contact-action:hover {
  background: #d5b45f;
}

.assistant-modal[hidden] {
  display: none;
}

.assistant-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 15%, rgba(200, 162, 75, 0.18), transparent 28%),
    rgba(7, 23, 39, 0.72);
}

.assistant-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1080px, 100%);
  max-height: min(820px, calc(100svh - 44px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: var(--warm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 29, 51, 0.98), rgba(19, 41, 64, 0.94)),
    url("assets/hero-home-boardroom-logo-20260621.jpg") center / cover;
}

.assistant-header h2 {
  color: var(--white);
  font-size: 30px;
}

.assistant-header span {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.assistant-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.assistant-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 0;
  background: linear-gradient(180deg, #fff, var(--warm));
}

.assistant-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 24px;
  overflow-y: auto;
}

.chat-message {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  white-space: pre-line;
  box-shadow: 0 8px 18px rgba(11, 29, 51, 0.05);
}

.chat-message.bot {
  align-self: flex-start;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-top-left-radius: 3px;
}

.chat-message.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--navy);
  border-top-right-radius: 3px;
}

.chat-message strong {
  color: var(--navy);
}

.assistant-side {
  padding: 24px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(250, 249, 247, 0.9), rgba(255, 255, 255, 0.98)),
    var(--white);
  overflow-y: auto;
}

.assistant-direct-contact {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(11, 29, 51, 0.11);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(248, 246, 240, 0.78);
  box-shadow: 0 14px 28px rgba(11, 29, 51, 0.05);
}

.assistant-direct-contact strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.assistant-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.assistant-qr-grid figure {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(11, 29, 51, 0.1);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.assistant-qr-grid img {
  width: 110px;
  height: 110px;
  max-width: 100%;
  object-fit: contain;
}

.assistant-qr-grid figcaption {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.assistant-direct-contact a {
  width: fit-content;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.assistant-direct-contact a:hover,
.assistant-direct-contact a:focus {
  color: var(--green);
  text-decoration: underline;
}

.assistant-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.conversion-status {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border: 1px solid rgba(11, 29, 51, 0.12);
  border-radius: 6px;
  color: rgba(11, 29, 51, 0.78);
  background: rgba(11, 29, 51, 0.04);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.conversion-status[data-tone="success"] {
  border-color: rgba(52, 126, 96, 0.24);
  color: #236344;
  background: rgba(52, 126, 96, 0.1);
}

.conversion-status[data-tone="warning"] {
  border-color: rgba(200, 162, 75, 0.36);
  color: #705719;
  background: rgba(200, 162, 75, 0.14);
}

.conversion-status[data-tone="error"] {
  border-color: rgba(157, 67, 67, 0.26);
  color: #843737;
  background: rgba(157, 67, 67, 0.1);
}

.assistant-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.assistant-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.assistant-consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-replies {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-replies button {
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(11, 29, 51, 0.14);
  border-radius: 6px;
  color: var(--navy);
  background: var(--warm);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.quick-replies button:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 162, 75, 0.7);
}

.quick-replies .choice-chip {
  position: relative;
  padding-left: 30px;
}

.quick-replies .choice-chip::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(11, 29, 51, 0.32);
  border-radius: 3px;
  transform: translateY(-50%);
  background: var(--white);
}

.quick-replies .choice-chip.is-selected {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.quick-replies .choice-chip.is-selected::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--navy);
}

.quick-replies .choice-confirm {
  color: var(--navy);
  border-color: rgba(200, 162, 75, 0.6);
  background: rgba(200, 162, 75, 0.22);
}

.assistant-input textarea {
  width: 100%;
  resize: none;
  border: 1px solid rgba(11, 29, 51, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--text);
  font: inherit;
  background: var(--warm);
}

.assistant-input textarea:focus {
  outline: 2px solid rgba(200, 162, 75, 0.34);
  border-color: rgba(200, 162, 75, 0.86);
  background: var(--white);
}

@media (max-width: 1100px) and (min-width: 981px) {
  .site-nav a,
  .nav-link {
    font-size: 13px;
    min-height: 34px;
    padding: 6px 9px;
  }
  .nav-link::after {
    margin-left: 5px;
    border-left-width: 3px;
    border-right-width: 3px;
    border-top-width: 4px;
  }
  .brand {
    width: min(220px, 48vw);
    height: 44px;
  }
  .site-header {
    gap: 12px;
    min-height: 66px;
    padding: 10px clamp(14px, 3vw, 32px);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    border-bottom: 1px solid rgba(11, 29, 51, 0.1);
    background: var(--warm);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-link {
    justify-content: flex-start;
    min-height: 44px;
    width: 100%;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .nav-group {
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 4px 0 6px 12px;
    border: 0;
    border-left: 1px solid rgba(200, 162, 75, 0.5);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .submenu::before {
    content: none;
  }

  .nav-group.is-open .submenu {
    display: block;
  }

  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu {
    transform: none;
  }

  .submenu a {
    min-height: 38px;
    padding: 8px 12px;
    color: var(--muted);
    white-space: normal;
  }

  .reports-heading,
  .proof-heading {
    display: grid;
    gap: 18px;
  }

  .reports-heading,
  .proof-heading {
    align-items: start;
  }

  .section-action {
    width: 100%;
  }

  .reports-title-nowrap {
    white-space: normal;
  }

  .social-news-head {
    align-items: start;
    flex-direction: column;
  }

  .social .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .trust-grid,
  .entry-grid,
  .methodology-layout,
  .about-company-layout,
  .about-principles,
  .conversion-steps,
  .conversion-service-grid,
  .question-grid,
  .service-layout,
  .split-layout,
  .split-layout.reverse,
  .deliverable-grid,
  .report-grid,
  .fit-grid,
  .partner-wall,
  .activity-grid,
  .team-layout,
  .founder-grid,
  .advisor-grid,
  .meeting-kit-layout,
  .kit-grid,
  .proof-layout,
  .trust-summary-grid,
  .timeline,
  .faq-layout,
  .social-layout {
    grid-template-columns: 1fr;
  }

  .service-layout,
  .split-layout,
  .split-layout.reverse,
  .faq-layout,
  .social-layout,
  .team-layout,
  .meeting-kit-layout,
  .inline-cta-inner {
    gap: 34px;
  }

  .activity-grid .activity-large {
    grid-row: auto;
    min-height: 320px;
  }

  .activity-grid figure {
    min-height: 320px;
  }

  .about-narrative {
    padding: 22px;
  }

  .inline-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .module-list {
    grid-template-columns: 1fr;
  }

  .module-list article:first-child {
    grid-column: auto;
  }

  .timeline li,
  .conversion-steps article,
  .conversion-service-grid article,
  .methodology-system article,
  .question-grid article,
  .deliverable-grid article,
  .report-card,
  .partner-wall article,
  .advisor-grid article,
  .kit-grid article,
  .trust-grid article,
  .trust-summary-grid article {
    min-height: auto;
  }

  .methodology-intro,
  .scroll-story-intro {
    position: static;
  }

  .proof-testimonial {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .proof-testimonial-copy {
    justify-content: flex-start;
  }

  .proof-testimonial-visual img {
    min-height: 220px;
  }

  .methodology-system article {
    padding: 24px 24px 24px 82px;
  }
}


/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress div {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 80ms linear;
}

/* ===== Floating Quick Actions ===== */
@media (max-width: 640px) {
  .quick-actions {
    right: 10px;
    bottom: 10px;
    gap: 7px;
  }

  .quick-action {
    width: 50px;
    min-height: 50px;
    padding: 0;
    gap: 0;
    border-radius: 999px;
    font-size: 0;
    box-shadow: 0 12px 28px rgba(11, 29, 51, 0.2);
  }

  .assistant-action span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .quick-action svg {
    width: 20px;
    height: 20px;
  }

  .quick-actions.is-hidden-over-contact,
  .quick-actions.is-hidden-over-footer {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
}

/* ===== Active Nav Link ===== */
.site-nav a.is-active,
.site-nav .nav-link.is-active {
  color: var(--gold);
  background: rgba(200, 162, 75, 0.10);
}

.person-photo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 38px;
  font-weight: 850;
}


/* ===== 3-Year Vision Row ===== */
.vision-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 48px;
}

.vision-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  min-height: 182px;
  transition: transform 160ms ease;
}

.vision-card:hover {
  transform: translateY(-2px);
}

.vision-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.vision-card h3 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.25;
}

.vision-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 12px;
}

.year-1 {
  background: rgba(200, 162, 75, 0.10);
  border-color: rgba(200, 162, 75, 0.28);
}

.year-2 {
  background: rgba(255, 255, 255, 0.06);
}

.year-3 {
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Service Spectrum / Module Grid ===== */
.product-system {
  margin-top: 42px;
}

.tier-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.tier-label::before,
.tier-label::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.tier-label span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-2 span {
  color: rgba(200, 162, 75, 0.5);
}

.tier-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

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

.tier-cards.tier2 {
  grid-template-columns: minmax(0, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card.flagship {
  border: 2px solid rgba(200, 162, 75, 0.3);
  background: linear-gradient(135deg, rgba(200, 162, 75, 0.08), rgba(200, 162, 75, 0.02));
}

.product-card.flagship:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.product-card.tier2 {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.product-card.tier2:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 75, 0.4);
}

.pc-badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #1a1a1a;
  background: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.product-card h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.product-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  margin: 14px 0 0;
  flex: 1;
}

.pc-meta {
  margin-top: 18px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
}

.product-card.flagship .pc-meta {
  border-color: rgba(200, 162, 75, 0.2);
}

.pc-cta {
  align-self: flex-start;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 140ms ease;
}

.pc-cta:hover {
  background: #d5b45f;
}

.tier-note {
  margin-top: 34px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.tier-note p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

.tier-note p:last-child {
  margin-bottom: 0;
}

.tier-note strong {
  color: rgba(255, 255, 255, 0.65);
}

.service-band .section-heading p {
  color: rgba(255, 255, 255, 0.86);
}


.ecosystem-simple {
  max-width: 720px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.ecosystem-simple p {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.5;
}

.eco-note {
  color: rgba(255,255,255,0.4) !important;
  font-size: 12px !important;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Secondary Service Pages ===== */
.service-page {
  background: var(--warm);
}

.service-page .site-nav a.is-active,
.service-page .nav-link.is-active {
  color: var(--navy);
  background: rgba(200, 162, 75, 0.16);
}

.service-hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.service-hero-bg,
.service-hero-overlay {
  position: absolute;
  inset: 0;
}

.service-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 23, 39, 0.94) 0%, rgba(16, 36, 58, 0.8) 45%, rgba(16, 36, 58, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 23, 39, 0.06) 0%, rgba(7, 23, 39, 0.42) 100%);
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 11vw, 136px) 0 clamp(62px, 8vw, 96px);
}

.service-hero-copy {
  max-width: min(920px, 100%);
}

.service-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 6.2vw, 78px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.service-hero-lead {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 850;
}

.service-hero-text {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.service-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease;
}

.service-secondary-link:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.service-hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 23, 39, 0.62);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-hero-panel span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hero-panel strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.service-hero-panel dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.service-hero-panel div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-hero-panel dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
}

.service-hero-panel dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.service-section {
  scroll-margin-top: 92px;
  padding: clamp(54px, 7vw, 88px) 0;
}

.service-section-heading {
  max-width: 100%;
  margin-bottom: 34px;
}

.service-section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.service-overview,
.service-deliverables,
.service-faq {
  background: var(--white);
}

.service-fit,
.service-addons {
  background: var(--warm);
}

.service-method,
.service-process {
  background: var(--stone);
}

.service-versions,
.service-boundary {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.service-versions h2,
.service-versions h3,
.service-boundary h2,
.service-boundary h3 {
  color: var(--white);
}

.service-versions .service-section-heading p:not(.eyebrow),
.service-boundary .service-section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-proof-grid,
.service-module-grid,
.service-card-grid,
.boundary-grid {
  display: grid;
  gap: 16px;
}

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

.service-proof-grid article,
.service-module-grid article,
.service-card-grid article,
.boundary-grid article,
.version-card,
.execution-note {
  border-radius: 8px;
}

.service-proof-grid article,
.service-module-grid article,
.service-card-grid article {
  border: 1px solid var(--line);
  background: var(--warm);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.06);
}

.service-proof-grid article {
  min-height: 230px;
  padding: 26px;
}

.service-proof-grid span,
.service-module-grid span,
.service-timeline span,
.version-card > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-proof-grid span {
  font-size: 28px;
}

.service-proof-grid p,
.service-module-grid p,
.service-card-grid p,
.service-timeline p {
  color: var(--muted);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.service-split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

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

.service-check-columns article {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.05);
}

.service-check-columns article:first-child {
  border-color: rgba(62, 107, 86, 0.26);
  background: rgba(62, 107, 86, 0.08);
}

.service-check-columns article:last-child {
  border-color: rgba(155, 64, 56, 0.22);
  background: rgba(155, 64, 56, 0.07);
}

.service-check-columns li,
.boundary-grid li {
  color: var(--muted);
}

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

.service-module-grid article {
  min-height: 254px;
  padding: 24px;
}

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

.version-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.version-card.featured-version {
  border: 2px solid rgba(200, 162, 75, 0.72);
  background: linear-gradient(135deg, rgba(200, 162, 75, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.version-card p,
.version-card li {
  color: rgba(255, 255, 255, 0.72);
}

.version-price {
  margin: 18px 0 8px;
  color: var(--gold) !important;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
}

.version-card ul {
  margin-top: auto;
}

.execution-note {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.execution-note p {
  color: rgba(255, 255, 255, 0.7);
}

.service-side-image img {
  aspect-ratio: 16 / 10;
}

.service-list {
  margin-top: 24px;
  padding: 26px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.service-list li {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

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

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

.service-card-grid article {
  min-height: 218px;
  padding: 24px;
}

.service-insight-grid article {
  min-height: 238px;
}

.service-insight-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.service-insight-grid h3 a:hover {
  color: var(--green);
}

.service-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-timeline li {
  min-height: 242px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.05);
}

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

.boundary-grid article {
  min-height: 350px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.boundary-grid article:last-child {
  border-color: rgba(200, 162, 75, 0.34);
  background: rgba(200, 162, 75, 0.08);
}

.boundary-grid li {
  color: rgba(255, 255, 255, 0.72);
}

.service-cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.95), rgba(16, 36, 58, 0.82)),
    url("assets/founder-wangli-consulting.jpg") center / cover;
}

.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 7vw, 84px) 0;
}

.service-cta-inner h2 {
  max-width: 100%;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
}

.service-cta-inner p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

@media (max-width: 900px) {
  .tier-cards.flagship {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-carousel {
    height: calc(100svh - 70px);
    min-height: 560px;
    max-height: 760px;
  }

  .slide-content {
    left: 7%;
    right: 7%;
    bottom: 15%;
    max-width: none;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    left: 7%;
    right: auto;
    bottom: 6%;
  }

  .process-grid,
  .conversion-steps,
  .conversion-service-grid,
  .news-grid,
  .entry-grid,
  .vision-row,
  .founder-layout,
  .advisor-mini-grid,
  .simulation-stats,
  .trust-summary-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 14px;
  }

  .proc-card {
    min-width: 0;
  }

  .proc-steps li {
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .founder-card {
    max-width: 520px;
  }

  .contact-box {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    justify-content: flex-start;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

  .assistant-body {
    grid-template-columns: 1fr;
  }

  .assistant-side {
    order: -1;
    display: block;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    border-left: 0;
    background: var(--white);
  }

  .assistant-chat {
    padding: 12px 14px;
  }

  .assistant-direct-contact {
    gap: 5px;
    margin-top: 0;
    padding: 8px 10px;
  }

  .assistant-direct-contact strong {
    font-size: 15px;
  }

  .assistant-qr-grid {
    gap: 8px;
  }

  .assistant-qr-grid figure {
    gap: 3px;
    padding: 4px;
  }

  .assistant-qr-grid img {
    width: 58px;
    height: 58px;
  }

  .assistant-qr-grid figcaption {
    font-size: 10px;
  }

  .assistant-direct-contact a {
    display: none;
  }

  .service-hero {
    min-height: auto;
  }

  .service-hero-inner,
  .service-split,
  .service-split.reverse,
  .service-proof-grid,
  .service-module-grid,
  .service-version-grid,
  .service-card-grid,
  .service-timeline,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-inner {
    align-items: start;
    padding-top: 86px;
  }

  .service-hero-panel,
  .founder-card {
    max-width: 520px;
  }

  .service-version-grid,
  .service-card-grid,
  .service-timeline {
    gap: 14px;
  }

  .version-card,
  .boundary-grid article,
  .service-check-columns article {
    min-height: 0;
  }

  .service-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-carousel {
    height: calc(100svh - 110px);
    min-height: 560px;
    max-height: 680px;
  }

  .carousel-slide[data-slide="0"] .slide-bg {
    object-position: 88% center;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 15px;
  }

  .slide-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .slide-cta {
    width: 100%;
  }

  .conversion-boundary {
    flex-direction: column;
  }

  .activity-grid figure,
  .activity-grid .activity-large {
    min-height: 280px;
  }

  .founder-card > div,
  .simulation-body {
    padding: 20px;
  }

  .assistant-modal {
    padding: 10px;
  }

  .assistant-panel {
    max-height: calc(100svh - 20px);
  }

  .assistant-input {
    grid-template-columns: 1fr;
  }

  .assistant-input .button {
    width: 100%;
  }

  .quick-replies {
    max-height: 164px;
    overflow-y: auto;
  }

  .service-hero {
    min-height: 720px;
  }

  .service-hero-bg {
    object-position: 62% center;
  }

  .service-hero h1 {
    font-size: 40px;
  }

  .service-hero-lead {
    font-size: 24px;
  }

  .service-hero-text,
  .service-section-heading p:not(.eyebrow),
  .service-cta-inner p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .service-hero-actions .button,
  .service-secondary-link,
  .service-cta-inner .button {
    width: 100%;
  }

  .service-check-columns,
  .service-list ul {
    grid-template-columns: 1fr;
  }

  .service-proof-grid article,
  .service-module-grid article,
  .service-card-grid article,
  .version-card,
  .boundary-grid article,
  .service-list {
    padding: 22px;
  }
}

/* ===== Secondary Service Page Polish ===== */
.service-page .section-inner {
  width: min(1120px, calc(100% - 44px));
}

.service-page .service-hero {
  min-height: clamp(620px, 86svh, 840px);
}

.service-page .service-hero-overlay {
  background:
    linear-gradient(105deg, rgba(7, 23, 39, 0.92) 0%, rgba(16, 36, 58, 0.74) 48%, rgba(16, 36, 58, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 23, 39, 0.04) 0%, rgba(7, 23, 39, 0.44) 100%);
}

.service-page .service-hero-inner {
  align-items: center;
  gap: clamp(28px, 4.4vw, 58px);
  padding: clamp(72px, 9vw, 112px) 0 clamp(54px, 6vw, 80px);
}

.service-page .service-hero h1 {
  max-width: 100%;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
}

.service-page .service-hero-lead {
  margin-top: 18px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.28;
}

.service-page .service-hero-text {
  max-width: 650px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.68;
}

.service-page .service-hero-actions {
  gap: 12px;
  margin-top: 26px;
}

.service-page .service-hero-panel {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(7, 23, 39, 0.54);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.service-page .service-hero-panel strong {
  font-size: 20px;
}

.service-page .service-hero-panel dl {
  gap: 12px;
  margin-top: 18px;
}

.service-page .service-section {
  padding: clamp(48px, 6vw, 76px) 0;
}

.service-page .service-section-heading {
  max-width: 100%;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.service-page h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.13;
}

.service-page .service-section-heading p:not(.eyebrow),
.service-page .lead {
  font-size: 17px;
  line-height: 1.72;
}

.service-page .service-proof-grid,
.service-page .service-module-grid,
.service-page .service-card-grid,
.service-page .service-version-grid,
.service-page .service-timeline,
.service-page .boundary-grid,
.service-page .service-check-columns {
  gap: 15px;
}

.service-page .service-proof-grid article,
.service-page .service-module-grid article,
.service-page .service-card-grid article,
.service-page .service-check-columns article,
.service-page .service-timeline li {
  border-color: rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(11, 29, 51, 0.04);
}

.service-page .service-proof-grid article,
.service-page .service-module-grid article,
.service-page .service-card-grid article,
.service-page .service-check-columns article,
.service-page .service-timeline li,
.service-page .version-card,
.service-page .boundary-grid article,
.content-page .insight-grid article,
.content-page .use-grid article,
.content-page .case-question-grid article,
.content-page .case-work-grid article,
.content-page .related-grid article,
.content-page .report-card-full,
.content-page .content-note,
.content-page .case-summary-box,
.content-page .policy-block {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: -2px;
}

.service-page .service-proof-grid article {
  min-height: 206px;
  padding: 24px;
}

.service-page .service-proof-grid span {
  margin-bottom: 22px;
  font-size: 24px;
}

.service-page .service-module-grid article {
  min-height: 218px;
  padding: 22px;
}

.service-page .service-card-grid article {
  min-height: 184px;
  padding: 22px;
}

.service-page .service-timeline li {
  min-height: 190px;
  padding: 22px;
}

.service-page .service-check-columns article {
  min-height: 300px;
}

.service-page .version-card {
  min-height: 390px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.service-page .version-card.featured-version {
  border: 1px solid rgba(200, 169, 106, 0.82);
  background: linear-gradient(180deg, rgba(200, 169, 106, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
}

.service-page .version-price {
  margin: 16px 0 10px;
  font-size: 28px;
}

.service-page .execution-note {
  margin-top: 14px;
  padding: 20px 22px;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.service-page .service-side-image {
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(11, 29, 51, 0.09);
}

.service-page .service-side-image img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
}

.service-business-visit #deliverables .service-side-image img {
  height: auto;
}

.service-market-entry .service-side-image img {
  object-fit: contain;
  background: var(--navy);
}

.service-page .service-list {
  margin-top: 22px;
  padding: 24px;
  border-left-width: 3px;
  box-shadow: 0 16px 36px rgba(11, 29, 51, 0.09);
}

.service-page .boundary-grid article {
  min-height: 300px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.11);
}

.service-page .boundary-grid article:last-child {
  border-color: rgba(200, 169, 106, 0.28);
  background: rgba(200, 169, 106, 0.075);
}

.service-page .service-cta-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.95), rgba(16, 36, 58, 0.84)),
    url("assets/founder-wangli-consulting.jpg") center / cover;
}

.service-market-entry .service-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.82)),
    url("assets/hero-home-boardroom-logo-20260621.jpg") center / cover;
}

.service-business-visit .service-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.95), rgba(16, 36, 58, 0.82)),
    url("assets/market-visit.jpg") center / cover;
}

.service-b2b-events .service-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.95), rgba(16, 36, 58, 0.82)),
    url("assets/trade-event.jpg") center / cover;
}

.service-brand-growth .service-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.84)),
    url("assets/office-workspace.jpg") center / cover;
}

.service-page .service-cta-inner {
  padding: clamp(46px, 6vw, 72px) 0;
}

.service-page .service-cta-inner h2 {
  max-width: 100%;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.16;
}

.service-page .service-cta-inner p:not(.eyebrow) {
  max-width: 660px;
  font-size: 16px;
  line-height: 1.7;
}

.service-page .site-footer {
  padding: 42px clamp(22px, 5vw, 56px) 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page .footer-brand img {
  width: 148px;
}

@media (max-width: 980px) {
  .service-page .service-hero {
    min-height: auto;
  }

  .service-page .service-hero-inner {
    padding: 70px 0 56px;
  }

  .service-page .service-check-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-page .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .service-page .service-hero {
    min-height: auto;
  }

  .service-page .service-hero-inner {
    padding: 54px 0 44px;
  }

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

  .service-page .service-hero-lead {
    font-size: 22px;
  }

  .service-page .service-hero-text,
  .service-page .service-section-heading p:not(.eyebrow),
  .service-page .lead {
    font-size: 15px;
  }

  .service-page .site-footer {
    padding: 32px 20px 22px;
  }

  .service-page .footer-brand img {
    width: 132px;
  }

  .service-page .service-section {
    padding: 48px 0;
  }

  .service-page .service-section-heading {
    margin-bottom: 22px;
  }

  .service-page .service-proof-grid article,
  .service-page .service-module-grid article,
  .service-page .service-card-grid article,
  .service-page .version-card,
  .service-page .boundary-grid article,
  .service-page .service-list,
  .service-page .service-timeline li {
    padding: 20px;
  }

  .service-page .version-card,
  .service-page .service-proof-grid article,
  .service-page .service-module-grid article,
  .service-page .service-card-grid article,
  .service-page .service-timeline li,
  .service-page .boundary-grid article {
    min-height: 0;
  }

  .service-page .service-cta-inner {
    padding: 44px 0 48px;
  }

.service-page .service-cta-inner h2 {
  font-size: 25px;
  }
}

/* ===== Content Secondary Pages ===== */
.content-page {
  color: var(--ink);
  background: var(--warm);
}

.content-page .section-inner {
  width: min(1120px, calc(100% - 44px));
}

.content-hero {
  position: relative;
  min-height: clamp(560px, 76svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.content-hero-bg,
.content-hero-overlay {
  position: absolute;
  inset: 0;
}

.content-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 23, 39, 0.94) 0%, rgba(16, 36, 58, 0.78) 48%, rgba(16, 36, 58, 0.26) 100%),
    linear-gradient(180deg, rgba(7, 23, 39, 0.04) 0%, rgba(7, 23, 39, 0.46) 100%);
}

.content-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 118px) 0 clamp(54px, 7vw, 84px);
}

.content-hero-copy {
  max-width: min(920px, 100%);
}

.content-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.content-hero-title-nowrap {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.content-hero-lead {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.32;
  font-weight: 850;
}

.content-hero-text {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.content-hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(7, 23, 39, 0.58);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.content-hero-panel span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-hero-panel strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  line-height: 1.38;
}

.content-hero-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.content-hero-panel div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.content-hero-panel dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 850;
}

.content-hero-panel dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.content-section {
  scroll-margin-top: 92px;
  padding: clamp(48px, 6vw, 78px) 0;
}

.content-section.light {
  background: var(--white);
}

.content-section.stone {
  background: var(--stone);
}

.content-section.dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.content-section.dark h2,
.content-section.dark h3,
.content-section.dark h4 {
  color: var(--white);
}

.content-heading {
  max-width: 100%;
  margin-bottom: 30px;
}

.content-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  max-width: 820px;
}

.content-section.dark .content-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.insight-grid,
.use-grid,
.case-question-grid,
.case-work-grid,
.related-grid {
  display: grid;
  gap: 14px;
}

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

.use-grid,
.case-work-grid,
.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.insight-grid article,
.use-grid article,
.case-question-grid article,
.case-work-grid article,
.related-grid article,
.report-card-full,
.content-note,
.case-summary-box {
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.045);
}

.insight-grid article,
.use-grid article,
.case-question-grid article,
.case-work-grid article,
.related-grid article {
  min-height: 188px;
  padding: 22px;
}

.insight-grid span,
.use-grid span,
.report-group-title span,
.case-question-grid span,
.case-work-grid span,
.validation-timeline span,
.related-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-grid p,
.use-grid p,
.case-question-grid p,
.case-work-grid p,
.related-grid p,
.report-card-full p,
.case-summary-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.report-library {
  display: grid;
  gap: 34px;
}

.report-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.report-group-title h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.report-group-title p {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
}

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

.report-card-full {
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.report-card-full.featured {
  border-color: rgba(200, 169, 106, 0.5);
  background: rgba(200, 169, 106, 0.08);
}

.report-card-full:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 106, 0.46);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(11, 29, 51, 0.08);
}

.report-card-full h4 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.report-card-full small {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.report-card-full a,
.related-grid a,
.content-inline-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--navy);
  background: rgba(200, 162, 75, 0.13);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.report-card-full a:hover,
.related-grid a:hover,
.content-inline-link:hover {
  color: var(--gold);
  background: rgba(200, 162, 75, 0.2);
  transform: translateY(-1px);
}

.content-note {
  padding: 24px;
  border-left: 4px solid var(--gold);
}

.content-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.case-hero .content-hero-bg {
  object-position: center;
}

.case-overview-layout,
.case-value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.case-image-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.1);
}

.case-image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-summary-box {
  padding: 24px;
  border-left: 4px solid var(--gold);
}

.case-summary-box strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
}

.case-summary-box p {
  margin-top: 14px;
}

.scenario-table {
  display: grid;
  gap: 10px;
}

.scenario-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.62fr) minmax(0, 1.1fr);
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.scenario-row strong {
  color: var(--white);
}

.scenario-row span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.scenario-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.validation-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.validation-timeline li {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.045);
}

.case-boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-boundary-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.case-boundary-list li {
  color: rgba(255, 255, 255, 0.72);
}

.about-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-method-grid article {
  min-height: 250px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.about-method-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(200, 162, 75, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.about-method-grid h3 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
}

.about-method-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.about-method-boundary {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(200, 162, 75, 0.36);
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.035);
}

.about-method-boundary strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.5;
}

.about-method-boundary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.about-page .content-hero-bg {
  object-position: 56% center;
}

.about-company-layout,
.about-founder-layout,
.about-launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.about-principle-grid,
.about-advisor-grid,
.about-vision-grid,
.about-resource-grid,
.about-launch-list {
  display: grid;
  gap: 14px;
}

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

.about-principle-grid article,
.about-advisor-grid article,
.about-vision-grid article,
.about-resource-grid article,
.about-launch-list article {
  padding: 22px;
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.045);
}

.about-principle-grid span,
.about-advisor-grid span,
.about-vision-grid span,
.about-resource-grid span,
.about-launch-list span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-principle-grid p,
.about-advisor-grid p,
.about-vision-grid p,
.about-resource-grid p,
.about-launch-list p,
.about-founder-card p,
.about-method-grid p,
.about-footnote {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.about-principle-grid .about-principle-dark {
  color: var(--white);
  background: var(--navy);
}

.about-principle-grid .about-principle-dark h3,
.about-principle-grid .about-principle-dark p {
  color: var(--white);
}

.about-relationship-section {
  padding: clamp(66px, 8vw, 96px) 0;
  background:
    linear-gradient(180deg, rgba(248, 246, 240, 0.96), rgba(255, 255, 255, 0.98)),
    var(--sand);
}

.about-relationship-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.about-relationship-layout .content-heading {
  max-width: 420px;
}

.about-relationship-layout .service-secondary-link {
  grid-column: 2;
  width: fit-content;
  border-color: rgba(16, 36, 58, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.about-relationship-layout .service-secondary-link:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(200, 169, 106, 0.18);
}

.about-relationship-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.07);
}

.about-relationship-band article {
  min-height: 214px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid rgba(31, 41, 51, 0.08);
}

.about-relationship-band article:last-child {
  border-right: 0;
  background:
    linear-gradient(135deg, rgba(200, 169, 106, 0.13), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.about-relationship-band span,
.about-founder-proof span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-relationship-band h3,
.about-founder-proof h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.28;
}

.about-relationship-band p,
.about-founder-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.68;
}

.about-founder-layout {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: start;
}

.about-founder-copy .content-heading h2 {
  font-size: clamp(36px, 4vw, 46px);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.about-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(200, 169, 106, 0.34);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(200, 169, 106, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.about-founder-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 41, 51, 0.1);
}

.about-founder-proof article {
  padding-right: 18px;
}

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

.about-founder-message {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(8px, 2vw, 18px);
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.055);
}

.about-founder-message p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.82;
}

.about-founder-message p + p {
  padding-left: clamp(18px, 2vw, 26px);
  border-left: 1px solid rgba(31, 41, 51, 0.09);
}

.about-founder-card {
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.1);
}

.about-founder-card img {
  width: 100%;
  height: clamp(460px, 46vw, 620px);
  object-fit: cover;
  object-position: center top;
}

.about-method-grid article p,
.content-section.dark .about-method-grid p {
  color: rgba(255, 255, 255, 0.72);
}

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

.about-scene-grid figure {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.08);
}

.about-scene-grid .about-scene-large {
  grid-column: span 2;
  grid-row: span 2;
}

.about-scene-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-scene-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(180deg, rgba(7, 23, 39, 0), rgba(7, 23, 39, 0.86));
}

.about-scene-grid figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-footnote {
  margin-top: 18px;
}

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

.about-boundary-note {
  margin-top: 18px;
}

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

.content-section.dark .about-launch-list article {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}

.content-section.dark .about-launch-list p {
  color: rgba(255, 255, 255, 0.72);
}

.policy-page .content-hero-bg {
  object-position: center;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.27fr) minmax(0, 0.73fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.05);
}

.policy-toc span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-toc a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  color: var(--navy);
}

.policy-blocks {
  display: grid;
  gap: 16px;
}

.policy-block {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 29, 51, 0.045);
}

.policy-block h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.policy-block ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.policy-block p:last-child,
.policy-block ul:last-child {
  margin-bottom: 0;
}

.policy-meta-card strong {
  display: block;
  margin-bottom: 20px;
}

.content-cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.88)),
    url("assets/founder-wangli-consulting.jpg") center / cover;
}

.reports-page .content-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.86)),
    url("assets/hero-home-boardroom-logo-20260621.jpg") center / cover;
}

.case-page .content-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.86)),
    url("assets/case-two-wheeler-charging-provider.jpg") center / cover;
}

.about-page .content-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.86)),
    url("assets/roundtable.jpg") center / cover;
}

.policy-page:not(.legal-page) .content-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.86)),
    url("assets/office-workspace.jpg") center / cover;
}

.legal-page .content-cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 39, 0.96), rgba(16, 36, 58, 0.86)),
    url("assets/reception.jpg") center / cover;
}

.content-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 6vw, 72px) 0;
}

.content-cta-inner h2 {
  max-width: 100%;
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.16;
}

.content-cta-inner p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .content-hero-inner,
  .case-overview-layout,
  .case-value-layout,
  .about-company-layout,
  .about-founder-layout,
  .about-launch-layout,
  .about-relationship-layout,
  .policy-layout,
  .insight-grid,
  .use-grid,
  .case-question-grid,
  .case-work-grid,
  .related-grid,
  .report-grid-full,
  .validation-timeline,
  .case-boundary-list,
  .about-advisor-grid,
  .about-vision-grid,
  .about-resource-grid,
  .about-launch-list {
    grid-template-columns: 1fr;
  }

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

  .content-hero {
    min-height: auto;
  }

  .content-hero-inner {
    padding: 76px 0 58px;
  }

  .content-hero-panel {
    max-width: 560px;
  }

  .policy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-toc span {
    grid-column: 1 / -1;
  }

  .content-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-relationship-layout .service-secondary-link {
    grid-column: auto;
  }

  .about-founder-message {
    grid-template-columns: 1fr;
  }

  .about-founder-message p + p {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(31, 41, 51, 0.09);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .content-page .section-inner,
  .content-hero-inner {
    width: min(100% - 32px, 1120px);
  }

  .content-hero-inner {
    padding: 56px 0 46px;
  }

  .content-hero h1 {
    font-size: 36px;
  }

  .content-hero-lead {
    font-size: 22px;
  }

  .content-hero-text,
  .content-heading p:not(.eyebrow),
  .content-cta-inner p:not(.eyebrow) {
    font-size: 15px;
  }

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

  .content-hero-actions .button,
  .content-hero-actions .service-secondary-link,
  .content-cta-inner .button {
    width: 100%;
  }

  .content-section {
    padding: 50px 0;
  }

  .about-relationship-band,
  .about-founder-proof {
    grid-template-columns: 1fr;
  }

  .about-relationship-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  }

  .about-relationship-band article:last-child {
    border-bottom: 0;
  }

  .about-relationship-layout .service-secondary-link {
    width: 100%;
  }

  .content-hero-panel dl {
    grid-template-columns: 1fr;
  }

  .report-group-title {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .report-card-full,
  .insight-grid article,
  .use-grid article,
  .case-question-grid article,
  .case-work-grid article,
  .related-grid article,
  .validation-timeline li,
  .case-boundary-list article,
  .about-principle-grid article,
  .about-advisor-grid article,
  .about-resource-grid article,
  .about-launch-list article,
  .content-note,
  .case-summary-box {
    padding: 20px;
    min-height: 0;
  }

  .about-principle-grid,
  .about-scene-grid {
    grid-template-columns: 1fr;
  }

  .about-scene-grid .about-scene-large {
    grid-column: auto;
    grid-row: auto;
  }

  .about-scene-grid figure {
    min-height: 280px;
  }

  .about-founder-card img {
    height: min(430px, 112vw);
    object-position: center 12%;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-block {
    padding: 20px;
  }

  .policy-block p,
  .policy-block li {
    font-size: 14px;
  }
}

/* ===== Yundinh Vietnam Insights ===== */
.insights-hub-page main,
.insight-collection-page main,
.insight-article-page main {
  background: var(--warm);
}

.insights-hero,
.insights-topics,
.insights-library,
.insight-collection-hero,
.insight-collection-library,
.insight-article,
.insight-contact {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.insights-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 520px;
  color: var(--white);
  background: var(--navy);
}

.insights-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(28px, 5vw, 68px);
}

.insights-hero h1,
.insight-collection-hero h1,
.insight-article-hero h1 {
  margin: 10px 0 22px;
  color: inherit;
  letter-spacing: 0;
}

.insights-hero h1 {
  max-width: 720px;
  font-size: 52px;
  line-height: 1.12;
}

.insights-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.86;
}

.insights-hero-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

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

.insights-topics,
.insights-library,
.insight-collection-library {
  padding: 72px 0;
}

.insights-library,
.insight-collection-library {
  border-top: 1px solid var(--line);
}

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

.insights-topic-links > a,
.insights-topic-pending {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.insights-topic-links > a {
  transition: color 160ms ease, background 160ms ease;
}

.insights-topic-links > a:hover {
  color: var(--navy);
  background: var(--soft-gold);
}

.insights-topic-links strong {
  color: var(--navy);
  font-size: 18px;
}

.insights-topic-links span span,
.insights-topic-links > a span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.insights-topic-pending {
  opacity: 0.68;
}

.insights-controls {
  display: grid;
  gap: 18px;
  margin: 30px 0 18px;
}

.insights-search {
  display: grid;
  gap: 8px;
  max-width: 680px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.insights-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(16, 36, 58, 0.22);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.insights-search input:focus {
  outline: 3px solid rgba(201, 169, 106, 0.28);
  border-color: var(--gold);
}

.insights-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insights-filters button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 36, 58, 0.18);
  border-radius: 6px;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.insights-filters button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.insights-result-count,
.insights-empty {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.insight-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(16, 36, 58, 0.06);
}

.insight-card-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--stone);
}

.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.insight-card:hover .insight-card-media img {
  transform: scale(1.025);
}

.insight-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.insight-card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.insight-card-labels span {
  padding: 4px 7px;
  border-radius: 4px;
  color: var(--navy);
  background: var(--soft-blue);
  font-size: 11px;
  font-weight: 800;
}

.insight-card-labels span + span {
  color: #634e1f;
  background: var(--soft-gold);
}

.insight-card-labels span:nth-child(3) {
  color: #3f4a58;
  background: #eef1f4;
}

.insight-card time {
  color: var(--muted);
  font-size: 12px;
}

.insight-card h2 {
  margin: 10px 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.42;
}

.insight-card h2 a:hover,
.insight-card-link:hover {
  color: var(--teal);
}

.insight-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.insight-card-link {
  margin-top: auto;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.insight-collection-hero {
  padding: 78px 0 62px;
  border-bottom: 1px solid var(--line);
}

.insight-collection-hero h1 {
  max-width: 1040px;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.18;
}

.insight-collection-hero > p {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.insight-collection-hero > strong {
  color: var(--teal);
  font-size: 14px;
}

.insight-article {
  padding: 56px 0 80px;
}

.insight-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.insight-article-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 52px clamp(28px, 5vw, 62px);
}

.insight-article-hero h1 {
  font-size: 46px;
  line-height: 1.18;
}

.insight-deck {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.8;
}

.insight-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.insight-labels a {
  padding: 6px 9px;
  border: 1px solid rgba(201, 169, 106, 0.52);
  border-radius: 4px;
  color: #f2dfaa;
  font-size: 12px;
  font-weight: 800;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 28px 0 0;
}

.insight-meta div {
  display: grid;
  gap: 3px;
}

.insight-meta dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.insight-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.insight-article-cover {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.insight-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 300px);
  justify-content: space-between;
  gap: 56px;
  padding: 64px 0;
}

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

.insight-answer {
  margin-bottom: 36px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  background: var(--soft-gold);
}

.insight-answer span,
.insight-sidebar-block > span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 850;
}

.insight-answer p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.insight-body {
  color: #27343f;
  font-size: 17px;
  line-height: 1.92;
}

.insight-body h2 {
  margin: 48px 0 18px;
  padding-top: 4px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.38;
}

.insight-body h3 {
  margin: 34px 0 14px;
  color: var(--navy-2);
  font-size: 21px;
}

.insight-body p,
.insight-body ul,
.insight-body ol,
.insight-body blockquote {
  margin: 0 0 20px;
}

.insight-body blockquote {
  padding: 18px 22px;
  border-left: 4px solid var(--teal);
  color: var(--navy);
  background: var(--soft-teal);
  font-size: 18px;
  font-weight: 700;
}

.insight-body hr {
  height: 1px;
  margin: 38px 0;
  border: 0;
  background: var(--line);
}

.insight-body a,
.insight-source a,
.insight-sidebar a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.insight-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.insight-body th,
.insight-body td {
  min-width: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.insight-source {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.insight-source h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.insight-evidence-mode {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 4px;
  color: #634e1f;
  background: var(--soft-gold);
  font-size: 12px;
  font-weight: 850;
}

.insight-source dl {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.insight-source dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
}

.insight-source dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.insight-source dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.insight-sidebar {
  align-self: start;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.insight-sidebar-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.insight-sidebar-block strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.insight-sidebar-block p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.insight-related-report,
.insight-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  color: var(--white);
  background: var(--navy);
}

.insight-related-report h2,
.insight-contact h2 {
  margin: 5px 0 8px;
  font-size: 25px;
  line-height: 1.32;
}

.insight-related-report p,
.insight-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.insight-related {
  padding: 64px 0;
}

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

.insight-related-item {
  min-width: 0;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--line);
}

.insight-related-item + .insight-related-item {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.insight-related-item span {
  color: var(--muted);
  font-size: 12px;
}

.insight-related-item h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 18px;
}

.insight-related-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.insight-contact {
  margin-top: 0;
  margin-bottom: 80px;
  background: var(--teal);
}

.insight-article-page .site-footer,
.insights-hub-page .site-footer,
.insight-collection-page .site-footer {
  margin-top: 0;
}

.news-card-link {
  color: inherit;
}

@media (max-width: 980px) {
  .insights-hero,
  .insight-article-hero {
    grid-template-columns: 1fr;
  }

  .insights-hero-media,
  .insight-article-cover {
    min-height: 360px;
    max-height: 480px;
  }

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

  .insight-article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .insight-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .insight-sidebar-block {
    padding-right: 22px;
  }
}

@media (max-width: 640px) {
  .insights-hero,
  .insights-topics,
  .insights-library,
  .insight-collection-hero,
  .insight-collection-library,
  .insight-article,
  .insight-contact {
    width: min(100% - 28px, var(--max));
  }

  .insights-hero {
    min-height: 0;
  }

  .insights-hero-copy {
    padding: 46px 22px;
  }

  .insights-hero h1,
  .insight-collection-hero h1,
  .insight-article-hero h1 {
    font-size: 34px;
  }

  .insights-hero p,
  .insight-collection-hero > p,
  .insight-deck {
    font-size: 16px;
  }

  .insights-hero-media,
  .insight-article-cover {
    min-height: 260px;
  }

  .insights-topics,
  .insights-library,
  .insight-collection-library {
    padding: 50px 0;
  }

  .insights-topic-links,
  .insights-grid,
  .insight-related-grid,
  .insight-sidebar {
    grid-template-columns: 1fr;
  }

  .insights-topic-links > a,
  .insights-topic-pending {
    min-height: 0;
    padding: 22px;
  }

  .insights-filters {
    flex-wrap: nowrap;
    padding-bottom: 6px;
    overflow-x: auto;
  }

  .insights-filters button {
    flex: 0 0 auto;
  }

  .insight-collection-hero {
    padding: 52px 0 42px;
  }

  .insight-article {
    padding: 28px 0 54px;
  }

  .insight-article-hero {
    min-height: 0;
  }

  .insight-article-hero-copy {
    padding: 36px 22px 42px;
  }

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

  .insight-article-layout {
    padding: 42px 0;
  }

  .insight-answer {
    padding: 18px;
  }

  .insight-answer p,
  .insight-body blockquote {
    font-size: 16px;
  }

  .insight-body {
    font-size: 16px;
    line-height: 1.86;
  }

  .insight-body h2 {
    margin-top: 38px;
    font-size: 24px;
  }

  .insight-sidebar-block + .insight-sidebar-block,
  .insight-related-item + .insight-related-item {
    padding-left: 0;
    border-left: 0;
  }

  .insight-related-report,
  .insight-contact {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .insight-related-report .button,
  .insight-contact .button {
    width: 100%;
  }

  .insight-related {
    padding: 50px 0;
  }

  .insight-related-item {
    padding: 20px 0;
  }

  .insight-contact {
    margin-bottom: 54px;
  }
}
