:root {
  --brand-night: #030712;
  --brand-surface: #071020;
  --brand-primary: #4f6ef7;
  --brand-primary-dark: #3454d1;
  --brand-cyan: #06b6d4;
  --content-bg: #f3f7ff;
  --content-ink: #172554;
  --ink: var(--content-ink);
  --ink-soft: #475569;
  --paper: var(--content-bg);
  --white: #ffffff;
  --line: #d8e2fa;
  --line-dark: #243456;
  --accent: var(--brand-primary);
  --accent-dark: var(--brand-primary-dark);
  --teal: #07879b;
  --mustard: #fbbf24;
  --focus: var(--brand-cyan);
  --content: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner,
.footer-inner,
.footer-legal {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 150px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 700;
}

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

.brand-copy strong {
  font-size: 17px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-nav a {
  padding: 9px 11px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--accent-dark);
}

.desktop-nav .nav-command {
  margin-left: 6px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 42px;
  height: 42px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  height: 2px;
  background: var(--ink);
}

.mobile-nav nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: min(280px, calc(100vw - 32px));
  display: grid;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(23, 26, 24, 0.16);
}

.mobile-nav nav a {
  padding: 12px;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
  color: var(--accent-dark);
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 132px);
  max-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #222824 url("/images/hero-vocational-classroom.webp") center 48% / cover no-repeat;
  color: var(--white);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 15, 12, 0.67);
}

.hero-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 76px 0 58px;
}

.hero-brand,
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero .hero-brand {
  color: #f0c164;
}

.home-hero h1,
.page-masthead h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Noto Serif SC", serif;
  font-size: 60px;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-summary {
  max-width: 680px;
  margin: 24px 0 0;
  color: #edf1ed;
  font-size: 19px;
  line-height: 1.8;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.hero-facts {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-facts div {
  min-width: 0;
  padding: 19px 22px 0 0;
}

.hero-facts dt {
  color: #c9d0cb;
  font-size: 12px;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

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

.signal-item {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

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

.signal-item span {
  color: var(--accent);
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
}

.signal-item strong {
  font-size: 15px;
  line-height: 1.45;
}

.signal-item:hover strong {
  color: var(--accent-dark);
}

.section {
  padding: 96px 0;
}

.section-products,
.principle-section {
  background: var(--white);
}

.section-services {
  background: #e9eee9;
}

.section-cases {
  background: #f7f4ec;
}

.section-insights,
.section-faq,
.content-library-section {
  background: var(--white);
}

.section-process {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.cta-layout h2,
.about-story h2,
.contact-context h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 38px;
  line-height: 1.3;
  text-wrap: balance;
}

.section-heading > p:last-child,
.split-heading > p,
.cta-layout p,
.masthead-inner > p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  align-items: end;
}

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

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.section-products .product-card {
  background: #f8faf7;
}

.product-media {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #cfd5d0;
  text-decoration: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-media:hover img {
  transform: scale(1.025);
}

.product-placeholder {
  padding: 24px;
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  text-align: center;
}

.product-body {
  padding: 25px;
}

.product-category {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.product-body h2,
.product-body h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
}

.product-body > p:not(.product-category) {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.content-scope-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 20px 24px;
  margin-bottom: 36px;
  background: #fff6d7;
  border-left: 4px solid var(--accent);
}

.content-scope-note strong,
.content-scope-note p {
  margin: 0;
}

.content-scope-note p {
  color: var(--ink-soft);
}

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

.content-card-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.content-card-media {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #d8ded9;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.content-card-media:hover img {
  transform: scale(1.025);
}

.content-card-body {
  padding: 22px;
}

.content-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.content-card h2,
.content-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 21px;
  line-height: 1.45;
}

.content-card h2 a,
.content-card h3 a {
  color: inherit;
  text-decoration: none;
}

.content-card h2 a:hover,
.content-card h3 a:hover {
  color: var(--accent-dark);
}

.content-card-body > p:not(.content-card-meta) {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.content-card-body .content-attribution {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #686047;
  font-size: 12px;
}

.product-detail {
  font-size: 14px;
}

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

.tag-list li {
  padding: 4px 8px;
  background: #e7ece7;
  border: 1px solid #d9dfd9;
  border-radius: 3px;
  color: var(--ink-soft);
  font-size: 11px;
}

.boundary-list {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.boundary-list summary {
  cursor: pointer;
  color: var(--accent-dark);
  font-weight: 700;
}

.boundary-list ul {
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.section-command {
  margin: 34px 0 0;
  text-align: right;
}

.section-command a {
  color: var(--accent-dark);
  font-weight: 700;
}

.service-list {
  border-top: 1px solid #bfc8c0;
}

.service-row {
  display: grid;
  grid-template-columns: 54px minmax(210px, 0.65fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid #bfc8c0;
  align-items: start;
}

.service-row > span,
.overview-list article > span,
.principle-grid span {
  color: var(--accent);
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-row h3 {
  font-size: 20px;
}

.service-row p {
  color: var(--ink-soft);
}

.database-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: #bfc8c0;
  border: 1px solid #bfc8c0;
}

.database-services article {
  padding: 24px;
  background: var(--paper);
}

.database-services h3,
.database-services p {
  margin: 0;
}

.database-services p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.section-process .eyebrow {
  color: #f0c164;
}

.section-process .section-heading > p:last-child,
.section-process .process-list p {
  color: #b9c1bc;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li > span {
  color: #f0c164;
  font-weight: 700;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list p {
  margin-top: 4px;
}

.cta-band {
  padding: 66px 0;
  background: #f1d477;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-layout .eyebrow {
  color: var(--accent-dark);
}

.cta-layout p:last-child {
  margin-bottom: 0;
}

.page-masthead {
  padding: 94px 0 78px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 8px solid var(--accent);
}

.masthead-inner h1 {
  font-size: 52px;
}

.masthead-inner > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #c8d0cb;
}

.overview-list {
  border-top: 1px solid var(--line);
}

.overview-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.overview-list h2,
.overview-list p {
  margin: 0;
}

.overview-list h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 27px;
}

.overview-list p {
  max-width: 780px;
  margin-top: 9px;
  color: var(--ink-soft);
}

.overview-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: 70px;
}

.knowledge-layout aside h2,
.knowledge-layout aside p {
  margin: 0;
}

.knowledge-layout aside h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 32px;
}

.knowledge-layout aside p:last-child {
  margin-top: 14px;
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.empty-state {
  max-width: 780px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.empty-state h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 36px;
}

.empty-state > p:not(.eyebrow) {
  margin: 16px 0 28px;
  color: var(--ink-soft);
}

.detail-header {
  padding: 82px 0 64px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 8px solid var(--accent);
}

.detail-header-inner {
  max-width: 980px;
}

.detail-header h1 {
  max-width: 940px;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 48px;
  line-height: 1.3;
}

.detail-summary {
  max-width: 820px;
  margin: 22px 0 0;
  color: #c8d0cb;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #f0c164;
  font-size: 13px;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-content > p,
.rich-content {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.rich-content h2,
.rich-content h3 {
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
}

.rich-content img {
  max-width: 100%;
  height: auto;
}

.detail-aside {
  align-self: start;
  padding: 26px;
  background: #f3f0e7;
  border-top: 4px solid var(--accent);
}

.detail-aside h2,
.detail-aside p {
  margin: 0;
}

.detail-aside h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 25px;
}

.detail-aside p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.detail-aside .button {
  margin-top: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.about-copy {
  font-size: 18px;
}

.about-copy p {
  margin: 0 0 22px;
}

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

.principle-grid article {
  min-width: 0;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-ecosystem-section,
.about-advantages-section {
  background: #e9eee9;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bcc6be;
  border-left: 1px solid #bcc6be;
}

.ecosystem-grid article {
  padding: 32px;
  border-right: 1px solid #bcc6be;
  border-bottom: 1px solid #bcc6be;
}

.ecosystem-grid span {
  display: block;
  color: var(--accent);
  font-family: "Noto Serif SC", serif;
  font-size: 44px;
  font-weight: 700;
}

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

.ecosystem-grid h3 {
  margin-top: 18px;
  font-size: 21px;
}

.ecosystem-grid p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.advantage-list {
  border-top: 1px solid #bcc6be;
}

.advantage-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #bcc6be;
}

.advantage-list span {
  color: var(--accent);
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
}

.advantage-list h3,
.advantage-list p {
  margin: 0;
}

.advantage-list p {
  margin-top: 6px;
  color: var(--ink-soft);
}

.vision-band {
  padding: 78px 0;
  background: #174d4d;
  color: var(--white);
}

.vision-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 42px;
}

.vision-band > div > p:last-child {
  max-width: 840px;
  margin: 20px 0 0;
  color: #d2e0dd;
  font-size: 18px;
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-channels p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-channels a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-qr {
  width: 150px;
  margin: 14px 0 0;
}

.contact-qr img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-qr figcaption {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

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

.principle-grid h3 {
  margin-top: 34px;
}

.principle-grid p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 76px;
  align-items: start;
}

.contact-context ol {
  padding: 0;
  margin: 36px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-context li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-context li > span {
  color: var(--accent);
  font-weight: 700;
}

.contact-context strong,
.contact-context p {
  margin: 0;
}

.contact-context li p {
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-direct a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-form {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form h2 {
  margin: 0 0 24px;
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #aeb6b0;
  border-radius: 3px;
  background: #fbfcfa;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-form > p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.contact-submit-confirmation {
  margin: 0 0 18px !important;
  padding: 11px 13px;
  border: 1px solid #b9d8c8;
  border-radius: 4px;
  background: #eff8f2;
  color: #1e5c3b !important;
  font-size: 13px !important;
  font-weight: 700;
}

.contact-submit-status {
  min-height: 18px;
  margin: 12px 0 0 !important;
  color: var(--accent-dark) !important;
  font-size: 12px !important;
  font-weight: 700;
}

.contact-response-dialog {
  width: min(calc(100% - 32px), 512px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(16, 22, 18, 0.28);
}

.contact-response-dialog::backdrop {
  background: rgba(10, 14, 12, 0.56);
}

.contact-response-card {
  padding: 34px;
}

.contact-response-card .eyebrow {
  margin: 0 0 12px;
}

.contact-response-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
}

.contact-response-card > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.contact-response-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.site-footer {
  padding: 68px 0 24px;
  background: #101311;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 480px;
  color: #aeb8b1;
}

.footer-brand a {
  color: #f0c164;
  font-weight: 700;
}

.footer-wordmark {
  margin-top: 0;
  color: var(--white) !important;
  font-family: "Noto Serif SC", serif;
  font-size: 27px;
  font-weight: 700;
}

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

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #aeb8b1;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #303632;
  color: #89918c;
  font-size: 12px;
}

.live-service-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.live-service-hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.live-service-hero-scrim {
  background: linear-gradient(90deg, rgba(8, 13, 11, 0.9) 0%, rgba(8, 13, 11, 0.72) 48%, rgba(8, 13, 11, 0.22) 100%);
}

.live-service-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 58px;
}

.live-service-hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 54px;
  line-height: 1.24;
}

.live-service-hero-content > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #d7ded9;
  font-size: 18px;
}

.live-service-facts {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-service-facts div {
  padding: 16px 18px;
  background: rgba(11, 18, 15, 0.78);
}

.live-service-facts dt {
  color: #f0c164;
  font-size: 11px;
  font-weight: 700;
}

.live-service-facts dd {
  margin: 5px 0 0;
  font-size: 13px;
}

.live-scenario-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.live-scenario-grid article {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.live-scenario-grid span,
.live-package-card > span,
.live-advantage-grid span {
  color: var(--accent);
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
}

.live-scenario-grid h2,
.live-scenario-grid p {
  margin: 0;
}

.live-scenario-grid h2 {
  margin-top: 15px;
  font-size: 18px;
}

.live-scenario-grid p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.live-package-section,
.live-gallery-section {
  background: #f7f4ec;
}

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

.live-package-card {
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.live-package-card h3,
.live-package-card p {
  margin: 0;
}

.live-package-card h3 {
  margin-top: 20px;
  font-family: "Noto Serif SC", serif;
  font-size: 24px;
  line-height: 1.35;
}

.live-package-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.live-package-card ul {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.live-package-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--accent-dark);
}

.live-workflow-section {
  background: var(--ink);
  color: var(--white);
}

.live-workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.live-workflow-section .eyebrow {
  color: #f0c164;
}

.live-workflow-section .section-heading > p:last-child,
.live-workflow-list p {
  color: #b9c1bc;
}

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

.live-workflow-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.live-workflow-list li > span {
  color: #f0c164;
  font-weight: 700;
}

.live-workflow-list h3,
.live-workflow-list p {
  margin: 0;
}

.live-workflow-list p {
  margin-top: 5px;
}

.live-advantages-section {
  background: var(--white);
}

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

.live-advantage-grid article {
  min-width: 0;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.live-advantage-grid h3 {
  margin-top: 16px;
  font-size: 20px;
}

.live-advantage-grid p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.live-experience-section {
  background: #174d4d;
  color: var(--white);
}

.live-experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
}

.live-experience-layout h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 38px;
  line-height: 1.35;
}

.live-experience-layout > div > p:not(.eyebrow) {
  color: #d2e0dd;
}

.live-experience-boundary {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.live-experience-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.live-experience-lists section {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.live-experience-lists h3 {
  margin: 0;
  color: #f0c164;
}

.live-experience-lists ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.live-experience-lists li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.live-gallery-item {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.live-gallery-item-wide {
  grid-column: 1 / -1;
}

.live-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.live-gallery-item-wide img {
  aspect-ratio: 2.15 / 1;
}

.live-gallery-item figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
}

.live-gallery-item figcaption span {
  color: var(--ink-soft);
  font-size: 13px;
}

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

.secondary-service-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 38px;
  align-items: center;
  margin-top: 50px;
  padding: 28px;
  background: #174d4d;
  color: var(--white);
  border-radius: 6px;
}

.secondary-service-entry-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}

.secondary-service-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-service-entry h2,
.secondary-service-entry h3,
.secondary-service-entry p {
  margin: 0;
}

.secondary-service-entry h2,
.secondary-service-entry h3 {
  margin-top: 10px;
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
}

.secondary-service-entry p:not(.eyebrow) {
  margin-top: 12px;
  color: #d2e0dd;
}

.secondary-service-entry .button {
  margin-top: 20px;
}

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

.vocational-service-card {
  min-width: 0;
  background: var(--white);
}

.vocational-service-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vocational-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.vocational-service-card:hover .vocational-service-media img {
  transform: scale(1.025);
}

.vocational-service-body {
  padding: 22px;
}

.vocational-service-body > span,
.service-scenario-grid article > span,
.service-highlight-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.vocational-service-body h2,
.vocational-service-body h3 {
  margin: 9px 0 11px;
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
  line-height: 1.45;
}

.vocational-service-body h2 a,
.vocational-service-body h3 a {
  color: inherit;
  text-decoration: none;
}

.vocational-service-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-text-link {
  display: inline-flex;
  margin-top: 17px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.home-secondary-service-section {
  background: var(--white);
}

.secondary-service-entry-wide {
  margin-top: 0;
}

.service-detail-hero {
  position: relative;
  min-height: min(72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.service-detail-hero > img,
.service-detail-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail-hero > img {
  object-fit: cover;
}

.service-detail-hero-scrim {
  background: linear-gradient(90deg, rgba(9, 17, 15, 0.9), rgba(9, 17, 15, 0.24));
}

.service-detail-hero-content {
  position: relative;
  padding-top: 128px;
  padding-bottom: 56px;
}

.service-detail-hero-content > * {
  max-width: 760px;
}

.service-detail-hero-content h1 {
  margin: 12px 0 18px;
  font-family: "Noto Serif SC", serif;
  font-size: 54px;
  line-height: 1.2;
}

.service-detail-hero-content > p:not(.eyebrow) {
  color: #e0e8e4;
  font-size: 18px;
  line-height: 1.85;
}

.service-scenario-grid,
.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-scenario-grid article,
.service-highlight-grid article {
  min-width: 0;
  padding: 26px;
  background: var(--white);
}

.service-scenario-grid h3,
.service-highlight-grid h3 {
  margin: 12px 0 10px;
  font-size: 20px;
}

.service-scenario-grid p,
.service-highlight-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.service-deliverables-section {
  background: var(--ink);
  color: var(--white);
}

.service-deliverables-section .eyebrow {
  color: #f0c164;
}

.service-deliverables-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
}

.service-deliverables-layout h2 {
  margin: 12px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: 38px;
  line-height: 1.35;
}

.service-deliverables-layout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-deliverables-layout li {
  padding: 16px;
  background: #242b27;
  border: 1px solid var(--line-dark);
}

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

.service-workflow li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-workflow li > span {
  color: var(--accent);
  font-weight: 700;
}

.service-workflow h3,
.service-workflow p {
  margin: 0;
}

.service-workflow p {
  margin-top: 7px;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .home-hero h1,
  .page-masthead h1 {
    font-size: 46px;
  }

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

  .split-heading,
  .process-layout,
  .about-grid,
  .knowledge-layout,
  .contact-layout,
  .detail-layout,
  .live-workflow-layout,
  .live-experience-layout,
  .secondary-service-entry,
  .service-deliverables-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

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

  .live-scenario-grid,
  .live-advantage-grid,
  .service-scenario-grid,
  .service-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-package-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .footer-legal,
  .hero-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    height: 64px;
  }

  .home-hero {
    min-height: calc(100svh - 104px);
    background-position: 62% center;
  }

  .live-service-hero {
    min-height: 620px;
  }

  .live-service-hero-image {
    object-position: 68% center;
  }

  .live-service-hero-scrim {
    background: linear-gradient(180deg, rgba(8, 13, 11, 0.4) 0%, rgba(8, 13, 11, 0.9) 62%, rgba(8, 13, 11, 0.98) 100%);
  }

  .live-service-hero-content {
    padding-top: 110px;
    padding-bottom: 36px;
  }

  .live-service-hero-content h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .live-service-hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .live-service-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .live-scenario-grid,
  .live-advantage-grid {
    grid-template-columns: 1fr;
  }

  .live-experience-lists,
  .live-gallery-grid {
    grid-template-columns: 1fr;
  }

  .live-gallery-item-wide {
    grid-column: auto;
  }

  .live-gallery-item-wide img {
    aspect-ratio: 16 / 9;
  }

  .live-experience-layout h2 {
    font-size: 30px;
  }

  .hero-inner {
    padding: 58px 0 42px;
  }

  .home-hero h1,
  .page-masthead h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding-top: 12px;
  }

  .hero-facts dd {
    margin: 0;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-item {
    min-height: 76px;
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .signal-item strong {
    font-size: 13px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .cta-layout h2,
  .about-story h2,
  .contact-context h2 {
    font-size: 29px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .product-grid,
  .product-grid-wide,
  .content-card-grid,
  .content-card-grid-compact {
    grid-template-columns: 1fr;
  }

  .vocational-service-grid,
  .service-scenario-grid,
  .service-highlight-grid,
  .service-deliverables-layout ul {
    grid-template-columns: 1fr;
  }

  .service-detail-hero {
    min-height: 620px;
  }

  .service-detail-hero-scrim {
    background: linear-gradient(180deg, rgba(9, 17, 15, 0.32), rgba(9, 17, 15, 0.94) 64%);
  }

  .service-detail-hero-content {
    padding-top: 108px;
    padding-bottom: 36px;
  }

  .service-detail-hero-content h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .content-scope-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-body {
    padding: 20px;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .service-row p {
    grid-column: 2;
  }

  .database-services,
  .principle-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .vision-band h2 {
    font-size: 31px;
  }

  .cta-layout,
  .footer-legal {
    align-items: stretch;
    flex-direction: column;
  }

  .page-masthead {
    padding: 70px 0 58px;
  }

  .overview-list article {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .overview-list h2 {
    font-size: 23px;
  }

  .detail-header {
    padding: 62px 0 50px;
  }

  .detail-header h1 {
    font-size: 32px;
  }

  .detail-layout {
    padding-top: 50px;
    padding-bottom: 68px;
  }

  .form-row,
  .footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-response-dialog {
    width: min(calc(100% - 24px), 512px);
  }

  .contact-response-card {
    padding: 26px 22px;
  }

  .footer-inner {
    gap: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* 2026 reference-driven refresh: dark brand surfaces, bright content surfaces. */
h1,
h2,
h3,
.footer-wordmark,
.home-hero h1,
.page-masthead h1,
.section-heading h2,
.content-card h2,
.content-card h3,
.vocational-service-body h2,
.vocational-service-body h3,
.service-detail-hero-content h1 {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.site-header {
  height: 68px;
  background: rgba(3, 7, 18, 0.94);
  border-bottom-color: rgba(79, 110, 247, 0.28);
  box-shadow: 0 12px 34px rgba(3, 7, 18, 0.16);
}

.brand-mark {
  background: var(--brand-primary);
  color: var(--white);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(79, 110, 247, 0.25);
}

.brand-copy strong {
  color: var(--white);
}

.brand-copy small {
  color: #8ca2ff;
}

.desktop-nav a {
  color: #cbd5e1;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
  background: rgba(79, 110, 247, 0.12);
}

.desktop-nav .nav-command {
  background: var(--brand-primary);
  color: var(--white);
  border-radius: 6px;
}

.desktop-nav .nav-command:hover {
  background: var(--brand-primary-dark);
}

.mobile-nav summary span {
  background: var(--white);
}

.mobile-nav nav {
  background: var(--brand-surface);
  border-color: rgba(79, 110, 247, 0.32);
  box-shadow: 0 20px 60px rgba(3, 7, 18, 0.38);
}

.mobile-nav nav a {
  color: #e2e8f0;
  border-bottom-color: rgba(79, 110, 247, 0.2);
}

.mobile-nav nav a:last-child {
  color: #67e8f9;
}

.home-hero {
  min-height: 640px;
  max-height: 700px;
  background-color: var(--brand-night);
  background-position: center 46%;
}

.hero-scrim {
  background: rgba(3, 7, 18, 0.72);
}

.hero-inner {
  padding: 68px 0 52px;
}

.home-hero .hero-brand,
.home-hero .eyebrow,
.page-masthead .eyebrow,
.service-detail-hero .eyebrow {
  color: #67e8f9;
}

.home-hero h1 {
  max-width: 820px;
  font-size: 62px;
  line-height: 1.16;
}

.hero-summary {
  color: #cbd5e1;
}

.button {
  min-height: 46px;
  border-radius: 6px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  background: var(--brand-primary);
}

.button-primary:hover {
  background: var(--brand-primary-dark);
  box-shadow: 0 10px 28px rgba(79, 110, 247, 0.25);
}

.button-light {
  color: var(--content-ink);
}

.signal-band {
  background: var(--brand-surface);
  border-bottom-color: rgba(79, 110, 247, 0.22);
}

.signal-item {
  color: #e2e8f0;
  border-right-color: rgba(79, 110, 247, 0.22);
}

.signal-item:first-child {
  border-left-color: rgba(79, 110, 247, 0.22);
}

.signal-item span {
  color: #67e8f9;
}

.signal-item:hover strong {
  color: #8ca2ff;
}

.section {
  padding: 78px 0;
}

.section-products,
.section-insights,
.section-faq,
.content-library-section,
.home-secondary-service-section,
.principle-section,
.live-advantages-section,
.live-faq-section {
  background: var(--white);
}

.section-services,
.section-cases,
.about-ecosystem-section,
.about-advantages-section,
.live-package-section,
.live-gallery-section {
  background: var(--content-bg);
}

.section-process,
.live-workflow-section,
.service-deliverables-section,
.site-footer {
  background: var(--brand-night);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.cta-layout h2,
.about-story h2,
.contact-context h2 {
  color: var(--content-ink);
  font-size: 36px;
}

.section-process .section-heading h2,
.live-workflow-section .section-heading h2,
.service-deliverables-section h2 {
  color: var(--white);
}

.eyebrow,
.product-category,
.content-card-meta,
.vocational-service-body > span,
.service-scenario-grid article > span,
.service-highlight-grid article > span,
.service-workflow li > span {
  color: var(--brand-primary);
}

.product-card,
.content-card,
.contact-form,
.live-package-card,
.live-gallery-item {
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 37, 84, 0.07);
}

.section-products .product-card {
  background: var(--white);
}

.product-media,
.content-card-media {
  background: #eaf1ff;
}

.tag-list li {
  background: #edf2ff;
  border-color: #d8e2fa;
  color: #31467c;
}

.content-scope-note,
.detail-aside {
  background: #edf2ff;
  border-color: var(--brand-primary);
}

.content-card-body .content-attribution {
  color: #52658f;
}

.page-masthead {
  padding: 60px 0;
  background: var(--brand-surface);
  border-bottom: 2px solid var(--brand-primary);
  box-shadow: inset 0 -1px 0 rgba(6, 182, 212, 0.38);
}

.page-masthead h1 {
  color: var(--white);
  font-size: 50px;
}

.masthead-inner > p:last-child {
  margin-top: 18px;
  color: #aebbd2;
}

.detail-header {
  padding: 60px 0 54px;
  background: var(--brand-surface);
  border-bottom: 2px solid var(--brand-primary);
}

.detail-header h1 {
  color: var(--white);
}

.vocational-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
  border: 0;
}

.vocational-service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 37, 84, 0.08);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.vocational-service-card:hover {
  border-color: rgba(79, 110, 247, 0.58);
  box-shadow: 0 18px 42px rgba(23, 37, 84, 0.13);
}

.vocational-service-media {
  aspect-ratio: 8 / 5;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #eaf1ff;
  border-bottom: 1px solid var(--line);
}

.vocational-service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 200ms ease;
}

.vocational-service-card:hover .vocational-service-media img {
  transform: none;
  filter: saturate(1.04) contrast(1.02);
}

.vocational-service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.vocational-service-body h2,
.vocational-service-body h3 {
  color: var(--content-ink);
  font-size: 21px;
}

.vocational-service-body p {
  color: var(--ink-soft);
}

.service-text-link {
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-primary-dark);
}

.faq-list summary {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.section-command a,
.footer-nav a,
.footer-brand a,
.vocational-service-body h2 a,
.vocational-service-body h3 a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand,
.mobile-nav summary {
  min-height: 44px;
}

.secondary-service-entry,
.vision-band,
.live-experience-section {
  background: #122454;
  border: 1px solid rgba(79, 110, 247, 0.34);
  border-radius: 8px;
}

.secondary-service-entry h2,
.secondary-service-entry h3,
.vision-band h2,
.live-experience-layout h2 {
  color: var(--white);
}

.secondary-service-entry p:not(.eyebrow),
.vision-band > div > p:last-child,
.live-experience-layout > div > p:not(.eyebrow) {
  color: #b9c8e5;
}

.service-detail-hero {
  min-height: 0;
  display: block;
  padding: 64px 0;
  background: var(--brand-night);
  color: var(--white);
}

.service-detail-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.service-detail-hero-content {
  padding: 0;
}

.service-detail-hero-content > * {
  max-width: 680px;
}

.service-detail-hero-content h1 {
  margin: 10px 0 16px;
  color: var(--white);
  font-size: 48px;
  line-height: 1.18;
}

.service-detail-hero-content > p:not(.eyebrow) {
  color: #b9c8e5;
  font-size: 17px;
  line-height: 1.75;
}

.service-detail-hero-media {
  min-width: 0;
  aspect-ratio: 8 / 5;
  display: grid;
  place-items: center;
  padding: 18px;
  margin: 0;
  overflow: hidden;
  background: #eaf1ff;
  border: 1px solid rgba(140, 162, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.service-detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-scenario-grid,
.service-highlight-grid {
  gap: 20px;
  background: transparent;
  border: 0;
}

.service-scenario-grid article,
.service-highlight-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 37, 84, 0.06);
}

.service-deliverables-layout li {
  background: #0e1a35;
  border-color: #273a66;
  border-radius: 6px;
}

.cta-band {
  padding: 56px 0;
  background: #dbe7ff;
}

.cta-layout .eyebrow {
  color: var(--brand-primary-dark);
}

.site-footer {
  border-top: 1px solid rgba(79, 110, 247, 0.22);
}

.footer-brand p,
.footer-nav a {
  color: #94a3b8;
}

.footer-brand a {
  color: #67e8f9;
}

.footer-legal {
  border-top-color: rgba(79, 110, 247, 0.2);
  color: #71809d;
}

.live-service-hero {
  background: var(--brand-night);
}

.live-service-hero-scrim {
  background: rgba(3, 7, 18, 0.72);
}

.live-service-facts div {
  background: rgba(7, 16, 32, 0.82);
}

@media (max-width: 1100px) {
  .vocational-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .service-detail-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-detail-hero-content > * {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 64px;
  }

  .home-hero {
    min-height: 580px;
    max-height: none;
    background-position: 62% center;
  }

  .hero-inner {
    padding: 52px 0 40px;
  }

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

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .page-masthead {
    padding: 42px 0;
  }

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

  .masthead-inner > p:last-child {
    margin-top: 14px;
    font-size: 15px;
  }

  .vocational-service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vocational-service-media {
    padding: 10px;
  }

  .service-detail-hero {
    min-height: 0;
    padding: 40px 0;
  }

  .service-detail-hero-content {
    padding: 0;
  }

  .service-detail-hero-content h1 {
    font-size: 36px;
  }

  .service-detail-hero-media {
    padding: 10px;
  }

  .secondary-service-entry {
    padding: 20px;
  }

  .cta-band {
    padding: 46px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vocational-service-card,
  .vocational-service-media img,
  .desktop-nav a,
  .button {
    transition: none;
  }
}
