:root {
  --brand: #157ffc;
  --brand-dark: #0f67d5;
  --ink: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --line: #e2e8f0;
  --soft: #f7faff;
  --soft-blue: #eef6ff;
  --white: #ffffff;
  --shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);

  /* Layout tokens — mobile-first base values */
  --container-max: 1120px;
  --hero-container-max: var(--container-max);
  --footer-container-max: var(--container-max);
  --container-padding: 20px;
  --section-padding-y: 80px;
  --section-padding-y-lg: 96px;
  --section-scroll-offset: 80px;

  /* Typography tokens */
  --h1-size: clamp(2.25rem, 6vw, 4.235rem);
  --h2-size: clamp(1.764rem, 4.2vw, 2.823rem);
  --body-size: 1.058rem;
  --body-line: 1.88;
  --heading-max: 840px;
  --text-max: 720px;
  --hero-title-max: 760px;
  --hero-copy-max: 620px;
  --hero-points-max: 680px;

  /* Grid / spacing tokens */
  --grid-gap: clamp(40px, 5vw, 56px);
  --card-gap: 24px;
  --card-grid-max: var(--container-max);
  --two-card-grid-max: 980px;
  --split-copy-max: 560px;
  --media-min-height: clamp(360px, 38vh, 520px);
  --card-padding: 32px;
  --strip-padding: 18px;
}

*,
::before,
::after {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: inherit;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

ol,
ul,
menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  background: transparent;
}

button {
  cursor: pointer;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(100% - var(--container-padding) * 2, var(--container-max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - var(--container-padding) * 2, var(--container-max));
  height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--brand);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  padding: 10px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: 100%;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  padding: 12px 20px 18px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 8px;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 64px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.64) 48%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 40%, rgba(15, 23, 42, 0.08));
}

.hero-content {
  position: relative;
  width: min(100% - var(--container-padding) * 2, var(--hero-container-max));
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(56px, 8vh, 120px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  padding: 8px 16px;
  font-size: var(--body-size);
  line-height: 1.56;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 127, 252, 0.18);
}

.eyebrow+h2 {
  margin-top: 20px;
}

h1 {
  max-width: var(--hero-title-max);
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: var(--h1-size);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span,
.narrow h2 span {
  color: var(--brand);
}

.hero-copy {
  max-width: var(--hero-copy-max);
  color: var(--muted);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 20px);
  max-width: var(--hero-points-max);
  margin-top: 42px;
}

.hero-points article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 127, 252, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(16px);
}

.hero-points article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), rgba(56, 189, 248, 0.25));
}

.hero-points strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
}

.hero-points h2 {
  margin: 12px 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-points p,
.section p:not(.eyebrow),
.footer-grid p,
.footer-grid dd,
.copyright {
  color: var(--muted);
}

.section {
  border-bottom: 1px solid #eef2f7;
  padding-block: var(--section-padding-y);
  scroll-margin-top: var(--section-scroll-offset);
}

.section h2 {
  max-width: var(--heading-max);
  margin-bottom: 20px;
  font-size: var(--h2-size);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.scene-grid>div,
.solution-grid>div {
  max-width: min(100%, var(--split-copy-max));
}

.scene-grid>div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scene-grid .media-frame,
.solution-grid .image-panel {
  max-width: none;
}

.section p:not(.eyebrow) {
  max-width: var(--text-max);
  color: var(--muted);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

.narrow {
  max-width: var(--container-max);
}

.scene-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 127, 252, 0.12) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.scene-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(21, 127, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 127, 252, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.scene-band .container {
  position: relative;
  z-index: 1;
}

.solution-band,
.team-band,
.jobs-band {
  background: #f7faff;
}

.scene-grid,
.solution-grid,
.scenario-grid,
.split {
  display: grid;
  gap: var(--grid-gap);
  align-items: center;
}

.scene-grid,
.solution-grid,
.scenario-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  margin-top: 20px;
}

.scene-grid {
  align-items: start;
}

.solution-grid {
  align-items: start;
}

.solution-band .solution-grid {
  align-items: start;
}

.solution-band .solution-grid>div {
  align-self: start;
}

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

.scenario-grid {
  align-items: start;
}

.media-frame,
.image-panel,
.scenario-photo {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-frame {
  height: 100%;
  padding: 8px;
  border-color: var(--white);
  box-shadow: 0 20px 35px rgba(30, 64, 175, 0.1);
}

.rounded-media {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.mini-stats span {
  border: 1px solid rgba(21, 127, 252, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 20px 16px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.mini-stats b {
  display: block;
  color: var(--ink);
  font-size: calc(var(--body-size) * 1.1);
  line-height: 1.55;
}

.soft-band {
  position: relative;
  overflow: hidden;
  background: #fbfdff;
}

.soft-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 160px;
  background: linear-gradient(180deg, #eaf4ff 0%, rgba(255, 255, 255, 0) 100%);
}

.soft-band .container {
  position: relative;
}

.card-grid {
  display: grid;
  gap: var(--card-gap);
  max-width: var(--card-grid-max);
  margin-top: 48px;
}

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

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

.value-card,
.feature-card,
.job-card,
.list-card,
.scenario-card,
.cta-strip,
.recruit-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.value-card,
.feature-card,
.job-card {
  padding: var(--card-padding);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(21, 127, 252, 0.1);
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
}

.value-card h3,
.feature-card h3,
.job-card h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: calc(var(--body-size) * 1.05);
  line-height: 1.4;
  font-weight: 700;
}

.feature-card a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
}

.cta-strip,
.recruit-strip {
  max-width: var(--card-grid-max);
  margin-top: 40px;
  padding: var(--strip-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-strip h3,
.recruit-strip h3 {
  margin-bottom: 8px;
  font-size: var(--body-size);
  line-height: 1.55;
}

.button,
.recruit-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 12px 22px;
  font-weight: 800;
  white-space: nowrap;
}

.button:hover,
.recruit-strip a:hover {
  background: var(--brand-dark);
}

.stack {
  display: grid;
  gap: 20px;
}

.list-card,
.scenario-card {
  display: flex;
  gap: 20px;
  padding: 24px;
}

.list-card b,
.scenario-card b {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
}

.scenario-card b {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 999px;
  background: var(--ink);
}

.scenario-card:hover b {
  background: var(--brand);
}

.list-card strong,
.scenario-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: calc(var(--body-size) * 1.05);
  line-height: 1.4;
}

.list-card span,
.scenario-card span {
  color: var(--muted);
  line-height: 1.75;
}

.image-panel,
.scenario-photo {
  position: relative;
  margin: 0;
  padding: 12px;
}

.image-panel img,
.scenario-photo img {
  width: 100%;
  min-height: var(--media-min-height);
  border-radius: 8px;
  object-fit: cover;
}

.image-panel img {
  aspect-ratio: 4 / 3;
}

.image-panel figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.image-panel figcaption span {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(8px);
}

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

.check-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px 18px 14px 38px;
  color: #475569;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
}

.scenario-photo img {
  height: 100%;
  object-position: 30% center;
}

.scenario-photo figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.scenario-photo figcaption strong {
  display: block;
  color: var(--brand);
}

.scenario-photo figcaption span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.center {
  max-width: min(var(--text-max), 820px);
  margin-inline: auto;
  text-align: center;
}

.center .eyebrow {
  margin-inline: auto;
}

.center p:not(.eyebrow) {
  margin-inline: auto;
}

.jobs-band .card-grid,
.jobs-band .recruit-strip {
  margin-inline: auto;
}

.job-card span {
  display: inline-flex;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--brand);
  padding: 6px 14px;
  font-size: 0.86rem;
  font-weight: 800;
}

.job-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.job-card b {
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  padding: 7px 12px;
  font-size: 0.84rem;
}

.recruit-strip {
  background: #0f67d5;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(15, 103, 213, 0.16);
}

.recruit-strip p {
  color: rgba(255, 255, 255, 0.88);
}

.section .recruit-strip p {
  color: rgba(255, 255, 255, 0.88);
}

.recruit-strip a {
  background: #f8fbff;
  color: var(--brand);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.site-footer {
  background: #111827;
  color: var(--white);
  padding: clamp(16px, 3vw, 26px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.92fr) 132px;
  gap: 28px;
  align-items: center;
}

.site-footer .container {
  width: min(100% - var(--container-padding) * 2, var(--footer-container-max));
}

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

.footer-grid h2 {
  margin: 0 0 10px;
  font-size: 0.94rem;
}

.footer-grid p,
.footer-grid dd,
.footer-grid dt,
.copyright {
  font-size: 0.82rem;
}

.footer-grid p {
  margin: 12px 0 8px;
  color: #cbd5e1;
  line-height: 1.65;
}

.footer-grid strong,
.footer-grid a {
  color: #bae6fd;
}

.footer-grid dl {
  margin: 0 0 14px;
}

.footer-grid dt {
  color: #64748b;
}

.footer-grid dd {
  margin: 3px 0 8px;
  color: #cbd5e1;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 6px 20px;
  color: #cbd5e1;
  font-size: 0.82rem;
}

.qr img {
  width: 132px;
  height: 132px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  color: #64748b;
}

.beian-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.beian-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}

.beian-links a:hover {
  color: #bae6fd;
}

.beian-links img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

@media (min-width: 640px) {
  .section {
    padding-block: var(--section-padding-y-lg);
  }

  #about,
  #solutions,
  #scenarios,
  .team-band,
  .solution-band,
  .jobs-band {
    padding-block: 112px;
  }
}

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

  .menu-button {
    display: flex;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.42));
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-points,
  .three,
  .two,
  .scene-grid,
  .solution-grid,
  .scenario-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid,
  .solution-grid,
  .scenario-grid,
  .split {
    align-items: start;
  }

  .footer-grid {
    gap: 30px;
    align-items: start;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  .container,
  .header-inner {
    width: min(100% - var(--container-padding) * 2, var(--container-max));
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 54px;
  }

  .hero-points {
    margin-top: 30px;
  }

  .mini-stats,
  .image-panel figcaption {
    grid-template-columns: 1fr;
  }

  .cta-strip,
  .recruit-strip,
  .copyright {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .recruit-strip a {
    width: 100%;
  }

  .value-card,
  .feature-card,
  .job-card {
    padding: 24px;
  }

  .image-panel img,
  .scenario-photo img {
    min-height: clamp(320px, 42vh, 420px);
  }

  .image-panel figcaption,
  .scenario-photo figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

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

  .site-footer {
    padding-top: 34px;
  }

  .beian-links {
    justify-content: flex-start;
  }

  .qr img {
    width: 128px;
    height: 128px;
  }
}

/* =========================================================
   Modern desktop / large-screen breakpoints
   Targets: 1366×768, 1920×1080, 2560×1440, 3840×2160
   ========================================================= */

@media (min-width: 1024px) {
  :root {
    --section-padding-y: 96px;
    --section-padding-y-lg: 112px;
  }
}

@media (min-width: 1280px) {
  :root {
    --container-max: 1280px;
    --section-padding-y: 112px;
    --section-padding-y-lg: 128px;
    --h1-size: clamp(2.5rem, 5.5vw, 5rem);
    --h2-size: clamp(1.9rem, 4vw, 3.4rem);
    --heading-max: 900px;
    --text-max: 760px;
    --hero-title-max: 860px;
    --hero-copy-max: 680px;
    --hero-points-max: 820px;
    --card-grid-max: 1280px;
    --two-card-grid-max: 1080px;
    --split-copy-max: 600px;
    --card-padding: 34px;
    --strip-padding: 22px;
  }

  .jobs-band .container {
    display: grid;
    grid-template-columns: minmax(320px, 0.36fr) minmax(680px, 0.64fr);
    gap: var(--grid-gap);
    align-items: start;
  }

  .jobs-band .center {
    max-width: var(--split-copy-max);
    margin: 0;
    text-align: left;
  }

  .jobs-band .center .eyebrow,
  .jobs-band .center p:not(.eyebrow) {
    margin-inline: 0;
  }

  .jobs-band .card-grid {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .jobs-band .recruit-strip {
    grid-column: 1 / -1;
    width: 100%;
    max-width: min(100%, 1680px);
    margin-top: 8px;
    margin-inline: 0;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-max: 1380px;
    --section-padding-y: 128px;
    --section-padding-y-lg: 144px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-max: 1680px;
    --container-padding: 24px;
    --section-padding-y: 128px;
    --section-padding-y-lg: 144px;
    --h1-size: clamp(2.75rem, 4vw, 5.4rem);
    --h2-size: clamp(2rem, 2.8vw, 3.35rem);
    --body-size: 1.07rem;
    --heading-max: 960px;
    --text-max: 780px;
    --hero-title-max: 940px;
    --hero-copy-max: 760px;
    --hero-points-max: 980px;
    --card-grid-max: 1680px;
    --two-card-grid-max: 1180px;
    --split-copy-max: 660px;
    --media-min-height: clamp(460px, 44vh, 620px);
    --card-padding: 38px;
    --strip-padding: 26px 30px;
    --footer-container-max: 1560px;
  }

  .scene-grid,
  .solution-grid {
    grid-template-columns: minmax(560px, 0.9fr) minmax(760px, 1.1fr);
  }

  .scenario-grid {
    grid-template-columns: minmax(560px, 0.9fr) minmax(760px, 1.1fr);
  }

  .solution-band .solution-grid {
    gap: clamp(64px, 4vw, 96px);
  }

  .solution-band .image-panel img {
    min-height: clamp(520px, 42vh, 700px);
  }

  .split {
    grid-template-columns: minmax(560px, 0.9fr) minmax(720px, 1.1fr);
  }

  .card-grid {
    margin-top: 56px;
  }

  .list-card,
  .scenario-card {
    padding: 28px;
  }

  .jobs-band .container {
    grid-template-columns: minmax(420px, 0.34fr) minmax(900px, 0.66fr);
  }
}

@media (min-width: 2560px) {
  :root {
    --container-max: 2240px;
    --hero-container-max: 2400px;
    --container-padding: 28px;
    --section-padding-y: 136px;
    --section-padding-y-lg: 152px;
    --h1-size: clamp(3rem, 3vw, 5.6rem);
    --h2-size: clamp(2.1rem, 2.2vw, 3.45rem);
    --body-size: 1.08rem;
    --grid-gap: clamp(48px, 3vw, 72px);
    --hero-title-max: 1040px;
    --hero-copy-max: 820px;
    --hero-points-max: 1080px;
    --card-grid-max: 2000px;
    --two-card-grid-max: 1260px;
    --split-copy-max: 720px;
    --media-min-height: clamp(560px, 42vh, 760px);
    --card-gap: 28px;
    --card-padding: 40px;
    --strip-padding: 30px 34px;
    --footer-container-max: 1680px;
  }

  .jobs-band .recruit-strip {
    max-width: min(100%, 1920px);
  }

  .scene-grid,
  .solution-grid,
  .scenario-grid {
    grid-template-columns: minmax(680px, 0.9fr) minmax(980px, 1.1fr);
  }
}

@media (min-width: 3200px) {
  :root {
    --container-max: 2560px;
    --hero-container-max: 2920px;
    --container-padding: 32px;
    --section-padding-y: 144px;
    --section-padding-y-lg: 160px;
    --card-grid-max: 2160px;
    --two-card-grid-max: 1360px;
    --split-copy-max: 760px;
    --media-min-height: clamp(620px, 40vh, 820px);
    --footer-container-max: 1760px;
  }
}