:root {
  color-scheme: light;
  --ink: #101722;
  --ink-soft: #4a5568;
  --paper: #eef3f7;
  --white: #ffffff;
  --midnight: #081421;
  --blue: #00799b;
  --blue-strong: #20c3dc;
  --green: #4fa56a;
  --amber: #b88422;
  --line: rgba(16, 23, 34, 0.13);
  --dark-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 50px rgba(3, 13, 28, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.en {
  display: none;
}

body.lang-en .cn {
  display: none;
}

body.lang-en .en {
  display: inline;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(8, 20, 33, 0.86);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  flex: 1 1 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
  border-color: var(--blue-strong);
}

.language-toggle,
.menu-button {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.language-toggle {
  min-width: 62px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 42px;
  height: 38px;
  padding: 9px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 72px) 34px;
  color: var(--white);
  background: var(--midnight);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.72) 42%, rgba(7, 17, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.18) 55%, rgba(7, 17, 31, 0.52) 100%),
    url("assets/hero-cleanroom.png") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.7vw, 18px);
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
}

.primary-action {
  color: var(--midnight);
  background: var(--blue-strong);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(660px, calc(100% - 40px));
  border: 1px solid var(--dark-line);
  background: var(--dark-line);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-height: 96px;
  padding: 18px 20px;
  background: rgba(7, 17, 31, 0.82);
}

.hero-panel strong {
  display: block;
  color: var(--blue-strong);
  font-size: 14px;
}

.hero-panel div > span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-panel strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
}

body.lang-en .hero-panel .en {
  display: block;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: 24px auto 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.quick-stats div {
  min-height: 150px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats strong {
  display: block;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.12;
  color: var(--ink);
}

.quick-stats div > span {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.quick-stats strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
}

body.lang-en .quick-stats .en {
  display: block;
}

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

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--ink-soft);
}

.section-label > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.matrix-copy h2,
.review-head h2,
.page-band h2,
.contact-panel h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.contact-panel p,
.matrix-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.process-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.capabilities-section,
.cases-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
}

.capabilities-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: block;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 680px;
  margin-top: 18px;
}

.section-heading.compact {
  display: block;
  margin-bottom: 30px;
}

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

.service-card {
  display: block;
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
}

.process-link {
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process-link:hover,
.process-link:focus-visible {
  border-color: rgba(0, 121, 155, 0.55);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.expanded-grid .service-card {
  min-height: 236px;
}

.service-index {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.service-card h2,
.service-card h3,
.case-card h2,
.case-card h3,
.workflow h2,
.workflow h3,
.news-list h2,
.news-list h3,
.page-card h2,
.review-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p,
.workflow p,
.news-list p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.card-action {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

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

.process-entry-section {
  padding-top: 76px;
}

.requirement-source {
  margin: 0 0 22px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 121, 155, 0.22);
  border-radius: 6px;
  background: rgba(32, 195, 220, 0.07);
}

.requirement-source strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
}

.requirement-source p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.process-detail {
  scroll-margin-top: 96px;
  min-height: 390px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.process-detail h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.process-detail dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.process-detail dl div {
  display: grid;
  gap: 6px;
}

.process-detail dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.process-detail dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.match-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: #f5f8fb;
  font-size: 12px;
  font-weight: 700;
}

.inline-entry {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid rgba(0, 121, 155, 0.28);
  border-radius: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  background: rgba(32, 195, 220, 0.08);
}

.inline-entry::after {
  content: "→";
  margin-left: 8px;
}

.process-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 84px;
}

.process-hero-page {
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--line);
}

.process-hero-page h1 {
  margin: 0;
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.process-hero-page p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.process-hero-page .secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.process-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.process-page-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.process-page-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.process-page-panel p,
.process-page-panel li {
  color: var(--ink-soft);
  font-size: 14px;
}

.process-page-panel ul:not(.match-tags) {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.process-wide-panel {
  margin-top: 14px;
}

.email-template {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7fafc;
}

.email-template p {
  margin: 0;
}

.home-main {
  background: var(--paper);
}

.home-hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
}

.home-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 23, 0.98) 0%, rgba(5, 13, 23, 0.9) 48%, rgba(5, 13, 23, 0.48) 100%),
    linear-gradient(0deg, rgba(5, 13, 23, 0.95), rgba(5, 13, 23, 0.24)),
    url("assets/sem-grid.png") center right / cover no-repeat;
  transform: scale(1.01);
}

.home-hero-lab .home-hero-backdrop {
  transform: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 195, 220, 0.72), transparent);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 460px);
  gap: 56px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 118px 0 58px;
}

.home-hero-copy h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-statement {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.18;
}

.home-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.home-signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.home-route-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--dark-line);
  background: var(--dark-line);
  box-shadow: var(--shadow);
}

.home-review-board {
  align-self: center;
}

.review-board-head {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(32, 195, 220, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 17, 31, 0.86);
}

.review-board-head .review-status {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 900;
}

.review-board-head strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.18;
}

.review-flow {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--dark-line);
}

.review-flow li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
  background: rgba(7, 17, 31, 0.84);
}

.review-flow li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(32, 195, 220, 0.28);
  border-radius: 6px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
}

.review-flow strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.review-flow p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.home-route-panel > p,
.home-route-panel > div {
  margin: 0;
  padding: 18px 20px;
  background: rgba(7, 17, 31, 0.84);
}

.home-route-panel > p {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
}

.home-route-panel strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.home-route-panel span span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.home-review-board > .review-board-head {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(32, 195, 220, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 17, 31, 0.86);
}

.home-review-board .review-board-head strong {
  font-size: 22px;
  line-height: 1.18;
}

.home-entry-section,
.home-system-section,
.home-index-section,
.home-process-section,
.home-proof-section,
.home-cta-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.home-system-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 74px 0 34px;
}

.home-system-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-system-copy p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

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

.portal-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.portal-card:hover,
.portal-card:focus-visible {
  border-color: rgba(0, 121, 155, 0.55);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.11);
  transform: translateY(-2px);
  outline: none;
}

.portal-card > span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 121, 155, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(32, 195, 220, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.portal-card h3 {
  margin: 46px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
}

.portal-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.portal-card.primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.98), rgba(12, 66, 82, 0.94)),
    url("assets/sem-pillars.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
}

.portal-card.primary > span {
  border-color: rgba(32, 195, 220, 0.42);
  color: var(--blue-strong);
  background: rgba(32, 195, 220, 0.12);
}

.portal-card.primary h3,
.portal-card.primary p {
  color: var(--white);
}

.home-index-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.home-index-col {
  display: grid;
  background: var(--white);
}

.index-label {
  display: block;
  padding: 18px 20px;
  color: var(--blue);
  background: #f7fafc;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.home-index-col a {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.home-index-col a:last-child {
  border-bottom: 0;
}

.home-index-col a:hover,
.home-index-col a:focus-visible {
  color: var(--blue);
  background: #f7fafc;
  outline: none;
}

.home-index-col strong {
  color: var(--ink);
  font-size: 16px;
}

.home-index-col a:hover strong,
.home-index-col a:focus-visible strong {
  color: var(--blue);
}

.home-index-col a > span {
  color: var(--ink-soft);
  font-size: 13px;
}

.home-entry-section {
  padding: 70px 0;
}

.home-section-head {
  display: block;
  margin-bottom: 24px;
}

.home-section-head h2 {
  max-width: 760px;
}

.home-section-head h2,
.home-process-copy h2,
.home-proof-copy h2,
.home-cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.home-entry-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-entry-card:hover,
.home-entry-card:focus-visible {
  border-color: rgba(0, 121, 155, 0.55);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.home-entry-card > span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.home-entry-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.home-entry-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.home-entry-card.accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.98), rgba(12, 66, 82, 0.94)),
    url("assets/sem-grid.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
}

.home-entry-card.accent > span,
.home-entry-card.accent h3,
.home-entry-card.accent p {
  color: var(--white);
}

.home-process-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.home-process-copy {
  position: sticky;
  top: 104px;
}

.home-process-copy p:not(.eyebrow),
.home-proof-copy p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.home-process-list {
  display: grid;
  gap: 10px;
}

.home-process-list a {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-process-list a:hover,
.home-process-list a:focus-visible {
  border-color: rgba(0, 121, 155, 0.5);
  box-shadow: 0 14px 34px rgba(0, 65, 88, 0.1);
  outline: none;
}

.home-process-list a > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.home-process-list strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.home-proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.78fr);
  gap: 46px;
  align-items: center;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.home-proof-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-proof-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.home-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 72px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.98), rgba(12, 64, 78, 0.95)),
    url("assets/process-cleanroom.png") center / cover no-repeat;
}

.home-cta-section h2 {
  color: var(--white);
}

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

.home-cta-section .secondary-action {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.standalone-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 84px;
}

.standalone-hero {
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--line);
}

.standalone-hero h1 {
  margin: 0;
  max-width: 960px;
  color: var(--ink);
  font-size: clamp(42px, 5.8vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.standalone-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.standalone-hero .secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.resource-page {
  padding-bottom: 96px;
}

.resource-hero h1 {
  max-width: 1040px;
}

.resource-module-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 70px;
}

.resource-module-tile {
  display: block;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-module-tile:hover,
.resource-module-tile:focus-visible {
  border-color: rgba(0, 121, 155, 0.5);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.resource-module-tile.is-current {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.97), rgba(12, 66, 82, 0.92)),
    url("assets/sem-grid.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
}

.resource-module-tile > span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.resource-module-tile.is-current > span {
  color: var(--blue-strong);
}

.resource-module-tile h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.resource-module-tile.is-current h2,
.resource-module-tile.is-current p {
  color: var(--white);
}

.resource-module-tile p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.resource-module-index-large {
  margin-bottom: 52px;
}

.resource-module {
  scroll-margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.resource-module-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.86fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 26px;
}

.resource-module-head h2 {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: 0;
}

.resource-module-head p:not(.eyebrow) {
  grid-column: 2;
  margin: -16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.resource-note {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  margin: 24px 0 20px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 121, 155, 0.18);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(32, 195, 220, 0.1), rgba(255, 255, 255, 0.9));
}

.resource-note strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.resource-note p {
  margin: 0;
  color: var(--ink-soft);
}

.resource-section {
  scroll-margin-top: 96px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.resource-section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 26px;
}

.resource-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-card:hover,
.resource-card:focus-within {
  border-color: rgba(0, 121, 155, 0.48);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.1);
  transform: translateY(-2px);
}

.resource-card.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.97), rgba(12, 66, 82, 0.92)),
    url("assets/sem-grid.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
}

.resource-card.featured h3,
.resource-card.featured p {
  color: var(--white);
}

.resource-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.18;
}

.resource-card p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.resource-tag {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 121, 155, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(32, 195, 220, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.resource-card.featured .resource-tag {
  border-color: rgba(32, 195, 220, 0.42);
  color: var(--blue-strong);
  background: rgba(32, 195, 220, 0.12);
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #f7fafc;
  font-size: 12px;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.resource-links a:hover,
.resource-links a:focus-visible {
  border-color: rgba(0, 121, 155, 0.5);
  color: var(--blue);
  background: var(--white);
  outline: none;
}

.resource-card.featured .resource-links a {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.resource-route article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.resource-route article > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.resource-route h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.resource-route p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.tutorial-grid .resource-card {
  min-height: 250px;
}

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

.resource-check-grid > div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-check-grid > div:nth-child(4n) {
  border-right: 0;
}

.resource-check-grid > div:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.resource-check-grid strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.resource-check-grid span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.resource-cta {
  margin-top: 24px;
  margin-bottom: 0;
}

.resource-help {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: start;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.resource-help h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

.resource-help p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.resource-help-methods {
  display: grid;
  gap: 10px;
}

.resource-help-methods a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.resource-help-methods a:hover,
.resource-help-methods a:focus-visible {
  border-color: rgba(0, 121, 155, 0.46);
  box-shadow: 0 12px 28px rgba(0, 65, 88, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.resource-help-methods span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.resource-help-methods strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.page-grid-spacing {
  margin-top: 24px;
}

.page-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

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

.page-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.page-card p,
.page-card li {
  color: var(--ink-soft);
  font-size: 14px;
}

.page-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.page-band {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
  margin-top: 24px;
  padding: 34px;
  border: 1px solid rgba(0, 121, 155, 0.18);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(32, 195, 220, 0.08), rgba(255, 255, 255, 0.82));
}

.page-band p {
  margin: 0;
  color: var(--ink-soft);
}

.direction-page .page-card {
  min-height: 320px;
}

.route-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

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

.route-steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(0, 121, 155, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.64);
}

.route-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  border-radius: 6px;
  color: var(--blue);
  background: rgba(32, 195, 220, 0.11);
  font-size: 12px;
}

.route-steps span {
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 70px;
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.faq-item h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.16;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 121, 155, 0.24);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(32, 195, 220, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 70px;
}

.glossary-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.glossary-grid article:hover {
  border-color: rgba(0, 121, 155, 0.45);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.1);
  transform: translateY(-2px);
}

.glossary-grid article > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 10px;
  border: 1px solid rgba(0, 121, 155, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(32, 195, 220, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.glossary-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.glossary-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.light-cases .case-card {
  border-color: var(--line);
  background: var(--white);
}

.light-cases .case-card h2 {
  color: var(--ink);
}

.light-cases .case-card p {
  color: var(--ink-soft);
}

.standalone-contact {
  margin-top: 24px;
  padding: 34px;
  border-radius: 6px;
  background: var(--midnight);
}

.standalone-contact .contact-methods a {
  background: rgba(255, 255, 255, 0.07);
}

.request-intake-section {
  scroll-margin-top: 96px;
  margin-top: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.request-intake-head {
  display: block;
  margin-bottom: 26px;
}

.request-intake-head h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.request-intake-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.request-form {
  display: grid;
  gap: 16px;
}

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

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8fbfd;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.request-form textarea {
  min-height: 148px;
  padding-top: 12px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(0, 121, 155, 0.62);
  box-shadow: 0 0 0 3px rgba(32, 195, 220, 0.16);
  background: var(--white);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(74, 85, 104, 0.58);
}

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

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 4px;
}

.request-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.review-section {
  padding-top: 92px;
}

.review-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: end;
}

.review-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.review-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.review-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-strong));
}

.review-card.primary {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.96), rgba(13, 48, 62, 0.92)),
    url("assets/sem-cross-section.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
}

.review-card.primary h3,
.review-card.primary p {
  color: var(--white);
}

.review-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.review-kicker,
.review-step {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card.primary .review-kicker {
  color: var(--blue-strong);
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.review-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: #f4f8fb;
  font-size: 12px;
  font-weight: 700;
}

.matrix-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
  align-items: start;
}

.matrix-table {
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 23, 34, 0.04);
}

.matrix-table > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  min-height: 82px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.matrix-table strong {
  color: var(--ink);
}

.matrix-table span {
  color: var(--ink-soft);
}

.cases-section {
  color: var(--white);
  background: #10151b;
}

.cases-section .section-label,
.cases-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.cases-section .section-heading h2,
.cases-section .section-label p {
  color: var(--white);
}

.light-cases .case-card span {
  color: var(--blue);
}

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

.case-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #1b2026;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.case-card:hover,
.case-card:focus-visible {
  border-color: rgba(32, 195, 220, 0.46);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.case-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-card div {
  padding: 20px;
}

.case-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h2,
.case-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

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

.featured-case {
  grid-column: span 2;
}

.featured-case img {
  height: 340px;
}

.workflow-section {
  padding-bottom: 56px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.workflow > div {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.workflow > div:last-child {
  border-right: 0;
}

.workflow span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--amber);
  font-weight: 800;
}

.news-section {
  padding-top: 70px;
}

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

.news-list article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.news-list time {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.news-page,
.news-article-page {
  padding-bottom: 96px;
}

.news-hero h1,
.news-article-head h1 {
  max-width: 1040px;
}

.news-index-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.news-index-card {
  display: block;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.news-index-card:hover,
.news-index-card:focus-visible {
  border-color: rgba(0, 121, 155, 0.5);
  box-shadow: 0 18px 42px rgba(0, 65, 88, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.news-index-card.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.98), rgba(12, 66, 82, 0.92)),
    url("assets/sem-grid.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
}

.news-index-card time {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
}

.news-index-card h2 {
  max-width: 760px;
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.news-index-card p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.news-index-card .card-action {
  color: var(--blue-strong);
}

.news-article {
  padding-top: 18px;
}

.news-article-head {
  padding: 62px 0 46px;
  border-bottom: 1px solid var(--line);
}

.news-article-head time {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.news-article-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.news-article-head p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.news-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.news-note {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.news-note span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.news-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
}

.news-note p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.news-process-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.news-process-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

.news-process-note > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.news-sources {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.news-sources h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.news-sources ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.news-sources a {
  color: var(--blue);
  font-weight: 800;
}

.news-article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}

.news-article-nav .secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.contact-section {
  width: 100%;
  max-width: none;
  padding: 78px max(20px, calc((100% - var(--max)) / 2));
  background: var(--midnight);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: center;
  color: var(--white);
}

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

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  display: block;
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-methods span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.contact-methods strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.site-note {
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  font-size: 14px !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(20px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: #050a12;
}

.site-footer .brand img {
  width: 36px;
  height: 36px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

body:not(.lang-en) .en {
  display: none !important;
}

body.lang-en .cn {
  display: none !important;
}

body.lang-en .en {
  display: inline !important;
}

body.lang-en .hero-panel .en,
body.lang-en .quick-stats .en,
body.lang-en .matrix-table .en,
body.lang-en .case-card .en,
body.lang-en .contact-methods .en,
body.lang-en .resource-check-grid .en {
  display: block !important;
}

/* Equipment selection */
.equipment-page {
  padding-bottom: 96px;
}

.equipment-hero {
  padding-bottom: 56px;
}

.equipment-hero > p:not(.eyebrow) {
  max-width: 820px;
}

.equipment-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
}

.equipment-quick-facts > div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.equipment-quick-facts > div:last-child {
  border-right: 0;
}

.equipment-quick-facts strong,
.equipment-quick-facts span {
  display: block;
}

.equipment-quick-facts strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.equipment-quick-facts > div > span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.equipment-section,
.equipment-compare-section {
  padding: 76px 0 0;
}

.equipment-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 30px;
}

.equipment-section-head h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.equipment-section-head > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

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

.equipment-product-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
}

.equipment-product-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  padding: 22px;
  background: #e6edf1;
}

.equipment-product-wide .equipment-product-media {
  min-height: 100%;
  aspect-ratio: auto;
}

.equipment-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.equipment-product-body {
  padding: 28px;
}

.equipment-type {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.equipment-product h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.05;
}

.equipment-name {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.equipment-product-body > p:not(.equipment-name):not(.equipment-option) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.equipment-specs {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.equipment-specs > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.equipment-specs dt,
.equipment-specs dd {
  margin: 0;
  font-size: 13px;
}

.equipment-specs dt {
  color: var(--ink-soft);
}

.equipment-specs dd {
  color: var(--ink);
  font-weight: 700;
}

.equipment-option {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  color: var(--ink-soft);
  background: rgba(184, 132, 34, 0.08);
  font-size: 13px;
}

.equipment-compare-section {
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.equipment-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.equipment-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}

.equipment-table th,
.equipment-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  vertical-align: top;
}

.equipment-table thead th {
  color: var(--ink);
  background: #e6edf1;
  font-weight: 800;
}

.equipment-table tbody th {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.equipment-table tbody tr:last-child th,
.equipment-table tbody tr:last-child td {
  border-bottom: 0;
}

.equipment-inputs {
  margin-top: 76px;
}

.equipment-inputs h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.14;
}

.equipment-inputs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  margin: 0;
  padding-left: 20px;
}

.equipment-inputs li {
  color: var(--ink-soft);
  font-size: 14px;
}

.equipment-scope .secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

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

  .menu-button {
    display: inline-block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(7, 17, 31, 0.96);
    border-bottom: 1px solid var(--dark-line);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .language-toggle {
    order: 2;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: 108px;
    padding-bottom: 34px;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.58)),
      linear-gradient(0deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.18)),
      url("assets/hero-cleanroom.png") center right / cover no-repeat;
  }

  .hero-panel {
    position: relative;
    left: 0;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  .hero-panel div {
    min-height: 72px;
    padding: 14px 16px;
  }

  .quick-stats,
  .home-hero-inner,
  .review-flow li,
  .home-system-section,
  .home-portal-grid,
  .home-index-section,
  .home-section-head,
  .home-entry-grid,
  .home-process-section,
  .home-process-list a,
  .home-proof-section,
  .home-cta-section,
  .service-grid,
  .process-detail-grid,
  .process-page-grid,
  .page-card-grid.three,
  .page-card-grid.two,
  .request-intake-head,
  .form-grid,
  .case-grid,
  .workflow,
  .news-list,
  .split-layout,
  .matrix-section,
  .review-head,
  .review-board,
  .page-band,
  .faq-item,
  .glossary-grid,
  .contact-panel,
  .resource-module-index,
  .resource-module-head,
  .resource-note,
  .resource-section-head,
  .resource-grid,
  .resource-route,
  .resource-check-grid,
  .resource-help,
  .news-note-grid,
  .news-process-note {
    grid-template-columns: 1fr;
  }

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

  .equipment-quick-facts > div:nth-child(2) {
    border-right: 0;
  }

  .equipment-quick-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .equipment-section-head,
  .equipment-products,
  .equipment-product-wide {
    grid-template-columns: 1fr;
  }

  .equipment-section-head {
    gap: 16px;
    align-items: start;
  }

  .equipment-product-wide {
    grid-column: auto;
  }

  .equipment-product-wide .equipment-product-media {
    min-height: 360px;
  }

  .quick-stats div,
  .workflow > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats div:last-child,
  .workflow > div:last-child {
    border-bottom: 0;
  }

  .resource-section {
    padding: 58px 0;
  }

  .resource-module-index {
    margin-bottom: 48px;
  }

  .resource-module {
    padding-top: 56px;
  }

  .resource-module-head h2,
  .resource-module-head p:not(.eyebrow) {
    grid-column: auto;
  }

  .resource-module-head p:not(.eyebrow) {
    margin-top: -18px;
  }

  .resource-note {
    gap: 10px;
    margin-bottom: 52px;
  }

  .resource-card,
  .resource-route article {
    min-height: auto;
  }

  .resource-check-grid > div,
  .resource-check-grid > div:nth-child(4n),
  .resource-check-grid > div:nth-last-child(-n + 4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .resource-check-grid > div:last-child {
    border-bottom: 0;
  }

  .resource-help {
    gap: 24px;
  }

  .news-note-grid {
    padding: 58px 0;
  }

  .news-note,
  .news-index-card {
    min-height: auto;
  }

  .news-process-note {
    gap: 22px;
    padding: 56px 0;
  }

  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

  .home-hero-inner {
    gap: 30px;
    padding-top: 108px;
  }

  .home-route-panel > p,
  .home-route-panel > div {
    padding: 15px 16px;
  }

  .home-process-copy {
    position: static;
  }

  .home-system-section {
    padding-top: 58px;
  }

  .portal-card {
    min-height: auto;
  }

  .portal-card h3 {
    margin-top: 34px;
  }

  .home-process-list a {
    gap: 8px;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .request-intake-section {
    padding: 24px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .featured-case {
    grid-column: span 1;
  }

  .featured-case img,
  .case-card img {
    height: 270px;
  }

  .process-photo img {
    height: 440px;
  }

  .process-page {
    padding-top: 104px;
  }

  .standalone-page {
    padding-top: 104px;
  }

  .review-card.primary {
    grid-column: span 1;
  }

  .contact-panel {
    gap: 30px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .language-toggle {
    min-width: 52px;
    padding: 0 10px;
  }

  .hero {
    min-height: 89vh;
    padding-inline: 18px;
  }

  .home-hero-inner {
    width: calc(100% - 32px);
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .home-hero-copy h1 {
    font-size: clamp(58px, 19vw, 96px);
  }

  .hero-statement {
    font-size: 24px;
  }

  .process-hero-page h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .standalone-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .news-article-head h1,
  .news-process-note h2,
  .news-index-card h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

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

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

  .section,
  .quick-stats {
    width: calc(100% - 32px);
  }

  .section {
    padding: 70px 0;
  }

  .home-entry-section,
  .home-system-section,
  .home-index-section,
  .home-process-section,
  .home-proof-section {
    width: calc(100% - 32px);
    padding: 60px 0;
  }

  .home-index-section {
    padding: 0;
  }

  .home-cta-section {
    width: calc(100% - 32px);
    padding: 26px;
  }

  .request-intake-section {
    padding: 20px;
  }

  .equipment-hero {
    padding-top: 42px;
    padding-bottom: 38px;
  }

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

  .equipment-quick-facts {
    grid-template-columns: 1fr;
  }

  .equipment-quick-facts > div,
  .equipment-quick-facts > div:nth-child(2) {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .equipment-quick-facts > div:last-child {
    border-bottom: 0;
  }

  .equipment-section,
  .equipment-compare-section {
    padding-top: 58px;
  }

  .equipment-product-media,
  .equipment-product-wide .equipment-product-media {
    min-height: 250px;
    padding: 16px;
  }

  .equipment-product-body {
    padding: 22px 20px;
  }

  .equipment-product h2 {
    font-size: 28px;
  }

  .equipment-specs > div {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .equipment-inputs {
    margin-top: 58px;
    padding: 24px 20px;
  }

  .equipment-inputs ul {
    grid-template-columns: 1fr;
    padding-left: 18px;
  }

  .section-copy h2,
  .section-heading h2,
  .matrix-copy h2,
  .review-head h2,
  .page-band h2,
  .home-section-head h2,
  .home-system-copy h2,
  .home-process-copy h2,
  .home-proof-copy h2,
  .home-cta-section h2,
  .request-intake-head h2,
  .contact-panel h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .matrix-table > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-photo img {
    height: 360px;
  }

  .case-card img,
  .featured-case img {
    height: 220px;
  }

  .home-proof-image img {
    height: 300px;
  }

  .news-index-card {
    padding: 24px;
  }

  .news-index-card time,
  .news-note span {
    margin-bottom: 24px;
  }

  .news-note h2 {
    font-size: 20px;
  }

  .news-note p {
    font-size: 15px;
  }

  .news-article-head {
    padding: 46px 0 36px;
  }

  .news-note-grid {
    gap: 12px;
  }
}
