:root {
  --ink: #202020;
  --muted: #626262;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e6dfdc;
  --forest: #e30613;
  --forest-dark: #7b1016;
  --gold: #b58b58;
  --coral: #c9141d;
  --mist: #f7eeee;
  --shadow: 0 18px 50px rgba(123, 16, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans HK",
    "Noto Sans TC",
    "Microsoft JhengHei",
    "PingFang HK",
    "Heiti TC",
    Arial,
    sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

.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: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(123, 16, 22, 0.72);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 244, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #e30613, #8d1118);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  font-size: 0.76rem;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-width: 58px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  text-align: center;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a[aria-current="page"] {
  background: var(--mist);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 112px 6vw 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.46), rgba(18, 20, 24, 0.2) 44%, rgba(18, 20, 24, 0.04) 72%),
    linear-gradient(180deg, rgba(227, 6, 19, 0.08), rgba(123, 16, 22, 0.02)),
    url("./assets/hero-hk-boardroom-face-tuned.png") center / cover no-repeat;
}

.hero-content {
  width: min(720px, 100%);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 6px;
  font-size: 3.8rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-name {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
}

.hero-actions,
.contact-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--coral);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #a80f16;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.section-wrap {
  width: min(1120px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 88px 0;
}

.band {
  background: var(--surface);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.3rem;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.body-copy p + p,
.principle-list p + p {
  margin-top: 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 33, 28, 0.06);
}

.service-card p,
.method-list p,
.case-copy p,
.principle-list p,
.contact p {
  color: var(--muted);
}

.card-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--mist);
}

.tool-icon::before,
.training-icon::before,
.case-icon::before,
.rhythm-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--forest);
  border-radius: 5px;
}

.tool-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 9px;
  width: 16px;
  height: 10px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.training-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 14px;
  width: 18px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.case-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.rhythm-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  border-left-color: transparent;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-list li {
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.method-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--forest);
  font-weight: 800;
}

.case-section {
  padding-top: 94px;
  padding-bottom: 96px;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 42px;
  align-items: stretch;
  padding-left: 32px;
  border-left: 6px solid var(--forest);
}

.case-copy p + p {
  margin-top: 18px;
}

.case-facts {
  display: grid;
  gap: 14px;
  align-content: center;
}

.case-facts div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.case-facts strong,
.case-facts span {
  display: block;
}

.case-facts strong {
  font-size: 1.18rem;
  color: var(--forest-dark);
}

.case-facts span {
  margin-top: 4px;
  color: var(--muted);
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-list strong {
  color: var(--ink);
}

.contact {
  background: var(--forest-dark);
  color: #fff;
}

.contact .section-wrap {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-wrap {
  justify-content: space-between;
}

.contact-wrap > div {
  max-width: 720px;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact .section-kicker {
  color: #e1be70;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.about-hero {
  position: relative;
  padding: 108px 6vw 56px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, var(--paper));
  border-bottom: 1px solid var(--line);
}

.about-hero-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.about-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.about-hero p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px 34px;
  align-items: stretch;
}

.founder-heading {
  grid-column: 1 / -1;
  max-width: 720px;
}

.founder-heading .section-kicker {
  margin-bottom: 0;
}

.founder-profile {
  display: flex;
}

.founder-profile,
.resume-list {
  height: 100%;
}

.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 858 / 887;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.resume-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.resume-list article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 148px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.resume-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
}

.resume-list p,
.method-origin .section-heading p,
.origin-grid p,
.boundary-copy p,
.boundary-list span,
.about-close p {
  color: var(--muted);
}

.method-origin {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.origin-grid article {
  min-height: 236px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.origin-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 800;
}

.boundary-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.boundary-copy {
  padding-left: 32px;
  border-left: 6px solid var(--forest);
}

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

.boundary-list p {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.boundary-list strong {
  color: var(--forest-dark);
}

.boundary-list span {
  display: block;
}

.about-close {
  color: #fff;
  background:
    linear-gradient(90deg, #4d090d, #7b1016 56%, #5f0c11);
}

.about-close .section-wrap {
  padding-top: 74px;
  padding-bottom: 74px;
}

.about-close-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-close-wrap > div {
  max-width: 720px;
}

.about-close .section-kicker {
  color: #e1be70;
}

.about-close p {
  color: rgba(255, 255, 255, 0.76);
}

.case-detail-hero {
  padding-top: 104px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.case-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: end;
  padding-top: 72px;
  padding-bottom: 76px;
}

.case-detail-copy h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.13;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.case-detail-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.case-detail-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest-dark);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.case-proof-figure {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(23, 33, 28, 0.08);
}

.case-proof-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.case-context .section-wrap {
  padding-top: 76px;
  padding-bottom: 76px;
}

.case-context-title span {
  display: block;
}

.support-interface {
  padding-top: 94px;
  padding-bottom: 96px;
}

.interface-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  margin-bottom: 34px;
  align-items: end;
}

.case-detail-copy,
.interface-heading > *,
.dashboard-workspace,
.dashboard-topbar,
.support-dashboard,
.outcome-copy,
.outcome-list {
  min-width: 0;
}

.case-detail-copy,
.case-proof-figure,
.support-dashboard {
  max-width: 100%;
}

.interface-heading p:not(.section-kicker) {
  color: var(--muted);
}

.support-dashboard {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(123, 16, 22, 0.12);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: 18px 0;
  background: #4d090d;
}

.dashboard-logo,
.dashboard-sidebar span:not(.dashboard-logo) {
  display: block;
  border-radius: 8px;
}

.dashboard-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
}

.dashboard-sidebar span:not(.dashboard-logo) {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-workspace {
  min-width: 0;
  padding: 22px;
  background:
    linear-gradient(180deg, #fff, #fbfaf7 64%),
    var(--paper);
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-topbar strong,
.dashboard-topbar span {
  display: block;
}

.dashboard-topbar strong {
  font-size: 1.08rem;
}

.dashboard-topbar span,
.dashboard-topbar em,
.dashboard-metrics span,
.dashboard-metrics em,
.panel-header span,
.pipeline-row span,
.training-list span,
.case-desk span {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.dashboard-topbar em {
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--forest-dark);
  background: var(--mist);
  font-weight: 800;
}

.dashboard-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.dashboard-filter-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.kpi-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.kpi-card span,
.kpi-card em,
.chart-legend,
.chart-axis,
.ops-table,
.rank-list,
.heatmap-grid b {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.kpi-card strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--forest-dark);
  font-size: 1.72rem;
  line-height: 1;
}

.kpi-card svg {
  width: 100%;
  height: 36px;
  margin-top: 10px;
  overflow: visible;
}

.kpi-card polyline {
  fill: none;
  stroke: var(--forest);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kpi-card rect {
  fill: rgba(227, 6, 19, 0.72);
  rx: 3;
}

.analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.72fr);
  gap: 14px;
}

.chart-panel,
.table-panel {
  grid-column: 1;
}

.rank-panel,
.heat-panel {
  grid-column: 2;
}

.chart-panel {
  min-height: 322px;
}

.chart-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chart-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.chart-legend i {
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--forest);
}

.chart-legend span:nth-child(2) i {
  background: var(--gold);
}

.chart-legend span:nth-child(3) i {
  background: #7b1016;
}

.ops-chart {
  display: block;
  width: 100%;
  height: auto;
}

.grid-lines line {
  stroke: var(--line);
  stroke-width: 1;
}

.area-fill {
  fill: rgba(227, 6, 19, 0.08);
}

.line-main,
.line-sub,
.line-third {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-main {
  stroke: var(--forest);
}

.line-sub {
  stroke: var(--gold);
}

.line-third {
  stroke: var(--forest-dark);
  opacity: 0.72;
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  padding-left: 42px;
}

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

.rank-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.rank-list i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.rank-list strong {
  color: var(--forest-dark);
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
}

.ops-table th,
.ops-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.ops-table th {
  color: var(--ink);
  font-weight: 800;
}

.ops-table mark {
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--mist);
  font-size: 0.72rem;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.heatmap-grid b,
.heatmap-grid span {
  display: grid;
  min-height: 24px;
  place-items: center;
  border-radius: 6px;
}

.heatmap-grid span {
  background: #fff;
  border: 1px solid var(--line);
}

.heatmap-grid .mid {
  background: var(--mist);
}

.heatmap-grid .hot {
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.88), rgba(181, 139, 88, 0.72));
  border-color: rgba(227, 6, 19, 0.18);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.dashboard-metrics div,
.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.dashboard-metrics div {
  padding: 14px;
}

.dashboard-metrics strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--forest-dark);
  font-size: 1.62rem;
  line-height: 1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 14px;
}

.dashboard-panel {
  min-height: 220px;
  padding: 18px;
}

.panel-wide {
  grid-row: span 2;
}

.compact-panel {
  min-height: 172px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.panel-header h3 {
  margin-bottom: 0;
}

.panel-header span {
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--forest-dark);
  font-weight: 800;
}

.pipeline-list {
  display: grid;
  gap: 13px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 88px minmax(120px, 1fr) 86px;
  gap: 14px;
  align-items: center;
}

.pipeline-row div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mist);
}

.pipeline-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--gold));
}

.pipeline-row strong {
  color: var(--forest-dark);
  font-size: 0.82rem;
}

.support-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.support-ledger p {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.support-ledger span,
.support-ledger em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
}

.support-ledger strong {
  font-size: 0.82rem;
}

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

.training-list li,
.case-desk p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.training-list li:last-child,
.case-desk p:last-child {
  border-bottom: 0;
}

.training-list strong,
.case-desk strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.case-desk {
  display: grid;
}

.case-desk p {
  margin: 0;
  flex-direction: column;
  gap: 3px;
}

.review-log {
  display: grid;
  gap: 9px;
}

.review-log p {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 58px;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.review-log p:last-child {
  border-bottom: 0;
}

.review-log strong {
  font-size: 0.86rem;
}

.review-log span,
.review-log em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

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

.signal-matrix span {
  display: block;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.signal-matrix .mid {
  background: var(--mist);
}

.signal-matrix .on {
  border-color: rgba(227, 6, 19, 0.24);
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.88), rgba(181, 139, 88, 0.72));
}

.case-workflow {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.case-work-grid article {
  min-height: 236px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.case-work-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 800;
}

.case-work-grid p,
.outcome-copy p,
.outcome-list span {
  color: var(--muted);
}

.outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.outcome-copy {
  padding-left: 32px;
  border-left: 6px solid var(--forest);
}

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

.outcome-list p {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list strong {
  color: var(--forest-dark);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 6vw;
  color: rgba(255, 255, 255, 0.72);
  background: #4d090d;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  h1,
  h2,
  h3,
  p,
  strong,
  span {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .site-header {
    padding: 12px 5vw;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 5vw 16px;
    color: var(--ink);
    background: rgba(251, 250, 244, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: left;
  }

  .hero {
    min-height: 500px;
    padding: 94px 5vw 58px;
    background:
      linear-gradient(90deg, rgba(18, 20, 24, 0.5), rgba(18, 20, 24, 0.26) 54%, rgba(18, 20, 24, 0.08)),
      linear-gradient(180deg, rgba(227, 6, 19, 0.08), rgba(123, 16, 22, 0.02)),
      url("./assets/hero-hk-boardroom-face-tuned.png") 74% center / cover no-repeat;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .section-wrap {
    width: min(100% - 10vw, 720px);
    padding: 66px 0;
  }

  .two-column,
  .case-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid,
  .method-list,
  .origin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-panel {
    padding-left: 24px;
  }

  .about-hero {
    padding: 100px 5vw 52px;
  }

  .about-hero h1 {
    max-width: 14ch;
    font-size: 2.42rem;
  }

  .about-hero p:not(.eyebrow) {
    max-width: 58ch;
  }

  .founder-section,
  .boundary-section,
  .case-detail-hero-grid,
  .interface-heading,
  .outcome-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .case-detail-hero-grid {
    padding-top: 56px;
  }

  .case-detail-copy h1 {
    font-size: 2.42rem;
  }

  .support-dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    align-items: center;
    padding: 14px 18px;
  }

  .analytics-kpis,
  .analysis-grid,
  .dashboard-metrics,
  .dashboard-grid,
  .case-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chart-panel,
  .table-panel,
  .rank-panel,
  .heat-panel {
    grid-column: auto;
  }

  .panel-wide {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .founder-photo {
    aspect-ratio: 858 / 887;
  }

  .about-close-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 480px;
    padding-bottom: 46px;
  }

  .hero-content {
    max-width: 340px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .about-hero h1 {
    max-width: none;
    font-size: 2rem;
  }

  .hero-copy,
  .about-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button,
  .contact-note {
    width: 100%;
  }

  h2 {
    font-size: 1.68rem;
  }

  .service-grid,
  .method-list,
  .origin-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .case-panel {
    padding-left: 18px;
  }

  .boundary-list p {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .origin-grid article {
    min-height: auto;
  }

  .origin-grid span {
    margin-bottom: 18px;
  }

  .boundary-copy,
  .outcome-copy {
    padding-left: 20px;
    border-left-width: 4px;
  }

  .case-detail-hero {
    padding-top: 84px;
  }

  .case-detail-copy h1 {
    font-size: 1.9rem;
  }

  .outcome-list p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dashboard-workspace {
    padding: 18px;
  }

  .dashboard-topbar,
  .training-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .analytics-kpis,
  .analysis-grid,
  .dashboard-metrics,
  .dashboard-grid,
  .case-work-grid {
    grid-template-columns: 1fr;
  }

  .table-panel {
    overflow-x: auto;
  }

  .dashboard-metrics strong {
    font-size: 1.72rem;
  }

  .kpi-card strong {
    font-size: 1.56rem;
  }

  .pipeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-work-grid article {
    min-height: auto;
  }
}
