:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --ink: #0d1b38;
  --muted: #5a6880;
  --line: #dbe5f2;
  --blue: #0f62d6;
  --blue-deep: #073d91;
  --teal: #00a887;
  --amber: #d8991d;
  --coral: #d85c50;
  --violet: #7456d8;
  --shadow: 0 24px 60px rgba(16, 52, 97, 0.14);
  --radius: 8px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

html.is-mobile-device body {
  padding-bottom: calc(74px + env(safe-area-inset-bottom));
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 229, 242, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 820;
  color: #071b36;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 680;
  color: #192845;
}

.nav-links a {
  padding: 22px 0;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.icon-button,
.menu-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #10203d;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover {
  background: #edf3fb;
}

.ghost-link {
  color: #1e2d48;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 1px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(15, 98, 214, 0.22);
  font-size: 15px;
  font-weight: 780;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 98, 214, 0.28);
}

.button-small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 14px;
}

.button-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border-color: #7ca8e8;
  box-shadow: none;
}

.button-light {
  color: var(--blue);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 18px 36px rgba(3, 38, 89, 0.22);
}

.button-outline-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(780px, calc(92vh - 68px));
  padding: clamp(58px, 7vw, 92px) clamp(20px, 4vw, 56px) 48px;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.36) 74%),
    url("assets/hero-platform-bg.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 86%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(580px, 1.35fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 620px;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.06;
  font-weight: 820;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #30435f;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
  color: #243858;
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  background: rgba(15, 98, 214, 0.1);
  border-radius: 50%;
}

.product-stage {
  min-width: 0;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  min-height: 448px;
  background: #ffffff;
  border: 1px solid rgba(184, 203, 230, 0.85);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  padding: 18px 12px;
  color: #d9e9ff;
  background: linear-gradient(180deg, #073b7c, #062b5d);
}

.mini-brand {
  margin-bottom: 14px;
  padding: 0 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 780;
}

.side-item {
  display: block;
  width: 100%;
  height: 38px;
  margin: 4px 0;
  padding: 0 10px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.side-item.active,
.side-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.dashboard-main {
  min-width: 0;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 820;
}

.search-pill {
  width: min(46%, 250px);
  height: 34px;
  padding: 8px 14px;
  overflow: hidden;
  color: #8a97aa;
  background: #ffffff;
  border: 1px solid #dce6f4;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.metric-panel,
.funnel-panel,
.chart-panel,
.task-panel,
.demo-panel,
.solution-card,
.security-list article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-panel {
  min-height: 98px;
  padding: 14px;
}

.metric-panel span {
  display: block;
  color: #6a778a;
  font-size: 12px;
  font-weight: 700;
}

.metric-panel strong {
  display: block;
  margin-top: 6px;
  color: #0d1b38;
  font-size: clamp(24px, 2.4vw, 33px);
  line-height: 1;
}

.metric-panel em {
  display: block;
  margin-top: 7px;
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
}

.dashboard-content {
  display: grid;
  grid-template-columns: minmax(160px, 0.95fr) minmax(180px, 1.2fr) minmax(170px, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.funnel-panel,
.chart-panel,
.task-panel {
  padding: 14px;
}

.dashboard-content h2,
.task-panel h2 {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.2;
}

.funnel {
  display: grid;
  gap: 8px;
}

.funnel span {
  width: var(--w);
  min-width: 72px;
  height: 34px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--c);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 780;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 12px 100%);
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 145px;
  padding: 12px;
  background-image: linear-gradient(#edf3fb 1px, transparent 1px);
  background-size: 100% 36px;
}

.chart span,
.demo-chart span {
  flex: 1;
  min-width: 10px;
  background: linear-gradient(180deg, #5aa5ff, #0f62d6);
  border-radius: 5px 5px 2px 2px;
}

.task-panel ul,
.demo-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-panel li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 8px;
  background: #f7faff;
  border: 1px solid #e7eef8;
  border-radius: 6px;
  color: #3c4d68;
  font-size: 12px;
  font-weight: 680;
}

.task-panel strong {
  color: #0d1b38;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot.amber {
  background: var(--amber);
}

.dot.violet {
  background: var(--violet);
}

.dot.blue {
  background: var(--blue);
}

.dot.coral {
  background: var(--coral);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 4vw, 32px);
}

.section-head {
  max-width: 650px;
  margin-bottom: 32px;
}

.section-head.inline {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.demo-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.14;
  font-weight: 820;
}

.section-head p,
.demo-copy p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head a,
.solution-card a,
.demo-header a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 780;
}

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

.solution-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 205px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  transform: translateY(-2px);
  border-color: #9bc0f0;
  box-shadow: 0 18px 40px rgba(15, 56, 104, 0.1);
}

.solution-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
}

.solution-icon.green {
  background: var(--teal);
}

.solution-icon.blue {
  background: var(--blue);
}

.solution-icon.amber {
  background: var(--amber);
}

.solution-card h3,
.workflow-line h3,
.security-list h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.solution-card p,
.workflow-line p,
.security-list p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.architecture,
.workflow-section,
.integrations {
  border-top: 1px solid var(--line);
}

.module-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(132px, 1fr));
  gap: 0;
  overflow: auto;
  border-block: 1px solid var(--line);
  scrollbar-width: thin;
}

.module-item {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 9px;
  min-width: 132px;
  min-height: 150px;
  padding: 26px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.module-item:last-child {
  border-right: 0;
}

.module-item svg {
  color: var(--blue);
  width: 28px;
  height: 28px;
}

.module-item strong {
  font-size: 14px;
  line-height: 1.3;
}

.module-item span {
  color: var(--muted);
  font-size: 12px;
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.workflow-line article {
  min-height: 188px;
  padding: 22px;
  background: #ffffff;
}

.workflow-line span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 820;
}

.workflow-line article:nth-child(2) span,
.workflow-line article:nth-child(5) span {
  background: var(--teal);
}

.workflow-line article:nth-child(3) span,
.workflow-line article:nth-child(6) span {
  background: var(--amber);
}

.product-demo {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tab {
  height: 42px;
  padding: 0 18px;
  color: #273a59;
  background: #eef4fb;
  border: 1px solid #d5e2f1;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
}

.tab.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.demo-panel {
  padding: 24px;
  box-shadow: 0 20px 48px rgba(18, 55, 101, 0.12);
}

.demo-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.demo-header span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 820;
}

.demo-header h3 {
  margin: 4px 0 0;
  font-size: 25px;
  line-height: 1.24;
}

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

.demo-stat,
.demo-list,
.demo-chart {
  min-height: 140px;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid #e2ebf6;
  border-radius: 8px;
}

.demo-stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.demo-stat strong {
  display: block;
  margin-top: 12px;
  font-size: 38px;
  line-height: 1;
}

.demo-list h4 {
  margin: 0 0 14px;
  font-size: 15px;
}

.demo-list li {
  color: #354761;
  font-size: 14px;
}

.demo-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--teal);
  border-radius: 50%;
  vertical-align: 1px;
}

.demo-chart {
  display: flex;
  align-items: end;
  gap: 11px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
  background: var(--line);
  border-block: 1px solid var(--line);
}

.proof-band div {
  min-height: 150px;
  padding: 34px 28px;
  background: #ffffff;
}

.proof-band strong {
  display: block;
  color: #073c78;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.integration-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

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

.logo-cloud span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  color: #1e3150;
  background: #f7faff;
  border: 1px solid #dfe9f5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 780;
}

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

.security-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  min-height: 116px;
  padding: 20px;
}

.security-list svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.security-list p {
  margin-bottom: 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: clamp(42px, 6vw, 72px) clamp(22px, 7vw, 88px);
  color: #ffffff;
  background: linear-gradient(120deg, #0753b0, #008e74 72%, #14a06f);
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-copy {
  max-width: 840px;
}

.final-copy img {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 22px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  filter: drop-shadow(0 12px 26px rgba(2, 25, 63, 0.18));
}

.final-cta p {
  opacity: 0.86;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  max-width: 760px;
  margin: 24px 0 0;
}

.company-details div {
  min-width: 0;
}

.company-details dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.company-details dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer {
  background: #f5f8fc;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-inner,
.footer-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.legal-inner {
  padding-block: clamp(42px, 6vw, 68px) 34px;
}

.legal-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: 26px;
}

.legal-heading span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.legal-heading h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.legal-heading p {
  margin: 0;
  color: #50627c;
  font-size: 15px;
}

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

.legal-card {
  overflow: hidden;
  min-height: 214px;
  background: #ffffff;
  border: 1px solid #dfe9f5;
  border-radius: 8px;
}

.legal-card summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary span {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 820;
}

.legal-card summary svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.legal-card[open] summary svg {
  transform: rotate(180deg);
}

.legal-card-body {
  padding: 0 22px 22px;
}

.legal-card p {
  margin: 0;
  color: #4e607a;
  font-size: 14px;
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-card a,
.legal-notice a {
  color: var(--blue);
  font-weight: 780;
}

.legal-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 16px 18px;
  color: #263954;
  background: #ffffff;
  border: 1px solid #dfe9f5;
  border-radius: 8px;
  font-size: 14px;
}

.legal-notice strong {
  color: var(--ink);
  font-weight: 820;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-block: 24px;
  border-top: 1px solid #dfe9f5;
  font-size: 13px;
  font-weight: 650;
}

.footer-bar span:first-child {
  color: var(--ink);
  font-weight: 820;
}

.mobile-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(219, 229, 242, 0.95);
  box-shadow: 0 -12px 28px rgba(14, 41, 78, 0.1);
  backdrop-filter: blur(18px);
}

.mobile-contact-bar a {
  display: grid;
  min-height: 48px;
  flex: 1;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 820;
}

.mobile-contact-bar a:first-child {
  color: var(--blue);
  background: #e9f2ff;
  border: 1px solid #c7dbf5;
}

html.is-mobile-device .mobile-contact-bar {
  display: flex;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.menu-open {
    grid-template-columns: auto auto;
  }

  .site-header.menu-open .nav-links,
  .site-header.menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 16px;
  }

  .site-header.menu-open .nav-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .site-header.menu-open .nav-links a {
    padding: 0;
  }

  .hero-inner,
  .product-demo,
  .integration-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

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

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

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

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .legal-heading,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    gap: 14px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 42px;
    height: 24px;
  }

  .site-header.menu-open {
    align-items: start;
    padding-bottom: 14px;
  }

  .site-header.menu-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .site-header.menu-open .nav-links a {
    display: grid;
    min-height: 44px;
    place-items: center;
    background: #f2f6fc;
    border: 1px solid #dfe9f5;
    border-radius: 7px;
  }

  .site-header.menu-open .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
  }

  .site-header.menu-open .header-actions .icon-button {
    display: none;
  }

  .site-header.menu-open .ghost-link,
  .site-header.menu-open .button-small {
    display: grid;
    min-height: 44px;
    place-items: center;
  }

  .site-header.menu-open .ghost-link {
    background: #f2f6fc;
    border: 1px solid #dfe9f5;
    border-radius: 7px;
  }

  .hero {
    min-height: calc(var(--vh, 1vh) * 100 - 62px);
    padding: 32px 16px 28px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

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

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .trust-row {
    gap: 10px;
    margin-top: 22px;
    font-size: 12px;
  }

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

  .button {
    min-height: 50px;
    width: 100%;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dashboard-sidebar {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding: 12px;
    scrollbar-width: none;
  }

  .dashboard-sidebar::-webkit-scrollbar,
  .module-rail::-webkit-scrollbar {
    display: none;
  }

  .mini-brand {
    display: none;
  }

  .side-item {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    white-space: nowrap;
  }

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

  .metric-panel {
    min-height: 88px;
    padding: 10px;
  }

  .metric-panel strong {
    font-size: clamp(19px, 7vw, 28px);
  }

  .metric-panel span,
  .metric-panel em {
    font-size: 11px;
  }

  .dashboard-main {
    padding: 12px;
  }

  .dashboard-content {
    display: none;
  }

  .demo-grid,
  .workflow-line,
  .proof-band,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 16px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .solution-card {
    grid-template-columns: 48px 1fr;
    min-height: 0;
    padding: 18px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
  }

  .workflow-line article,
  .proof-band div {
    min-height: 0;
    padding: 20px;
  }

  .product-demo {
    gap: 20px;
  }

  .demo-panel {
    padding: 18px;
  }

  .demo-header {
    display: grid;
  }

  .search-pill {
    display: none;
  }

  .section-head.inline,
  .footer-bar,
  .legal-notice {
    display: grid;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .final-copy img {
    width: 190px;
  }

  .proof-band {
    padding: 0;
  }

  .final-cta {
    margin-top: 0;
    padding: 38px 18px;
  }

  .legal-inner {
    padding-block: 36px 24px;
  }

  .legal-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .legal-heading p {
    font-size: 14px;
  }

  .legal-grid {
    gap: 8px;
  }

  .legal-card {
    min-height: 0;
  }

  .legal-card summary {
    min-height: 56px;
    padding: 0 16px;
  }

  .legal-card-body {
    padding: 0 16px 16px;
  }

  .legal-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .legal-notice {
    padding: 14px 16px;
  }

  .footer-bar {
    gap: 8px;
    min-height: 0;
    padding-block: 18px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
