:root {
  --ink: #121a23;
  --ink-2: #28333d;
  --navy: #0d151e;
  --navy-2: #14212b;
  --navy-3: #1d2d39;
  --paper: #f7f4ed;
  --paper-2: #eee9df;
  --white: #fffdf8;
  --orange: #ff6b3d;
  --orange-dark: #dd4e27;
  --gold: #e4b660;
  --mint: #68d5bd;
  --blue: #6ea4ff;
  --muted: #69747c;
  --line: #d9d7d0;
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 80px rgba(15, 28, 36, 0.14);
  --shadow-small: 0 12px 34px rgba(15, 28, 36, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.notice-bar {
  color: rgba(255, 255, 255, 0.75);
  background: #080e14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  letter-spacing: 0.025em;
}

.notice-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-inner > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.notice-inner a {
  color: var(--gold);
  font-weight: 760;
  letter-spacing: 0.06em;
}

.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(104, 213, 189, 0.1);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(247, 244, 237, 0.91);
  border-bottom: 1px solid rgba(18, 26, 35, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  border-radius: 12px;
}

.brand-mark::before {
  content: "";
  width: 19px;
  height: 22px;
  border: 2px solid var(--white);
  border-radius: 9px 9px 11px 11px;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.brand-mark span:nth-child(1) { top: 8px; left: 8px; }
.brand-mark span:nth-child(2) { top: 8px; right: 8px; background: var(--gold); }
.brand-mark span:nth-child(3) { right: 8px; bottom: 8px; background: var(--mint); }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.015em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 680;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 107, 61, 0.34);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(255, 107, 61, 0.25);
}

.button--primary:hover {
  background: #ff7a50;
  box-shadow: 0 16px 36px rgba(255, 107, 61, 0.32);
}

.button--dark {
  min-height: 43px;
  color: #fff;
  background: var(--ink);
}

.button--dark:hover {
  background: var(--navy-3);
}

.button--ghost {
  color: rgba(255, 255, 255, 0.91);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.28);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.46);
}

.button--muted {
  color: var(--ink-2);
  background: #ece9e2;
  border-color: #dfdcd4;
}

.button--soft {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(228, 182, 96, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(228, 182, 96, 0.025), 0 0 0 140px rgba(228, 182, 96, 0.018);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0.45), transparent 85%);
}

.hero-glow {
  position: absolute;
  top: -230px;
  left: -90px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(255, 107, 61, 0.13), transparent 67%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 76px;
  padding-block: 74px 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold);
}

.eyebrow i {
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 24px;
  font-size: clamp(50px, 6.3vw, 82px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--orange);
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-weight: 450;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  line-height: 1.9;
}

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

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  list-style: none;
  font-size: 12px;
}

.trust-inline span {
  margin-right: 5px;
  color: var(--mint);
}

.hero-console {
  position: relative;
  overflow: hidden;
  padding: 25px;
  background: rgba(29, 45, 57, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.console-head,
.console-head > div {
  display: flex;
  align-items: center;
}

.console-head {
  position: relative;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.console-head > div {
  gap: 8px;
}

.console-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(104, 213, 189, 0.1);
}

.console-state {
  padding: 5px 11px;
  color: var(--mint);
  background: rgba(104, 213, 189, 0.08);
  border: 1px solid rgba(104, 213, 189, 0.22);
  border-radius: 999px;
  font-size: 10px;
}

.radar-wrap {
  position: relative;
  width: min(100%, 350px);
  margin: 14px auto 2px;
}

.radar {
  display: block;
  width: 100%;
  overflow: visible;
}

.radar circle,
.radar path:not(.radar-shape) {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.radar .radar-shape {
  fill: rgba(255, 107, 61, 0.12);
  stroke: var(--orange);
  stroke-width: 1.7;
  filter: drop-shadow(0 0 12px rgba(255, 107, 61, 0.32));
}

.radar .radar-point {
  fill: var(--gold);
  stroke: var(--navy-2);
  stroke-width: 3;
}

.radar-label {
  position: absolute;
  padding: 2px 7px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(13, 21, 30, 0.72);
  border-radius: 5px;
  font-size: 10px;
}

.radar-label--one { top: 2%; left: 44%; }
.radar-label--two { top: 24%; right: 5%; }
.radar-label--three { right: 8%; bottom: 12%; }
.radar-label--four { bottom: 5%; left: 24%; }
.radar-label--five { top: 38%; left: 0; }

.radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.radar-core b {
  color: #fff;
  font-size: 26px;
}

.radar-core span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.console-question {
  position: relative;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.console-question > small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.stage-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.stage-buttons button {
  min-height: 35px;
  padding: 4px 7px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 11px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.stage-buttons button:hover,
.stage-buttons button.is-active {
  color: #fff;
  background: rgba(255, 107, 61, 0.14);
  border-color: rgba(255, 107, 61, 0.66);
}

.console-result {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 14px;
  background: rgba(104, 213, 189, 0.08);
  border: 1px solid rgba(104, 213, 189, 0.17);
  border-radius: 14px;
}

.console-result:hover {
  background: rgba(104, 213, 189, 0.12);
}

.console-result > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.console-result small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.console-result strong {
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.console-result > b {
  color: var(--mint);
}

.result-symbol {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(104, 213, 189, 0.1);
  border: 1px solid rgba(104, 213, 189, 0.2);
  border-radius: 10px;
  font-size: 19px;
}

.hero-foot {
  position: relative;
  z-index: 2;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.hero-foot span:first-child {
  color: var(--gold);
  font-weight: 760;
}

.hero-foot i {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.signal-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.signal-grid > div {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.signal-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.signal-grid strong {
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.signal-grid span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 730;
  line-height: 1.4;
}

.signal-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2,
.industries-copy h2,
.faq-intro h2,
.contact-copy h2,
.evidence-heading h2 {
  margin: 11px 0 0;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 780;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

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

.path-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.path-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(18, 26, 35, 0.07);
  border-radius: 50%;
}

.path-card:hover {
  z-index: 2;
  border-color: rgba(255, 107, 61, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.path-card--featured {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.path-card--featured::after {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035);
}

.path-index {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.path-card--featured .path-index {
  color: rgba(255, 255, 255, 0.55);
}

.path-glyph {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 27px 0 25px;
  color: var(--orange-dark);
  background: rgba(255, 107, 61, 0.08);
  border: 1px solid rgba(255, 107, 61, 0.18);
  border-radius: 15px;
  font-family: "Songti SC", STSong, serif;
  font-size: 24px;
}

.path-card--featured .path-glyph {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.path-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.path-card--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 780;
}

.text-link b {
  transition: transform 0.2s ease;
}

.text-link:hover b {
  transform: translateX(4px);
}

.text-link--large {
  font-size: 15px;
}

.path-card--featured .text-link {
  color: #fff;
}

.assessment-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.assessment-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.assessment-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: 88px;
}

.assessment-intro {
  position: sticky;
  top: 135px;
}

.assessment-intro h2 {
  margin: 13px 0 20px;
  font-size: clamp(38px, 4.5vw, 57px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.assessment-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.assessment-benefits {
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.assessment-benefits li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.assessment-benefits li > span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.assessment-benefits div {
  display: flex;
  flex-direction: column;
}

.assessment-benefits b {
  font-size: 14px;
}

.assessment-benefits small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.assessment-note {
  padding: 13px 14px;
  margin-top: 28px !important;
  color: rgba(255, 255, 255, 0.52) !important;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  font-size: 11px !important;
}

.assessment-card {
  min-height: 590px;
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.assessment-progress-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.assessment-progress {
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  background: #e7e3da;
  border-radius: 10px;
}

.assessment-progress span {
  width: 20%;
  height: 100%;
  display: block;
  background: var(--orange);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.assessment-step {
  min-width: 0;
  padding: 0;
  margin: 34px 0 0;
  border: 0;
}

.assessment-step[hidden],
.assessment-result[hidden] {
  display: none;
}

.assessment-step legend {
  padding: 0;
  font-size: 26px;
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.assessment-step > p {
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

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

.option-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.option-grid label {
  min-width: 0;
}

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

.option-grid label > span {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  background: #f6f3ed;
  border: 1px solid #dfdcd4;
  border-radius: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.option-grid label:hover > span {
  border-color: rgba(255, 107, 61, 0.5);
  transform: translateY(-2px);
}

.option-grid input:checked + span {
  background: rgba(255, 107, 61, 0.075);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.1);
}

.option-grid input:focus-visible + span {
  outline: 3px solid rgba(255, 107, 61, 0.3);
  outline-offset: 2px;
}

.option-grid b {
  font-size: 14px;
  line-height: 1.4;
}

.option-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.assessment-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.assessment-result {
  margin-top: 31px;
}

.result-tag {
  display: inline-flex;
  padding: 6px 11px;
  color: var(--orange-dark);
  background: rgba(255, 107, 61, 0.09);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.assessment-result h3 {
  margin: 20px 0 12px;
  font-size: 31px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.assessment-result > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.result-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 28px;
}

.result-checklist span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: var(--ink-2);
  background: #f3f0e9;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.result-checklist span::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.assessment-result > small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
}

.process-section {
  background: var(--paper-2);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-step {
  min-width: 0;
}

.process-node {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.process-node span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--ink);
  border: 5px solid var(--paper-2);
  outline: 1px solid rgba(18, 26, 35, 0.22);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.process-step:nth-child(3) .process-node span,
.process-step:nth-child(4) .process-node span {
  background: var(--orange-dark);
  outline-color: rgba(221, 78, 39, 0.35);
}

.process-node i {
  width: calc(100% - 39px);
  height: 1px;
  display: block;
  background: #c9c5bd;
}

.process-card {
  min-height: 334px;
  padding: 23px 20px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid #d5d1c9;
  border-right: 0;
}

.process-step:first-child .process-card {
  border-radius: 18px 0 0 18px;
}

.process-step:last-child .process-card {
  border-right: 1px solid #d5d1c9;
  border-radius: 0 18px 18px 0;
}

.process-time {
  color: var(--orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-card h3 {
  margin: 13px 0 10px;
  font-size: 22px;
}

.process-card p {
  min-height: 92px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.process-card ul {
  padding: 15px 0 0;
  margin: 15px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 12px;
  color: var(--ink-2);
  font-size: 10px;
  line-height: 1.9;
}

.process-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.services-section {
  color: #fff;
  background: var(--navy);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.54);
}

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

.service-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 107, 61, 0.45);
  transform: translateY(-5px);
}

.service-card--wide {
  grid-column: span 2;
}

.service-number {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.service-card > div {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin-top: auto;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 17px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 9px;
  line-height: 1.2;
}

.service-mark {
  position: absolute;
  top: -30px;
  right: 8px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Songti SC", STSong, serif;
  font-size: 165px;
  line-height: 1;
  user-select: none;
}

.levels-section {
  background: var(--paper);
}

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

.level-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-small);
}

.level-card--accent {
  color: #fff;
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.level-card--accent::after {
  content: "III";
  position: absolute;
  right: -18px;
  bottom: -72px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, serif;
  font-size: 260px;
  line-height: 1;
}

.level-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 11px;
}

.level-card--accent .level-top {
  color: rgba(255, 255, 255, 0.55);
}

.level-badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 107, 61, 0.08);
  border: 1px solid rgba(255, 107, 61, 0.2);
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 800;
}

.level-card--accent .level-badge {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange);
}

.level-card h3 {
  position: relative;
  z-index: 1;
  margin: 26px 0 12px;
  font-size: 26px;
  line-height: 1.3;
}

.level-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.level-card--accent > p {
  color: rgba(255, 255, 255, 0.58);
}

.level-card dl {
  position: relative;
  z-index: 1;
  margin: 25px 0 0;
}

.level-card dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.level-card--accent dl > div {
  border-color: rgba(255, 255, 255, 0.11);
}

.level-card dt,
.level-card dd {
  margin: 0;
  font-size: 11px;
}

.level-card dt {
  color: var(--orange-dark);
  font-weight: 800;
}

.level-card--accent dt,
.level-card--accent .text-link {
  color: var(--gold);
}

.level-card dd {
  color: var(--ink-2);
}

.level-card--accent dd {
  color: rgba(255, 255, 255, 0.64);
}

.level-card .text-link {
  position: relative;
  z-index: 1;
}

.level-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  margin: 17px 0 0;
  color: var(--muted);
  background: #efebe3;
  border: 1px solid #ded9cf;
  border-radius: 13px;
  font-size: 11px;
}

.level-disclaimer span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.industries-section {
  background: var(--paper-2);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(560px, 1.34fr);
  align-items: center;
  gap: 85px;
}

.industries-copy p {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

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

.industry-card {
  min-height: 166px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 23px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid #d6d1c8;
  border-radius: 18px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
  background: var(--white);
  border-color: rgba(255, 107, 61, 0.4);
  transform: translateY(-4px);
}

.industry-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 107, 61, 0.08);
  border-radius: 14px;
  font-family: "Songti SC", STSong, serif;
  font-size: 21px;
}

.industry-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.evidence-section {
  background: var(--paper);
}

.evidence-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  align-items: center;
  gap: 60px;
  padding: 56px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-2);
  border-radius: var(--radius-xl);
}

.evidence-heading p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.document-stack {
  position: relative;
  min-height: 390px;
}

.document {
  position: absolute;
  width: 270px;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 21px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 17px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
  transform: rotate(-3deg);
  transition: transform 0.25s ease;
}

.document:hover {
  z-index: 10;
  transform: rotate(0) translateY(-8px);
}

.document span {
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.document b {
  font-size: 16px;
}

.document small {
  margin-top: 3px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.document--one { top: 0; left: 0; }
.document--two { top: 18px; right: 0; transform: rotate(3deg); background: #f2e6cc; }
.document--three { top: 112px; left: 38px; transform: rotate(2deg); background: #e6efe9; }
.document--four { top: 133px; right: -12px; transform: rotate(-2deg); background: #f8ddd4; }
.document--five { bottom: 0; left: 0; transform: rotate(-4deg); }
.document--six { right: 20px; bottom: -8px; transform: rotate(3deg); background: #dce7f3; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.principle {
  min-height: 185px;
  padding: 26px;
  background: var(--white);
}

.principle > span {
  color: var(--orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.principle h3 {
  margin: 23px 0 8px;
  font-size: 18px;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: var(--paper-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-item {
  border-top: 1px solid #cbc7bf;
}

.faq-item:last-child {
  border-bottom: 1px solid #cbc7bf;
}

.faq-item > button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  text-align: left;
  background: transparent;
  border: 0;
}

.faq-item > button span {
  color: var(--orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.faq-item > button b {
  font-size: 16px;
  line-height: 1.45;
}

.faq-item > button i {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid #bbb7af;
  border-radius: 50%;
}

.faq-item > button i::before,
.faq-item > button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open > button i {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.faq-item.is-open > button i::before,
.faq-item.is-open > button i::after {
  background: #fff;
}

.faq-item.is-open > button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 54px 23px 48px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.contact-section {
  position: relative;
  padding: 110px 0;
  color: #fff;
  background: #0a1118;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, #000, transparent 60%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(560px, 1.15fr);
  align-items: start;
  gap: 86px;
}

.contact-copy {
  position: sticky;
  top: 135px;
}

.contact-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

.contact-direct {
  display: grid;
  gap: 9px;
  margin-top: 31px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-direct a:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 107, 61, 0.35);
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.contact-direct strong {
  color: var(--gold);
  font-size: 13px;
}

.contact-promises {
  padding: 20px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.contact-promises li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 2;
}

.contact-promises span {
  margin-right: 7px;
  color: var(--mint);
}

.lead-form {
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.form-head b {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.form-head--second {
  padding-top: 27px;
  margin-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
}

.field label em,
.consent-row em {
  color: var(--orange);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.65;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 61, 0.74);
  box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.09);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(255, 107, 61, 0.8);
}

.form-safety {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(228, 182, 96, 0.055);
  border: 1px solid rgba(228, 182, 96, 0.16);
  border-radius: 11px;
}

.form-safety > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(228, 182, 96, 0.35);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.form-safety p {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.form-safety strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.consent-row {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.65;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 23px;
}

.form-status {
  min-height: 20px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.form-status.is-success {
  color: var(--mint);
}

.form-status.is-error {
  color: #ff9a78;
}

.site-footer {
  color: rgba(255, 255, 255, 0.57);
  background: #080d12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 50px;
  padding-block: 66px 50px;
}

.brand--footer .brand-copy strong {
  color: #fff;
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.4);
}

.brand--footer .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* Shared article pages */
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  color: #fff;
  background: var(--navy);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.breadcrumb {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
}

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

.subpage-hero h1 {
  position: relative;
  max-width: 890px;
  margin: 28px 0 20px;
  font-size: clamp(45px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.subpage-hero p {
  position: relative;
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.85;
}

.subpage-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.article-shell {
  width: min(calc(100% - 40px), 920px);
  margin-inline: auto;
}

.article-content {
  padding: 90px 0 105px;
}

.article-lead {
  padding: 26px 28px;
  margin-bottom: 55px;
  color: var(--ink-2);
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow-small);
  font-size: 16px;
}

.article-content section + section {
  margin-top: 70px;
}

.article-content h2 {
  margin: 0 0 19px;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.article-content p,
.article-content li {
  color: var(--ink-2);
  font-size: 14px;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 8px;
}

.article-note {
  padding: 18px 20px;
  margin: 27px 0;
  color: var(--ink-2);
  background: #ede8de;
  border: 1px solid #d9d3c8;
  border-radius: 13px;
  font-size: 12px;
}

.article-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

.article-table th,
.article-table td {
  padding: 16px 17px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.article-table th {
  color: #fff;
  background: var(--navy-2);
  font-size: 11px;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table td:first-child {
  color: var(--orange-dark);
  font-weight: 750;
}

.article-steps {
  display: grid;
  gap: 12px;
  padding: 0 !important;
  list-style: none;
}

.article-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.article-steps li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.article-steps h3 {
  margin: 0 0 5px;
}

.article-steps p {
  margin: 0;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  margin-top: 70px;
  color: #fff;
  background: var(--navy-2);
  border-radius: var(--radius-lg);
}

.article-cta h2 {
  margin: 0 0 7px;
  font-size: 27px;
}

.article-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.article-faq {
  border-top: 1px solid var(--line);
}

.article-faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}

.article-faq details p {
  margin: 13px 0 0;
}

.source-list {
  padding: 21px 25px !important;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

/* Decision tools */
.decision-section {
  background: #ebe6dc;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.decision-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #d7d2c8;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(15, 28, 36, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.decision-card:hover {
  border-color: rgba(221, 78, 39, 0.48);
  box-shadow: var(--shadow-small);
  transform: translateY(-4px);
}

.decision-card--feature {
  color: #fff;
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.decision-index,
.decision-label {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-index {
  color: var(--orange-dark);
}

.decision-card--feature .decision-index {
  color: var(--gold);
}

.decision-label {
  margin-bottom: 13px;
  color: var(--muted);
}

.decision-card--feature .decision-label,
.decision-card--feature p {
  color: rgba(255, 255, 255, 0.58);
}

.decision-card h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.decision-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.decision-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 760;
}

.decision-card--feature .decision-link {
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.13);
}

/* Cost, timeline and checklist pages */
.factor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.factor-card {
  min-height: 190px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.factor-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.factor-card > span {
  color: var(--orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.factor-card h3 {
  margin: 15px 0 8px;
  font-size: 19px;
}

.factor-card p {
  margin: 0;
}

.timeline-board {
  display: grid;
  gap: 0;
  padding: 0 !important;
  margin-top: 28px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
}

.timeline-board li {
  display: grid;
  grid-template-columns: 125px 1fr 210px;
  align-items: center;
  gap: 22px;
  padding: 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.timeline-board li:last-child {
  border-bottom: 0;
}

.timeline-board li > span {
  color: var(--orange-dark);
  font-weight: 780;
}

.timeline-board h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.timeline-board p,
.timeline-board small {
  margin: 0;
}

.timeline-board small {
  color: var(--muted);
  font-size: 11px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.question-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.question-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-2);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.question-grid p {
  margin: 0;
  font-size: 12px;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.checklist-hero h1 {
  max-width: none;
}

.checklist-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.checklist-meta span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 10px;
}

.checklist-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background: #e9e3d8;
  border: 1px solid #d3cdc1;
  border-radius: 15px;
  font-size: 12px;
}

.checklist-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.write-line {
  width: 100%;
  min-width: 80px;
  height: 1.4em;
  display: inline-block;
  border-bottom: 1px solid #aaa397;
}

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

.checklist-group {
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  break-inside: avoid;
}

.checklist-grid > .checklist-group {
  margin-top: 0;
}

.checklist-group--warning {
  background: #fff7ed;
  border-color: #efc5ad;
}

.checklist-group-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.checklist-group-head > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.checklist-group h2 {
  margin: 0 0 2px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.checklist-group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.checklist-items {
  display: grid;
}

.checklist-items label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed #ddd7cd;
  cursor: pointer;
}

.checklist-items label:last-child {
  border-bottom: 0;
}

.checklist-items input {
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
  accent-color: var(--orange-dark);
}

.checklist-items span {
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.65;
}

.checklist-notes {
  margin-top: 70px;
}

.note-lines {
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.note-lines p {
  margin: 0 0 8px;
}

.note-lines span {
  height: 34px;
  display: block;
  border-bottom: 1px solid #cbc5ba;
}

.note-lines span + p {
  margin-top: 24px;
}

.privacy-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #fff;
  background: var(--navy);
}

.error-card {
  width: min(100%, 610px);
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
}

.error-card h1 {
  margin: 18px 0 10px;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.1;
}

.error-card p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.57);
}

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .main-nav { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr 400px; gap: 40px; }
  .hero h1 { font-size: clamp(48px, 6.5vw, 70px); }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .path-card { min-height: 315px; }
  .assessment-layout { gap: 50px; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .process-node { display: none; }
  .process-card,
  .process-step:first-child .process-card,
  .process-step:last-child .process-card { min-height: 310px; border: 1px solid #d5d1c9; border-radius: 18px; }
  .industries-layout,
  .contact-layout { gap: 50px; }
  .evidence-panel { grid-template-columns: 0.8fr 1.2fr; padding: 44px; gap: 35px; }
  .document { width: 230px; }
  .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-card--feature { grid-row: span 2; }
  .timeline-board li { grid-template-columns: 110px 1fr; }
  .timeline-board small { grid-column: 2; }
}

@media (max-width: 860px) {
  .notice-wide { display: none; }
  .header-inner { min-height: 70px; }
  .menu-toggle { display: flex; order: 3; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    left: 50%;
    width: 100vw;
    height: calc(100dvh - 64px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 20px;
    color: #fff;
    background: #0d151e;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .menu-open .main-nav { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
  .main-nav a { padding: 17px 6px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 17px; }
  .hero-layout { grid-template-columns: 1fr; padding-block: 70px 50px; }
  .hero-copy { max-width: 690px; }
  .hero-console { width: min(100%, 540px); margin-inline: auto; }
  .hero-foot { overflow-x: auto; white-space: nowrap; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .signal-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .assessment-layout,
  .industries-layout,
  .faq-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .assessment-intro,
  .faq-intro,
  .contact-copy { position: static; }
  .assessment-intro { max-width: 620px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .service-board { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 1; }
  .level-comparison { grid-template-columns: 1fr; }
  .industries-copy { max-width: 620px; }
  .evidence-panel { grid-template-columns: 1fr; }
  .evidence-heading { max-width: 620px; }
  .document-stack { width: min(100%, 570px); margin-inline: auto; }
  .footer-main { grid-template-columns: 1.4fr repeat(3, 0.7fr); gap: 28px; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-card--feature { grid-row: auto; }
  .decision-card { min-height: 300px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-toolbar { grid-template-columns: 1fr 1fr; }
  .checklist-toolbar .button { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 88px; }
  body { padding-bottom: 60px; }
  .shell,
  .article-shell { width: min(calc(100% - 28px), var(--shell)); }
  .notice-inner { min-height: 30px; }
  .notice-inner > span:first-child { font-size: 10px; }
  .notice-inner a { font-size: 10px; }
  .site-header { top: 0; }
  .header-inner { min-height: 64px; }
  .brand-mark { width: 35px; height: 35px; border-radius: 10px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .hero-layout { min-height: auto; gap: 45px; padding-block: 58px 40px; }
  .eyebrow { gap: 7px; font-size: 10px; letter-spacing: 0.11em; }
  .eyebrow i { width: 25px; }
  .hero h1 { margin-block: 19px; font-size: clamp(45px, 14.2vw, 61px); line-height: 1.07; }
  .hero-lead { font-size: 15px; line-height: 1.8; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .trust-inline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px 10px; font-size: 10px; }
  .hero-console { padding: 19px; border-radius: 22px; }
  .radar-wrap { max-width: 320px; }
  .stage-buttons { grid-template-columns: 1fr; }
  .stage-buttons button { min-height: 40px; }
  .hero-foot { gap: 14px; min-height: 58px; font-size: 10px; }
  .signal-grid > div { min-height: 94px; gap: 10px; }
  .signal-grid strong { font-size: 32px; }
  .signal-grid span { font-size: 11px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .industries-copy h2,
  .faq-intro h2,
  .contact-copy h2,
  .evidence-heading h2 { font-size: 36px; line-height: 1.18; }
  .section-heading > p { font-size: 13px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 300px; }
  .decision-card { min-height: 270px; padding: 23px; }
  .factor-grid,
  .question-grid { grid-template-columns: 1fr; }
  .factor-card--wide { grid-column: auto; }
  .timeline-board li { grid-template-columns: 1fr; gap: 6px; }
  .timeline-board small { grid-column: auto; margin-top: 6px; }
  .checklist-toolbar { grid-template-columns: 1fr; gap: 13px; }
  .checklist-toolbar .button { grid-column: auto; width: 100%; }
  .checklist-group { padding: 19px; }
  .assessment-layout { gap: 42px; }
  .assessment-intro h2 { font-size: 36px; }
  .assessment-card { min-height: 0; padding: 23px 18px; border-radius: 22px; }
  .assessment-step legend { font-size: 21px; }
  .option-grid,
  .option-grid--two { grid-template-columns: 1fr; }
  .option-grid label > span { min-height: 76px; }
  .assessment-actions .button { min-width: 0; padding-inline: 18px; }
  .assessment-result h3 { font-size: 25px; }
  .result-checklist { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .process-card,
  .process-step:first-child .process-card,
  .process-step:last-child .process-card { min-height: 0; }
  .process-card p { min-height: 0; }
  .service-board { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .level-card { min-height: 0; padding: 25px 21px; border-radius: 23px; }
  .level-card dl > div { grid-template-columns: 78px 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 145px; }
  .evidence-panel { min-height: 0; padding: 30px 20px 26px; border-radius: 23px; }
  .document-stack { min-height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .document,
  .document--one,
  .document--two,
  .document--three,
  .document--four,
  .document--five,
  .document--six { position: relative; inset: auto; width: auto; min-height: 125px; padding: 15px; transform: none; }
  .document:hover { transform: translateY(-3px); }
  .document b { font-size: 13px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle { min-height: 150px; }
  .faq-layout { gap: 40px; }
  .faq-item > button { grid-template-columns: 28px 1fr 27px; min-height: 76px; }
  .faq-item > button b { font-size: 14px; }
  .faq-answer { padding: 0 36px 21px 40px; }
  .contact-section { padding: 75px 0; }
  .contact-layout { gap: 40px; }
  .lead-form { padding: 24px 18px; border-radius: 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { display: grid; grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); padding-block: 52px 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { min-height: 90px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 60px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 7px 10px;
    background: rgba(8, 13, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
  }
  .mobile-contact-bar a { display: grid; place-items: center; color: #fff; border-radius: 999px; font-size: 13px; font-weight: 760; }
  .mobile-contact-bar a:last-child { background: var(--orange); }
  .subpage-hero { padding: 62px 0; }
  .subpage-hero h1 { font-size: 43px; }
  .subpage-hero p { font-size: 14px; }
  .article-content { padding: 65px 0 78px; }
  .article-lead { padding: 21px; font-size: 14px; }
  .article-steps li { grid-template-columns: 42px 1fr; padding: 18px; }
  .article-steps li > span { width: 42px; height: 42px; }
  .article-cta { grid-template-columns: 1fr; padding: 25px; }
  .article-cta .button { width: 100%; }
  .article-cta-actions { display: grid; justify-content: stretch; }
  .error-card { padding: 32px 24px; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  body { padding: 0; color: #111; background: #fff; font-size: 10pt; }
  .notice-bar,
  .site-header,
  .subpage-actions,
  .checklist-toolbar .button,
  .article-cta,
  .site-footer,
  .mobile-contact-bar { display: none !important; }
  .subpage-hero { padding: 0 0 10mm; color: #111; background: #fff; }
  .subpage-hero::before { display: none; }
  .subpage-hero h1 { margin: 5mm 0 2mm; color: #111; font-size: 28pt; }
  .subpage-hero p,
  .breadcrumb,
  .checklist-meta span { color: #444; }
  .breadcrumb a { color: #444; }
  .checklist-meta { margin-top: 4mm; }
  .checklist-meta span { padding: 1mm 2mm; border-color: #bbb; }
  .article-shell { width: 100%; }
  .article-content { padding: 0; }
  .article-lead { padding: 4mm; margin-bottom: 5mm; box-shadow: none; }
  .checklist-toolbar { grid-template-columns: 1fr 1fr; padding: 3mm; margin-bottom: 4mm; background: #fff; }
  .checklist-grid { gap: 3mm; }
  .checklist-group { padding: 4mm; background: #fff; box-shadow: none; }
  .checklist-group-head { padding-bottom: 2mm; }
  .checklist-items label { padding: 1.7mm 0; }
  .checklist-items span { color: #111; font-size: 8.3pt; line-height: 1.35; }
  .checklist-content > section:not(.checklist-notes),
  .checklist-content > .article-cta { display: none; }
  .checklist-notes { margin-top: 5mm; }
  .checklist-notes h2 { font-size: 16pt; }
  .note-lines { padding: 4mm; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 与 Linkmetax 主站统一的品牌标识 */
.brand-logo{height:30px;width:auto;display:block;background:#fff;border-radius:8px;padding:3px 6px;box-shadow:0 1px 2px rgba(0,0,0,.06);}
