:root {
  color: #173034;
  background: #f7fbf8;
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC",
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #173034;
  --muted: #5f7475;
  --line: rgba(23, 48, 52, 0.14);
  --surface: #ffffff;
  --green: #0f8c6a;
  --blue: #2872b8;
  --amber: #c47a1d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #f7fbf8;
  font-size: 16px;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(20px, 4vw, 68px);
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 27, 30, 0.86), rgba(5, 27, 30, 0.28), transparent);
  transition: background-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 32, 34, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #123034;
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.65vw, 28px);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #78dfbd;
  content: "";
}

.nav-links .nav-cta {
  margin-left: 4px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #fff;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 0px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #123034;
}

.hero-home {
  min-height: 100svh;
}

.hero-home .hero-content {
  padding: 132px 0 96px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 27, 30, 0.88), rgba(5, 27, 30, 0.52), rgba(5, 27, 30, 0.08)),
    linear-gradient(0deg, rgba(5, 27, 30, 0.74), rgba(5, 27, 30, 0.1) 58%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 5.6vw, 88px);
  padding: 176px 0 118px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #76e2bd;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(52px, 5.7vw, 92px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero-home h1 {
  font-size: clamp(64px, 8vw, 108px);
  letter-spacing: -0.07em;
}

.hero-tagline {
  margin: 18px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.primary-action {
  color: #0e2a2d;
  background: #ffffff;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(6, 28, 31, 0.26);
  backdrop-filter: blur(10px);
}

.section,
.workflow-section,
.demo-section,
.contact-section,
.operations-section,
.hubs-section,
.workbench-section,
.divert-section,
.bridge-section {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.hubs-section {
  background: #f4f8f6;
}

.hubs-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hubs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.hub-link {
  display: block;
  padding: 42px 0 8px;
  transition: opacity 180ms ease;
}

.hub-link + .hub-link {
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--line);
}

.hub-link:first-child {
  padding-right: clamp(28px, 4vw, 56px);
}

.hub-link:hover {
  opacity: 0.82;
}

.hub-label {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hub-link strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.hub-link p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hub-cta {
  display: inline-block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(23, 48, 52, 0.28);
}

.workbench-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  color: #fff;
  background: #143033;
}

.workbench-copy .section-kicker {
  color: #76e2bd;
}

.workbench-copy p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.workbench-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 28, 30, 0.55);
  backdrop-filter: blur(10px);
}

.workbench-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

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

.workbench-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.workbench-list li:last-child {
  border-bottom: 0;
}

.workbench-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.workbench-type.is-alert {
  border-color: rgba(232, 168, 96, 0.55);
  color: #f0c090;
}

.workbench-type.is-wait {
  border-color: rgba(118, 226, 189, 0.45);
  color: #76e2bd;
}

.workbench-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

.workbench-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.divert-section {
  background: #fff;
}

.divert-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.divert-link {
  display: block;
  padding: 34px 0 8px;
  transition: opacity 180ms ease;
}

.divert-link + .divert-link {
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line);
}

.divert-link:first-child {
  padding-right: clamp(20px, 3vw, 40px);
}

.divert-link:nth-child(2) {
  padding-right: clamp(20px, 3vw, 40px);
}

.divert-link:hover {
  opacity: 0.78;
}

.divert-link strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.divert-link p {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.bridge-section {
  color: #fff;
  background: #143033;
}

.bridge-section .section-kicker {
  color: #76e2bd;
}

.bridge-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bridge-steps li {
  padding: 34px 0 0;
}

.bridge-steps li + li {
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bridge-steps li:first-child {
  padding-right: clamp(24px, 3vw, 40px);
}

.bridge-steps li:nth-child(2) {
  padding-right: clamp(24px, 3vw, 40px);
}

.bridge-steps span {
  display: inline-block;
  margin-bottom: 22px;
  color: #76e2bd;
  font-size: 14px;
  font-weight: 700;
}

.bridge-steps strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.bridge-steps p {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
}

.intro-section {
  background: #f7fbf8;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.intro-layout p,
.module-heading p,
.operations-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.workflow-section {
  color: #fff;
  background: #173034;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.workflow-step {
  min-height: 260px;
  padding: 28px;
  background: #173034;
}

.workflow-step span {
  display: inline-block;
  margin-bottom: 58px;
  color: #76e2bd;
  font-weight: 780;
}

.workflow-step strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.workflow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.module-section {
  background: var(--surface);
}

.solution-section {
  background: #f7fbf8;
}

.module-heading {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

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

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

.solution-link {
  min-height: 290px;
  padding: 30px;
  background: #fff;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.solution-link:hover {
  transform: translateY(-4px);
  background: #eef6f2;
}

.solution-link span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 14px;
  font-weight: 780;
}

.solution-link strong {
  display: block;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.24;
}

.solution-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.module-item {
  min-height: 250px;
  padding: 30px;
  background: var(--surface);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.module-item:hover {
  transform: translateY(-4px);
  background: #f7fbf8;
}

.module-item h3 {
  margin: 0 0 42px;
  font-size: 24px;
}

.module-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.operations-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: #eef6f2;
}

.operations-image-wrap {
  min-height: 560px;
  overflow: hidden;
  border-radius: 2px;
}

.operations-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.value-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.value-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.value-list span {
  color: var(--muted);
}

.value-list strong {
  text-align: right;
}

.demo-section {
  background:
    linear-gradient(180deg, #f7fbf8 0%, #eef6f2 100%);
}

.faq-section {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 88px);
  background: #fff;
}

.demo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.demo-link {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 48, 52, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.demo-link::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  opacity: 0.16;
}

.demo-link:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 48, 52, 0.24);
  box-shadow: 0 24px 60px rgba(23, 48, 52, 0.14);
}

.demo-link-admin::after {
  background: var(--green);
}

.demo-link-doctor::after {
  background: var(--blue);
}

.demo-link-patient::after {
  background: var(--amber);
}

.demo-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 820;
}

.demo-link-admin .demo-icon {
  background: var(--green);
}

.demo-link-doctor .demo-icon {
  background: var(--blue);
}

.demo-link-patient .demo-icon {
  background: var(--amber);
}

.demo-label {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 780;
}

.demo-link-doctor .demo-label {
  color: var(--blue);
}

.demo-link-patient .demo-label {
  color: var(--amber);
}

.demo-link strong {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 340px;
  font-size: 22px;
  line-height: 1.34;
}

.demo-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-item {
  padding: 28px;
  background: #fff;
}

.faq-item h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.faq-item p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--green);
  font-size: 18px;
  font-weight: 780;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #123034;
}

.page-hero .hero-content {
  padding-bottom: 96px;
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.page-lead {
  width: min(720px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.75;
}

.content-band {
  padding: clamp(70px, 10vw, 126px) clamp(20px, 6vw, 88px);
  background: #fff;
}

.content-band.alt {
  background: #f7fbf8;
}

.content-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-bottom: 48px;
}

.content-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.pain-list,
.feature-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

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

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

.scenario-list,
.process-list,
.value-grid,
.question-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.question-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: question-item;
}

.process-list,
.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-list li,
.feature-list li,
.scenario-list li,
.process-list li,
.value-grid li,
.question-list li {
  min-height: 210px;
  padding: 28px;
  background: #fff;
}

.question-list li {
  min-height: 180px;
  counter-increment: question-item;
}

.question-list li::before {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  content: counter(question-item, decimal-leading-zero);
}

.pain-list strong,
.feature-list strong,
.scenario-list strong,
.process-list strong,
.value-grid strong,
.question-list strong {
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.34;
}

.pain-list p,
.feature-list p,
.scenario-list p,
.process-list p,
.value-grid p,
.question-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.process-list span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--green);
  font-weight: 820;
}

.value-grid li {
  min-height: 170px;
}

.value-grid strong {
  color: var(--green);
  font-size: 30px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.compare-table th,
.compare-table td {
  padding: 22px 24px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.68;
}

.compare-table th {
  color: #173034;
  background: #eef6f2;
  font-size: 18px;
}

.compare-table td {
  color: var(--muted);
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cta-inline .primary-action {
  color: #fff;
  background: var(--green);
}

.cta-inline .secondary-action {
  border-color: var(--line);
  color: var(--ink);
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.keyword-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
}

.faq-page-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-page-list article {
  padding: 30px;
  background: #fff;
}

.faq-page-list h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.faq-page-list p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  color: #fff;
  background: #0f322d;
}

.contact-panel {
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-panel p,
.contact-panel span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 38px;
}

.contact-panel a {
  display: block;
  width: fit-content;
  margin: 16px 0 10px;
  color: #76e2bd;
  font-size: 22px;
  font-weight: 780;
}

.contact-panel a + span {
  display: block;
  margin-bottom: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.72);
  background: #0b2421;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    height: 70px;
    padding: 0 24px;
    background: linear-gradient(180deg, rgba(5, 27, 30, 0.92), rgba(5, 27, 30, 0.36), transparent);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(8, 35, 36, 0.98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 11px;
    border-radius: 9px;
    font-size: 15px;
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links .nav-cta {
    margin: 0;
    border: 0;
    background: #f6fffb;
    color: #123034;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .site-header.menu-open .nav-toggle span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .hero {
    min-height: 90svh;
  }

  .hero-content {
    margin: 0 20px;
    padding: 142px 0 102px;
  }

  .hero-proof {
    left: 20px;
    right: 20px;
    justify-content: flex-start;
  }

  .intro-layout,
  .module-heading,
  .operations-section,
  .contact-section,
  .workbench-section {
    grid-template-columns: 1fr;
  }

  .hubs-pair,
  .divert-row,
  .bridge-steps {
    grid-template-columns: 1fr;
  }

  .hub-link + .hub-link,
  .divert-link + .divert-link,
  .bridge-steps li + li {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .bridge-steps li + li {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .hub-link:first-child,
  .divert-link:first-child,
  .divert-link:nth-child(2),
  .bridge-steps li:first-child,
  .bridge-steps li:nth-child(2) {
    padding-right: 0;
  }

  .hub-link,
  .divert-link,
  .bridge-steps li {
    padding: 28px 0;
  }

  .workflow-track,
  .module-grid,
  .solution-grid,
  .demo-links {
    grid-template-columns: 1fr;
  }

  .content-heading,
  .pain-list,
  .feature-list,
  .scenario-list,
  .process-list,
  .value-grid,
  .question-list {
    grid-template-columns: 1fr;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table tr + tr th {
    border-top-width: 0;
  }

  .workflow-step,
  .module-item,
  .solution-link,
  .demo-link {
    min-height: auto;
  }

  .workflow-step span,
  .module-item h3,
  .demo-link span {
    margin-bottom: 22px;
  }

  .operations-image-wrap,
  .operations-image-wrap img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    width: auto;
    margin: 0 16px;
  }

  .hero,
  .page-hero {
    min-height: 100svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 27, 30, 0.96), rgba(5, 27, 30, 0.84), rgba(5, 27, 30, 0.52)),
      linear-gradient(0deg, rgba(5, 27, 30, 0.88), rgba(5, 27, 30, 0.18) 58%);
  }

  .page-hero .hero-content {
    padding: 112px 0 62px;
  }

  .hero h1,
  .page-hero h1,
  .hero-copy,
  .page-lead {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.16;
    letter-spacing: -0.055em;
  }

  .hero-home h1 {
    font-size: clamp(52px, 14vw, 68px);
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-home .hero-content {
    padding: 118px 0 72px;
  }

  .page-lead {
    font-size: 17px;
    line-height: 1.7;
  }

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

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

  .hero-proof {
    display: none;
  }

  .section,
  .workflow-section,
  .demo-section,
  .faq-section,
  .contact-section,
  .operations-section,
  .content-band,
  .hubs-section,
  .workbench-section,
  .divert-section,
  .bridge-section {
    padding: 62px 18px;
  }

  .value-list li {
    display: block;
  }

  .value-list strong {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

/* Hub document pages: cardless reading layout */
.hub-doc {
  background: #f3f6f5;
}

.hub-doc .site-header {
  color: #173034;
  background: rgba(243, 246, 245, 0.92);
  backdrop-filter: blur(12px);
}

.hub-doc .site-header.is-scrolled {
  background: rgba(243, 246, 245, 0.96);
}

.hub-doc .brand,
.hub-doc .nav-links a,
.hub-doc .nav-links {
  color: rgba(23, 48, 52, 0.78);
}

.hub-doc .nav-links a:hover,
.hub-doc .nav-links a.is-active,
.hub-doc .brand:hover {
  color: #173034;
}

.hub-doc .nav-links a.is-active::after {
  background: var(--green);
}

.hub-doc .nav-links .nav-cta {
  border-color: rgba(23, 48, 52, 0.28);
  color: #173034;
}

.hub-doc .nav-links .nav-cta:hover {
  border-color: #173034;
  background: rgba(23, 48, 52, 0.05);
}

.hub-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px clamp(20px, 6vw, 88px) 72px;
}

.hub-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hub-hero h1 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hub-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.75;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hub-secondary {
  border-color: rgba(23, 48, 52, 0.22);
  color: var(--ink);
}

.hub-secondary:hover {
  border-color: var(--ink);
  background: rgba(23, 48, 52, 0.04);
}

.hub-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px clamp(20px, 6vw, 88px);
}

.hub-section-muted {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: #eef3f1;
}

.hub-section-muted > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 6vw, 88px);
  padding-right: clamp(20px, 6vw, 88px);
}

.hub-section h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.035em;
}

.hub-section-lead,
.hub-prose p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hub-subhead {
  margin: 40px 0 18px;
  font-size: 18px;
  font-weight: 700;
}

.hub-plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hub-plain-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.hub-solve {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(23, 48, 52, 0.12);
}

.hub-solve article {
  padding: 32px 0;
  border-bottom: 1px solid rgba(23, 48, 52, 0.12);
}

.hub-solve h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.hub-solve-pain {
  margin: 0 0 12px;
  color: #6a5a48;
  font-size: 16px;
  line-height: 1.7;
}

.hub-solve-do {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.hub-flow {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: hub-flow;
  border-top: 1px solid var(--line);
}

.hub-flow li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: hub-flow;
}

.hub-flow li::before {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  content: counter(hub-flow, decimal-leading-zero);
}

.hub-flow strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.hub-flow span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hub-roles {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.hub-roles h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hub-roles p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hub-next {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(23, 48, 52, 0.12);
}

.hub-next a {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 48, 52, 0.12);
  transition: opacity 160ms ease;
}

.hub-next a:hover {
  opacity: 0.72;
}

.hub-next strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.hub-next span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.hub-doc .contact-section {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hub-doc .site-header {
    background: rgba(243, 246, 245, 0.96);
  }

  .hub-doc .nav-links {
    background: rgba(243, 246, 245, 0.98);
    border-color: rgba(23, 48, 52, 0.1);
    box-shadow: 0 18px 40px rgba(23, 48, 52, 0.1);
  }

  .hub-doc .nav-links a,
  .hub-doc .nav-links .nav-cta {
    color: #173034;
  }

  .hub-doc .nav-toggle {
    border-color: rgba(23, 48, 52, 0.22);
    color: #173034;
    background: rgba(255, 255, 255, 0.7);
  }

  .hub-hero {
    padding-top: 118px;
  }
}

@media (max-width: 560px) {
  .hub-hero,
  .hub-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hub-section-muted > * {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hub-plain-list li {
    font-size: 18px;
  }

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

  .hub-actions .primary-action,
  .hub-actions .secondary-action {
    width: 100%;
  }
}

/* Chronic care hub: keep site system, avoid card grids and bare doc layout */
.chronic-ask-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  counter-reset: chronic-ask;
}

.chronic-ask-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.35;
  counter-increment: chronic-ask;
}

.chronic-ask-list li::before {
  display: inline-block;
  min-width: 2.2em;
  margin-right: 12px;
  color: var(--green);
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: middle;
  content: counter(chronic-ask, decimal-leading-zero);
}

.chronic-solve {
  display: block;
  color: #fff;
  background: #143033;
}

.chronic-solve .workbench-copy {
  max-width: 720px;
  margin-bottom: 48px;
}

.chronic-solve-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.chronic-solve-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.2fr);
  gap: clamp(20px, 4vw, 48px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.chronic-solve-list h3 {
  margin: 0;
  grid-column: 1 / -1;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.03em;
}

.chronic-ask {
  margin: 0;
  color: rgba(240, 192, 144, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.chronic-solve-list article > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

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

.chronic-flow li {
  min-height: auto;
}

.chronic-planes .hubs-pair {
  margin-top: 48px;
}

.chronic-planes .hub-link {
  cursor: default;
}

.chronic-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.chronic-capability-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 220px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.chronic-capability-list article:nth-child(odd) {
  padding-right: clamp(24px, 4vw, 52px);
}

.chronic-capability-list article:nth-child(even) {
  padding-left: clamp(24px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.chronic-capability-list article > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.8;
}

.chronic-capability-list h3 {
  margin: 0 0 14px;
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.chronic-capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.chronic-example-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.chronic-example-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.chronic-example-steps li > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 140, 106, 0.3);
  border-radius: 50%;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.chronic-example-steps p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.chronic-example-steps strong {
  margin-right: 0.45em;
  color: var(--ink);
}

.chronic-fit-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.chronic-fit-list p {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.65;
}

.chronic-fit-list strong {
  font-size: 20px;
}

.chronic-fit-list span {
  color: var(--muted);
  font-size: 17px;
}

.chronic-next {
  padding-top: 0;
}

.topic-stage-third {
  margin-top: 1px;
  padding: 34px 0 8px;
  border-top: 1px solid var(--line);
}

.topic-stage-third strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.topic-stage-third p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.topic-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.topic-result-list p {
  display: grid;
  grid-template-columns: minmax(145px, 0.65fr) minmax(220px, 1.35fr);
  gap: 22px;
  min-height: 132px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.topic-result-list p:nth-child(even) {
  padding-left: clamp(24px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.topic-result-list strong {
  font-size: 20px;
  line-height: 1.45;
}

.topic-result-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.info-block {
  display: block;
  padding: 34px 0 8px;
}

.info-block + .info-block {
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line);
}

.info-block:first-child {
  padding-right: clamp(20px, 3vw, 40px);
}

.info-block:nth-child(2) {
  padding-right: clamp(20px, 3vw, 40px);
}

.info-block strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.info-block p {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .chronic-solve-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .chronic-flow {
    grid-template-columns: 1fr;
  }

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

  .chronic-capability-list article,
  .chronic-capability-list article:nth-child(odd),
  .chronic-capability-list article:nth-child(even) {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
  }

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

  .topic-result-list p,
  .topic-result-list p:nth-child(even) {
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
  }

  .info-block + .info-block {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .info-block,
  .info-block:first-child,
  .info-block:nth-child(2) {
    padding: 28px 0;
  }
}

@media (max-width: 640px) {
  .chronic-capability-list article {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .chronic-example-steps li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .chronic-example-steps p {
    font-size: 16px;
  }

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

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