:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-strong: #eef5ff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #dbe5f4;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #22c55e;
  --cyan: #06b6d4;
  --indigo: #4f46e5;
  --navy: #071630;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 40px rgba(37, 99, 235, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 32rem),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 45%, #ffffff 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(219, 229, 244, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #4338ca);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  padding: 86px 0 54px;
}

.hero-content h1,
.page-hero h1,
.demo-copy h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.demo-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.button-secondary {
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: #fff;
}

.button-light {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.28), transparent 18rem);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.16);
}

.panel-topline,
.workflow-card,
.metric-grid article {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.panel-topline strong {
  color: var(--accent);
}

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

.metric-grid article {
  padding: 18px;
  border: 1px solid rgba(219, 229, 244, 0.84);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
}

.metric-grid strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.workflow-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #183a77);
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.workflow-line b {
  padding: 8px 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
}

.enterprise-value-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 197, 94, 0.22), transparent 13rem),
    radial-gradient(circle at 92% 12%, rgba(79, 70, 229, 0.25), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 255, 0.72));
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.enterprise-value-card::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.16));
}

.enterprise-value-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 45%, rgba(255, 255, 255, 0.28));
  pointer-events: none;
}

.value-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.value-orbit span {
  position: absolute;
  border-radius: 999px;
  opacity: 0.72;
}

.value-orbit span:nth-child(1) {
  top: 28px;
  right: 30px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.value-orbit span:nth-child(2) {
  top: 58px;
  right: 60px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.value-orbit span:nth-child(3) {
  left: 22px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(6, 182, 212, 0.22);
}

.value-card-header,
.value-proof-strip,
.value-item,
.value-card-footer {
  position: relative;
  z-index: 1;
}

.value-card-header {
  margin-bottom: 16px;
}

.value-card-header span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.value-card-header strong {
  display: block;
  max-width: 360px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.value-card-header p {
  max-width: 430px;
  margin: 12px 0 0;
  color: var(--muted);
}

.value-proof-strip {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid rgba(219, 229, 244, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.value-proof-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.value-proof-strip b {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.09);
  font-size: 12px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1);
}

.value-item + .value-item {
  margin-top: 14px;
}

.value-item h3 {
  margin-bottom: 4px;
}

.value-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.22);
}

.value-blue .value-icon {
  background: linear-gradient(135deg, var(--primary), var(--indigo));
}

.value-green .value-icon {
  background: linear-gradient(135deg, var(--accent), #16a34a);
}

.value-cyan .value-icon {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
}

.value-card-footer {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.04);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section-block {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.cta-band h2,
.demo-card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.card-grid,
.capability-list,
.industry-grid,
.timeline {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.capability-list article,
.solution-card,
.demo-card {
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 26px;
}

.feature-card p,
.capability-list p,
.solution-card p,
.solution-card li,
.demo-card li,
.contact-placeholder p {
  color: var(--muted);
}

.icon-badge {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

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

.capability-list article {
  padding: 22px;
}

.dark-section {
  width: min(var(--max-width), calc(100% - 40px));
  padding: 52px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(6, 182, 212, 0.26), transparent 20rem),
    linear-gradient(135deg, var(--navy), #102c63 55%, #1e1b4b);
  box-shadow: var(--shadow);
}

.dark-section .section-heading h2,
.dark-section .section-heading p {
  color: #fff;
}

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

.timeline article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.timeline span {
  color: #93c5fd;
  font-weight: 900;
}

.timeline p {
  color: rgba(255, 255, 255, 0.76);
}

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

.industry-grid span {
  padding: 18px 12px;
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-block: 44px 74px;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: #dbeafe;
}

.page-hero {
  max-width: 940px;
  padding: 86px 0 34px;
  text-align: center;
}

.solution-stack {
  display: grid;
  gap: 22px;
  padding-bottom: 38px;
}

.solution-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
  padding: 30px;
}

.solution-card ul {
  margin: 0;
  padding-left: 20px;
}

.solution-card li + li {
  margin-top: 10px;
}

.solution-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.featured-solution {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(135deg, #ffffff, #eef5ff);
}

.demo-section {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 190px);
  padding: 86px 0 70px;
}

.demo-section-polished {
  position: relative;
}

.demo-section-polished::before {
  content: "";
  position: absolute;
  inset: 48px -40px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(10px);
  z-index: -1;
}

.demo-promise-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.34), transparent 16rem),
    radial-gradient(circle at 12% 90%, rgba(34, 197, 94, 0.24), transparent 14rem),
    linear-gradient(135deg, #071630, #10306b 56%, #21155c);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.2);
}

.demo-promise-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.88), transparent 72%);
  pointer-events: none;
}

.demo-promise-panel .eyebrow,
.demo-promise-panel h1,
.demo-promise-panel p,
.demo-promise-panel .demo-benefits,
.demo-promise-panel .promise-metrics {
  position: relative;
  z-index: 1;
}

.demo-promise-panel .eyebrow {
  color: #bfdbfe;
}

.demo-promise-panel h1 {
  color: #fff;
}

.demo-promise-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.demo-card {
  padding: 30px;
}

.demo-card ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.demo-card li + li {
  margin-top: 10px;
}

.contact-placeholder {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
}

.promise-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.promise-metrics article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.promise-metrics strong,
.promise-metrics span {
  display: block;
}

.promise-metrics strong {
  font-size: 18px;
}

.promise-metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

.demo-benefits article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.demo-benefits strong,
.demo-benefits span {
  display: block;
}

.demo-benefits span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.lead-form-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.lead-form-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
}

.lead-form-card > * {
  position: relative;
  z-index: 1;
}

.demo-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px;
  border: 1px solid rgba(219, 229, 244, 0.86);
  border-radius: 18px;
  background: rgba(238, 245, 255, 0.72);
}

.demo-process span {
  position: relative;
  padding: 8px 6px;
  border-radius: 12px;
  color: var(--primary);
  background: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.demo-process span + span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--line);
}

.lead-form-card h2 {
  margin-bottom: 8px;
}

.form-intro {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.lead-form-stacked {
  grid-template-columns: 1fr;
}

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

.lead-form > label:not(.form-field) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
}

.lead-form > label:not(.form-field) > span:first-child {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.lead-form > label:not(.form-field) > input,
.lead-form > label:not(.form-field) > textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.field-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.input-shell {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(6, 182, 212, 0.16)) border-box;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.input-shell:focus-within {
  border-color: rgba(37, 99, 235, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 18px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.field-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 12px;
  padding: 11px 10px;
  color: var(--text);
  background: transparent;
  font: inherit;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #94a3b8;
}

.lead-form textarea {
  resize: vertical;
}

.textarea-shell {
  align-items: start;
}

.textarea-shell .field-icon {
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  min-height: 54px;
  font-size: 16px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-message.is-success {
  color: #16a34a;
}

.form-message.is-error {
  color: #dc2626;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer .icp-record {
  margin-top: 6px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 700;
}

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

@media (max-width: 980px) {
  .hero,
  .split-section,
  .demo-section,
  .solution-card {
    grid-template-columns: 1fr;
  }

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

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

  .demo-benefits {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, var(--max-width));
    margin-top: 12px;
    border-radius: 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .section-shell,
  .dark-section,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  .hero,
  .page-hero,
  .demo-section {
    padding-top: 58px;
  }

  .hero-content h1,
  .page-hero h1,
  .demo-copy h1 {
    font-size: 40px;
  }

  .metric-grid,
  .capability-list,
  .three-cols,
  .timeline,
  .industry-grid {
    grid-template-columns: 1fr;
  }

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

  .dark-section,
  .cta-band {
    padding: 30px 22px;
  }

  .section-block {
    padding: 48px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
