:root {
  --ink: #0e120f;
  --ink-soft: #4a504b;
  --muted: #7b827c;
  --canvas: #f7f8f3;
  --paper: #ffffff;
  --paper-soft: #eef2ea;
  --charcoal: #101411;
  --charcoal-2: #181e1a;
  --line: #dfe5dc;
  --line-dark: #283129;
  --green: #9fea70;
  --green-deep: #1f6b36;
  --blue: #2775ff;
  --amber: #ffb84d;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(16, 20, 17, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Aptos", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 40px, var(--max));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(223, 229, 220, 0.82);
  border-radius: var(--radius);
  background: rgba(247, 248, 243, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-elevated {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(205, 214, 204, 0.95);
  box-shadow: 0 10px 34px rgba(16, 20, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo-mark {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 17, 0.1);
  border-radius: 7px;
  background: #ffffff;
}

.brand-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  padding: 9px 0;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #ffffff;
}

.button-primary:hover,
.nav-cta:hover {
  background: #242b25;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 46px;
  width: min(100% - 40px, var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 74px 0 54px;
}

.company-line {
  margin: 0 0 22px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 860;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

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

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(230px, 48%);
  padding: 18px;
  border: 1px solid rgba(159, 234, 112, 0.36);
  border-radius: var(--radius);
  background: rgba(16, 20, 17, 0.92);
  color: #ffffff;
}

.signal-panel strong,
.signal-panel span {
  display: block;
}

.signal-panel strong {
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.signal-panel span {
  margin-top: 8px;
  color: #dbe6d9;
  font-size: 13px;
}

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

.section-kicker {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  grid-template-columns: 0.78fr 0.68fr;
}

.section-heading h2,
.workflow-copy h2,
.partner-panel h2,
.cta-copy h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 820;
}

.section-heading p,
.workflow-copy p,
.partner-panel p,
.cta-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.74;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.solution-card {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.solution-card:last-child {
  border-right: 0;
}

.solution-card span {
  display: block;
  margin-bottom: 70px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.solution-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

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

.product-section {
  width: 100%;
  max-width: none;
  padding: 112px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: #ffffff;
}

.product-section .section-heading p {
  color: #bdc7bd;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--charcoal-2);
}

.product-card.featured {
  background: var(--green);
  color: var(--ink);
}

.product-card.featured .product-logo-icon {
  background: rgba(255, 255, 255, 0.68);
}

.product-type {
  margin-bottom: 22px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.product-logo {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 54px;
  margin-bottom: 22px;
}

.product-logo img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 54px;
  object-fit: contain;
}

.product-logo-tuoju {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-logo-tuoju img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: 5px;
}

.product-logo-wide {
  min-height: 58px;
  padding: 4px 0;
}

.product-logo-icon {
  width: 62px;
  height: 62px;
  min-height: 62px;
  padding: 7px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.product-logo-icon img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.product-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.15;
}

.product-card p:not(.product-type) {
  color: inherit;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.78;
}

.product-card a {
  display: inline-flex;
  align-self: flex-start;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 64px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 110px;
}

.workflow-copy h2 {
  margin-bottom: 22px;
}

.workflow {
  display: grid;
  gap: 14px;
}

.workflow-step {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.workflow-step strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green-deep);
  font-size: 52px;
  line-height: 1;
}

.workflow-step span {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 820;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.workflow-arrow {
  width: 2px;
  height: 42px;
  margin-left: 36px;
  background: var(--green-deep);
}

.partner-section {
  padding-top: 20px;
}

.media-section {
  padding-top: 48px;
  padding-bottom: 54px;
}

.media-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 20, 17, 0.06);
}

.media-card-large {
  align-items: start;
  padding: 34px;
}

.media-source {
  display: grid;
  gap: 7px;
  align-self: stretch;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.media-source span {
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 850;
}

.media-source strong {
  font-size: 20px;
  line-height: 1.2;
}

.media-source small {
  color: var(--muted);
  font-size: 13px;
}

.media-copy h2 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.25;
}

.media-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.media-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.partner-panel {
  display: grid;
  grid-template-columns: 0.78fr 0.62fr;
  gap: 60px;
  padding: 54px;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.partner-panel h2 {
  margin-bottom: 22px;
}

.partner-list {
  display: grid;
  gap: 12px;
}

.partner-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.partner-list strong,
.partner-list span {
  display: block;
}

.partner-list strong {
  margin-bottom: 8px;
  font-size: 20px;
}

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

.cta-section {
  display: grid;
  grid-template-columns: 0.88fr 0.7fr;
  gap: 68px;
  align-items: start;
  padding-top: 70px;
}

.cta-copy h2 {
  margin-bottom: 24px;
  font-size: 56px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(16, 20, 17, 0.08);
}

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

.lead-form span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(159, 234, 112, 0.28);
}

.lead-form button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.page-main {
  padding-top: 42px;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.84fr 0.68fr;
  align-items: end;
  gap: 64px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 86px 0 78px;
}

.page-hero.visual-hero {
  align-items: center;
}

.page-hero.dark {
  width: 100%;
  max-width: none;
  margin-top: 46px;
  padding: 90px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: #ffffff;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 56px;
}

.page-hero p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.page-hero.dark p {
  color: #c9d4cc;
}

.page-hero-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(16, 20, 17, 0.08);
}

.page-hero.dark .page-hero-card {
  border-color: var(--line-dark);
  background: var(--charcoal-2);
  color: #ffffff;
}

.page-hero-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.page-hero-card span {
  color: var(--ink-soft);
}

.page-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.page-hero.dark .page-hero-card span {
  color: #c9d4cc;
}

.page-hero.dark .page-visual {
  border-color: var(--line-dark);
}

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

.page-section.tight {
  padding-top: 32px;
}

.page-section.dark-band {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: #ffffff;
}

.page-title-row {
  display: grid;
  grid-template-columns: 0.75fr 0.55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.page-title-row h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.16;
}

.page-title-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.dark-band .page-title-row p {
  color: #c9d4cc;
}

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

.matrix-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.matrix-card.dark {
  border-color: var(--line-dark);
  background: var(--charcoal-2);
  color: #ffffff;
}

.matrix-card.accent {
  border-color: transparent;
  background: var(--green);
  color: var(--ink);
}

.matrix-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.1;
}

.matrix-card p {
  color: inherit;
  line-height: 1.72;
  opacity: 0.78;
}

.matrix-card a,
.text-link {
  display: inline-flex;
  align-self: flex-start;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.flow-board {
  display: grid;
  gap: 14px;
}

.flow-row {
  display: grid;
  grid-template-columns: 170px 1fr 0.5fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.flow-row strong {
  color: var(--green-deep);
  font-size: 28px;
  line-height: 1.15;
}

.flow-row p,
.flow-row span {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.scenario-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.scenario-showcase .scenario-card {
  display: flex;
  min-height: 398px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.scenario-thumb {
  width: 100%;
  height: 132px;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
}

.scenario-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.scenario-showcase .scenario-card h3 {
  padding: 24px 26px 0;
}

.scenario-card p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.scenario-showcase .scenario-card p {
  padding: 0 26px;
}

.scenario-card ul,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-showcase .scenario-card ul {
  margin: auto 26px 22px;
}

.scenario-card li,
.plain-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.comparison-table div {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1fr 0.8fr;
  border-bottom: 1px solid var(--line);
}

.comparison-table div:last-child {
  border-bottom: 0;
}

.comparison-table strong,
.comparison-table span {
  padding: 18px;
  border-right: 1px solid var(--line);
  line-height: 1.58;
}

.comparison-table strong:last-child,
.comparison-table span:last-child {
  border-right: 0;
}

.comparison-table .table-head {
  background: var(--paper-soft);
  font-weight: 800;
}

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

.partner-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.partner-card h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.partner-card p {
  color: var(--ink-soft);
  line-height: 1.76;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 0.58fr;
  gap: 56px;
  align-items: start;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.route-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.route-card span {
  color: var(--ink-soft);
}

.mini-logo {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  object-fit: contain;
}

.wide-logo {
  width: 190px;
  max-height: 64px;
  margin-bottom: 24px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 750;
}

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

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

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 20px auto;
    z-index: 45;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .mobile-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-weight: 750;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
    background: var(--charcoal);
    color: #ffffff;
    border-radius: var(--radius);
    text-align: center;
  }

  .hero,
  .page-hero,
  .page-title-row,
  .media-card,
  .section-heading,
  .section-heading.compact,
  .workflow-section,
  .partner-panel,
  .cta-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    max-width: 720px;
    font-size: 50px;
  }

  .solution-grid,
  .product-rail,
  .matrix-grid,
  .scenario-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-row,
  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .media-source {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table strong,
  .comparison-table span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table strong:last-child,
  .comparison-table span:last-child {
    border-bottom: 0;
  }

  .solution-card:nth-child(2) {
    border-right: 0;
  }

  .solution-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    margin-top: 10px;
  }

  .hero {
    gap: 34px;
    padding: 44px 0 40px;
  }

  .page-hero {
    padding: 54px 0 58px;
  }

  .page-hero.dark {
    padding: 62px 14px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .page-hero h1 {
    font-size: 40px;
  }

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

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-panel {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .solution-grid,
  .product-rail,
  .matrix-grid,
  .scenario-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .page-section {
    width: min(100% - 28px, var(--max));
    padding: 70px 0;
  }

  .page-section.dark-band {
    padding: 74px 14px;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .partner-panel h2,
  .page-title-row h2 {
    font-size: 34px;
  }

  .solution-card span {
    margin-bottom: 42px;
  }

  .product-section {
    padding: 76px 14px;
  }

  .product-card {
    min-height: 330px;
  }

  .workflow-step strong {
    font-size: 42px;
  }

  .partner-panel {
    padding: 26px;
  }

  .cta-copy h2 {
    font-size: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
