:root {
  --navy-980: #07111f;
  --navy-950: #0b1220;
  --navy-850: #142541;
  --blue-700: #2555d9;
  --blue-500: #4a84ff;
  --teal-400: #56d7c0;
  --slate-900: #172033;
  --slate-700: #34435f;
  --slate-600: #60708a;
  --cloud-100: #f4f7fb;
  --cloud-50: #fbfcfe;
  --white: #ffffff;
  --border: rgba(112, 130, 160, 0.22);
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
  --shadow-strong: 0 30px 80px rgba(7, 17, 31, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at 8% 0%, rgba(74, 132, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 48%, #eef4ff 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

button, input, select, textarea { font: inherit; }

h1, h2, h3, p, a, li, span, strong, label {
  overflow-wrap: anywhere;
}

button { cursor: pointer; }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(74, 132, 255, 0.35);
  outline-offset: 3px;
}

.page-shell { overflow: clip; }

.section-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(174, 194, 223, 0.46);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.05);
}

.topbar-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 16px;
  color: var(--white);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(135deg, var(--navy-850), var(--blue-700) 72%, var(--teal-400) 130%);
  box-shadow: 0 14px 30px rgba(37, 85, 217, 0.2);
}

.brand-text strong,
.brand-text small,
.brand-text span {
  display: block;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
  font-size: 1rem;
}

.brand-text small,
.brand-text span {
  margin-top: 0.2rem;
  color: var(--slate-600);
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.18rem;
  min-width: 0;
}

.nav-links a {
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  color: var(--slate-700);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--navy-950);
  background: rgba(74, 132, 255, 0.09);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.18rem;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--teal-400), var(--blue-500));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-950);
  align-items: center;
  justify-content: center;
}

.button {
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 70%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-22deg);
  transition: left 320ms ease;
}

.button:hover::after {
  left: 150%;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 16px 34px rgba(37, 85, 217, 0.26);
}

.button-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.05);
}

.dark-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero,
.page-hero,
.section,
.cta-band {
  position: relative;
  padding: 5rem 0;
}

.hero {
  padding-top: 5.5rem;
}

.hero-grid,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: 2rem;
  align-items: center;
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-400), var(--blue-500));
}

h1, h2, h3 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  color: var(--navy-950);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 0.95;
}

.narrow h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin: 0 0 1rem;
  max-width: 15ch;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.narrow h2,
.section-heading h2,
.audit-panel h2,
.cta-panel h2 {
  max-width: 16ch;
}

h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.22rem;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--slate-700);
}

p + p { margin-top: 1rem; }

.lede {
  max-width: 62ch;
  color: var(--slate-700);
  font-size: 1.12rem;
}

.narrow .lede {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .lede {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.trust-row span,
.audit-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.58rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-row span::before,
.audit-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-500));
}

.hero-panel,
.card,
.mini-card,
.form-card,
.contact-card,
.audit-panel,
.cta-panel,
.footer-card,
.mock-window,
.decision-box,
.workflow-table,
.before-after > div,
.process-list article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(200, 211, 228, 0.84);
  box-shadow: var(--shadow);
}

.hero-panel,
.form-card,
.audit-panel,
.cta-panel,
.footer-card {
  border-radius: var(--radius-xl);
}

.card,
.mini-card,
.contact-card,
.mock-window,
.decision-box,
.workflow-table,
.before-after > div,
.process-list article {
  border-radius: var(--radius-lg);
}

.hero-panel {
  padding: 1rem;
}

.mock-window {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(86, 215, 192, 0.16), transparent 28%),
    radial-gradient(circle at 80% 5%, rgba(74, 132, 255, 0.23), transparent 32%),
    linear-gradient(150deg, var(--navy-980), var(--navy-950) 50%, #18396c 100%);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.mock-topbar {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mock-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.mock-topbar strong {
  margin-left: 0.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
}

.workflow-preview {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.workflow-preview-step,
.mini-metrics div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-preview-step small,
.workflow-line small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.workflow-preview-step strong,
.workflow-line strong,
.before-after strong,
.decision-box strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--white);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.workflow-preview-step p,
.workflow-line p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.mini-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
}

.mini-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section-muted {
  background:
    radial-gradient(circle at 15% 10%, rgba(74, 132, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 247, 251, 0.95));
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(86, 215, 192, 0.1), transparent 26%),
    linear-gradient(145deg, var(--navy-980), var(--navy-950) 58%, #18396c 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-intro p,
.section-heading p {
  max-width: 62ch;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.card-grid,
.outcome-grid,
.process-list {
  display: grid;
  gap: 1rem;
}

.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.one { grid-template-columns: 1fr; }

.hero-grid > *,
.split > *,
.contact-layout > *,
.section-split > *,
.page-hero-grid > *,
.workflow-lane > *,
.workflow-diagram-header > *,
.footer-grid > *,
.footer-bottom > *,
.form-grid > *,
.grid > *,
.card-grid > *,
.sidebar-stack > * {
  min-width: 0;
}

.card,
.mini-card,
.form-card,
.contact-card {
  padding: 1.35rem;
}

.card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-700);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(37, 85, 217, 0.1), rgba(86, 215, 192, 0.15));
  border: 1px solid rgba(74, 132, 255, 0.16);
}

.card a:not(.button) {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue-700);
  font-weight: 750;
}

.card a:not(.button)::after {
  content: " ->";
}

.card.compact h2,
.card.workflow-card h2,
.card.industry h2 {
  margin-top: 0;
  font-size: 1.35rem;
  max-width: none;
}

.mini-card span {
  color: var(--blue-700);
  font-weight: 850;
}

.before-after,
.decision-box {
  display: grid;
  gap: 1rem;
}

.before-after > div,
.decision-box {
  padding: 1.25rem;
}

.before-after > div {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.before-after small {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.workflow-line,
.workflow-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.workflow-line {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--navy-980), var(--navy-950) 58%, #18396c 100%);
}

.workflow-line > div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-table {
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.workflow-table div {
  padding: 1rem;
  border-radius: 16px;
  background: var(--cloud-100);
}

.workflow-table strong,
.workflow-table span,
.decision-box strong,
.decision-box span {
  display: block;
}

.workflow-table span,
.decision-box span {
  color: var(--slate-600);
  font-size: 0.94rem;
}

.audit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.6rem;
}

.audit-list {
  display: grid;
  gap: 0.6rem;
}

.cta-band {
  padding-top: 3rem;
}

.cta-panel {
  padding: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(86, 215, 192, 0.18), transparent 22%),
    linear-gradient(145deg, var(--navy-980), var(--navy-950) 55%, #18396c 100%);
  box-shadow: var(--shadow-strong);
}

.cta-panel h2,
.cta-panel .eyebrow {
  color: var(--white);
}

.cta-panel p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.process-list {
  grid-template-columns: repeat(5, 1fr);
}

.process-list article {
  padding: 1.2rem;
}

.process-list span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
  margin-top: 1rem;
}

.field,
.field-full {
  display: grid;
  gap: 0.4rem;
}

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

label {
  color: var(--navy-950);
  font-weight: 750;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(112, 130, 160, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-950);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(74, 132, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(74, 132, 255, 0.12);
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--slate-700) 50%),
    linear-gradient(135deg, var(--slate-700) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.helper {
  color: var(--slate-600);
  font-size: 0.94rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: #0a6b4d;
  background: rgba(24, 182, 122, 0.12);
  border: 1px solid rgba(24, 182, 122, 0.24);
}

.sidebar-stack {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.contact-card ol {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--slate-700);
}

.footer {
  padding: 2.5rem 0 6.5rem;
}

.footer-card {
  padding: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1.4rem;
}

.footer-grid h3 {
  margin-top: 0;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 0.55rem;
  color: var(--slate-700);
}

.footer-links {
  display: grid;
  gap: 0.2rem;
}

.footer-grid a:hover {
  color: var(--blue-700);
}

.footer-grid p {
  max-width: 42ch;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200, 211, 228, 0.9);
  color: var(--slate-600);
  font-size: 0.94rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(251, 252, 254, 0.95);
  border-top: 1px solid rgba(200, 211, 228, 0.86);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .button {
  width: 100%;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.7;
}

.page-shell::before {
  top: 5rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(0, 204, 177, 0.18), transparent 68%);
}

.page-shell::after {
  right: -8rem;
  bottom: 8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(37, 85, 217, 0.18), transparent 70%);
}

.hero,
.page-hero {
  padding-top: 6.5rem;
}

.page-hero::before,
.hero::before,
.section::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(74, 132, 255, 0.08), transparent 24%);
  opacity: 0.9;
}

.section > *,
.hero > *,
.page-hero > *,
.cta-band > * {
  position: relative;
  z-index: 1;
}

.hero-copy,
.section-kicker,
.hero-meta,
.dashboard-stack,
.summary-metrics,
.info-list,
.audit-outcomes {
  display: grid;
  gap: 0.95rem;
}

.hero-copy {
  max-width: 60ch;
}

.hero-meta {
  margin-top: 1.5rem;
}

.trust-strip,
.pill-row,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-pill,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 132, 255, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.06);
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-pill::before,
.pill::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-500));
  box-shadow: 0 0 0 6px rgba(86, 215, 192, 0.12);
}

.trust-note {
  max-width: 54ch;
  color: var(--slate-600);
  font-size: 0.98rem;
}

.section-title {
  max-width: 14ch;
  background: linear-gradient(135deg, #081223 8%, #174893 58%, #11867a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-copy {
  max-width: 60ch;
  font-size: 1.04rem;
  line-height: 1.72;
}

.section-dark .section-title,
.cta-panel .section-title {
  background: none;
  color: var(--white);
  -webkit-text-fill-color: currentColor;
}

.page-hero-grid,
.section-split,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.grid {
  display: grid;
  gap: 1.15rem;
}

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

.hero h1,
.page-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 7.1vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  background: linear-gradient(135deg, #081223 0%, #113a7d 44%, #0f887e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede,
.page-hero .lede {
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-panel {
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(7, 17, 31, 0.96), rgba(20, 37, 65, 0.94) 58%, rgba(18, 102, 123, 0.88) 110%);
  border-color: rgba(103, 133, 181, 0.22);
  box-shadow: 0 35px 90px rgba(7, 17, 31, 0.22);
}

.hero-visual {
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.visual-topbar,
.workflow-header,
.visual-card header,
.workflow-diagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-label,
.status-pill,
.metric-badge,
.visual-tag,
.step-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mini-label,
.visual-tag {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.status-pill {
  color: #d7fff6;
  background: rgba(86, 215, 192, 0.16);
  border: 1px solid rgba(86, 215, 192, 0.24);
}

.metric-badge {
  color: #dbe8ff;
  background: rgba(74, 132, 255, 0.16);
  border: 1px solid rgba(74, 132, 255, 0.22);
}

.metric-badge.neutral {
  color: #dffcf4;
  background: rgba(86, 215, 192, 0.12);
  border-color: rgba(86, 215, 192, 0.2);
}

.visual-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 1rem;
}

.workflow-board,
.visual-card,
.workflow-diagram,
.workflow-canvas,
.comparison-card,
.audit-card,
.info-item,
.audit-outcome,
.summary-metric,
.contact-card,
.form-card,
.card {
  position: relative;
  overflow: hidden;
}

.workflow-board,
.visual-card {
  border-radius: 24px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-board::before,
.visual-card::before,
.comparison-card::before,
.audit-card::before,
.card::before,
.contact-card::before,
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.6;
}

.workflow-header strong,
.visual-card strong,
.summary-metric strong,
.workflow-node strong,
.info-item strong,
.audit-outcome strong {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.workflow-header span,
.visual-card span,
.workflow-node span,
.info-item span,
.summary-metric span {
  color: rgba(255, 255, 255, 0.72);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.visual-step {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.step-index {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.step-state {
  color: #dffcf4;
  background: rgba(86, 215, 192, 0.12);
}

.visual-step strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.visual-step span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.preview-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.preview-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12));
}

.preview-line.long { width: 100%; }
.preview-line.medium { width: 74%; }
.preview-line.short { width: 52%; }

.integration-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.summary-metric {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.card,
.contact-card,
.form-card {
  background:
    radial-gradient(circle at top right, rgba(74, 132, 255, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 255, 0.92));
  border: 1px solid rgba(164, 183, 216, 0.34);
  box-shadow: 0 24px 60px rgba(15, 28, 48, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.contact-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15, 28, 48, 0.12);
  border-color: rgba(74, 132, 255, 0.28);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
}

.card::after,
.contact-card::after,
.form-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 132, 255, 0.16), transparent 66%);
  pointer-events: none;
}

.card:nth-child(3n + 2)::after {
  background: radial-gradient(circle, rgba(86, 215, 192, 0.16), transparent 66%);
}

.card:nth-child(3n)::after {
  background: radial-gradient(circle, rgba(255, 158, 84, 0.18), transparent 66%);
}

.card .button,
.card a.button {
  margin-top: auto;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #12356c, #1d72ba 68%, #35c8af);
  box-shadow: 0 14px 34px rgba(37, 85, 217, 0.24);
}

.pain-grid .card:nth-child(2) .card-icon,
.services-grid .card:nth-child(3n + 2) .card-icon,
.grid .card:nth-child(4n + 2) .card-icon {
  background: linear-gradient(135deg, #0f5e6f, #1a9b93 60%, #4bd9c5);
}

.pain-grid .card:nth-child(3) .card-icon,
.services-grid .card:nth-child(3n) .card-icon,
.grid .card:nth-child(4n + 3) .card-icon {
  background: linear-gradient(135deg, #733019, #df6a22 64%, #ffb067);
}

.button-ghost {
  color: var(--navy-950);
  background: rgba(19, 41, 79, 0.06);
  border-color: rgba(74, 132, 255, 0.16);
}

.button-ghost:hover {
  background: rgba(19, 41, 79, 0.1);
}

.comparison-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-head {
  margin-bottom: 1rem;
}

.comparison-head h3 {
  margin: 0.55rem 0 0;
  color: var(--white);
}

.comparison-rows {
  display: grid;
  gap: 0.8rem;
}

.comparison-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row span {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-row strong {
  color: var(--white);
}

.services-grid .card,
.pain-grid .card,
.trust-grid .card {
  padding: 1.5rem;
}

.workflow-canvas {
  padding: 1.15rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(86, 215, 192, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-player {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.workflow-player-sidebar {
  display: grid;
  gap: 0.7rem;
}

.workflow-tab {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.workflow-tab:hover,
.workflow-tab.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(86, 215, 192, 0.24);
  transform: translateY(-1px);
}

.workflow-player-stage {
  padding: 1.25rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-player-top,
.real-workflow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.workflow-player-stage h3 {
  margin: 0.9rem 0 1rem;
  color: var(--white);
}

.workflow-player-stream {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.workflow-stream-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-stream-item small {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.workflow-stream-item strong {
  color: var(--white);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
}

.workflow-player-console {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.console-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-500));
  box-shadow: 0 0 0 6px rgba(86, 215, 192, 0.12);
}

.workflow-showcase .card h3,
.workflow-showcase .card p {
  color: var(--navy-950);
}

.workflow-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.workflow-story-card {
  padding: 1.3rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(74, 132, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 255, 0.94));
  border: 1px solid rgba(164, 183, 216, 0.3);
  box-shadow: 0 26px 64px rgba(15, 28, 48, 0.08);
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.story-pill,
.story-kpi {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.story-pill {
  color: #0f3a6f;
  background: rgba(74, 132, 255, 0.1);
  border: 1px solid rgba(74, 132, 255, 0.16);
}

.story-kpi {
  color: #0d7a74;
  background: rgba(86, 215, 192, 0.14);
  border: 1px solid rgba(86, 215, 192, 0.18);
}

.workflow-story-card h3 {
  margin: 0 0 0.7rem;
  color: var(--navy-950);
}

.story-scenario {
  color: var(--slate-700);
  line-height: 1.72;
}

.story-lane {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.story-step {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(74, 132, 255, 0.12);
}

.story-step small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--slate-600);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-step strong {
  color: var(--navy-950);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  line-height: 1.45;
}

.story-impact {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 244, 255, 0.88));
  border: 1px solid rgba(74, 132, 255, 0.12);
}

.story-impact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-950);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.story-impact span {
  color: var(--slate-700);
}

.workflow-diagram {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-diagram-header h3 {
  margin: 0.45rem 0 0;
  color: var(--white);
}

.workflow-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.workflow-node {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-node strong {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.workflow-node span {
  color: rgba(255, 255, 255, 0.72);
}

.audit-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(86, 215, 192, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.9));
  border: 1px solid rgba(164, 183, 216, 0.34);
  box-shadow: 0 30px 70px rgba(15, 28, 48, 0.08);
}

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

.audit-outcome {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 132, 255, 0.12);
}

.audit-outcome strong {
  margin-bottom: 0.35rem;
}

.info-item {
  padding: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-item strong {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.info-item span {
  color: rgba(255, 255, 255, 0.72);
}

.list-checks,
.simple-list,
.compact-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.list-checks li,
.simple-list li,
.compact-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--slate-700);
}

.list-checks li::before,
.simple-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-500));
  box-shadow: 0 0 0 5px rgba(74, 132, 255, 0.08);
}

.compact-list {
  gap: 0.55rem;
}

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

.industry-chip-card,
.fit-matrix,
.automation-case,
.live-board,
.live-board-card {
  position: relative;
  overflow: hidden;
}

.industry-chip-card {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(74, 132, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.92));
  border: 1px solid rgba(164, 183, 216, 0.3);
  box-shadow: 0 20px 54px rgba(15, 28, 48, 0.07);
}

.industry-chip-card strong,
.automation-case h3,
.fit-matrix-item strong,
.live-board-card strong {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.industry-chip-card strong {
  margin-bottom: 0.35rem;
}

.industry-chip-card span {
  color: var(--slate-600);
  font-size: 0.94rem;
}

.fit-matrix,
.live-board {
  padding: 1.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(86, 215, 192, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(8, 18, 35, 0.98), rgba(17, 41, 79, 0.95) 58%, rgba(15, 113, 113, 0.92) 110%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.2);
}

.fit-matrix-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fit-matrix-head h3 {
  margin: 0.45rem 0 0;
  color: var(--white);
}

.fit-matrix-grid,
.live-board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.fit-matrix-item,
.live-board-card {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fit-matrix-item strong,
.live-board-card strong {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.fit-matrix-item span,
.live-board-card span {
  color: rgba(255, 255, 255, 0.76);
}

.automation-studio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.automation-case {
  padding: 1.25rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(74, 132, 255, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 246, 255, 0.94));
  border: 1px solid rgba(164, 183, 216, 0.32);
  box-shadow: 0 24px 60px rgba(15, 28, 48, 0.08);
}

.automation-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.automation-case h3 {
  margin: 0 0 0.55rem;
}

.automation-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0;
}

.automation-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 41, 79, 0.06);
  border: 1px solid rgba(74, 132, 255, 0.14);
  color: var(--navy-950);
  font-size: 0.85rem;
  font-weight: 700;
}

.automation-result {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(74, 132, 255, 0.12);
}

.automation-result strong {
  display: block;
  margin-bottom: 0.3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 132, 255, 0.12), rgba(74, 132, 255, 0.44), rgba(86, 215, 192, 0.34), rgba(74, 132, 255, 0.12));
}

.timeline-card {
  position: relative;
  padding: 1.4rem 1.2rem 1.2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(74, 132, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.92));
  border: 1px solid rgba(164, 183, 216, 0.3);
  box-shadow: 0 20px 54px rgba(15, 28, 48, 0.08);
}

.timeline-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--white);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #12356c, #1d72ba 68%, #35c8af);
  box-shadow: 0 12px 28px rgba(37, 85, 217, 0.24);
}

.footer-card {
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at top right, rgba(86, 215, 192, 0.16), transparent 24%),
    linear-gradient(145deg, #091424, #10213d 52%, #173a68 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 90px rgba(7, 17, 31, 0.22);
}

.footer-grid h4,
.footer-note,
.footer-bottom,
.footer-grid a,
.footer-grid span,
.footer .brand-text strong,
.footer .brand-text span {
  color: inherit;
}

.footer-grid a:hover {
  color: #a8f2e4;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.footer .brand-mark {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.75rem;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .audit-panel,
  .footer-grid,
  .process-list,
  .workflow-line,
  .workflow-table,
  .page-hero-grid,
  .section-split,
  .comparison-grid,
  .audit-card,
  .workflow-lane,
  .visual-dashboard,
  .audit-outcomes,
  .timeline,
  .industry-cloud,
  .automation-studio,
  .fit-matrix-grid,
  .live-board-grid,
  .workflow-player,
  .workflow-story-grid,
  .workflow-player-stream {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.three,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  h1, .narrow h1 {
    max-width: 14ch;
  }
}

@media (max-width: 1240px) {
  .nav-links a {
    padding: 0.54rem 0.62rem;
    font-size: 0.84rem;
  }

  .nav-actions .button {
    padding-inline: 1rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    display: flex;
    min-height: 76px;
  }

  .nav-cta {
    display: none;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(251, 252, 254, 0.98);
    border: 1px solid rgba(200, 211, 228, 0.92);
    box-shadow: var(--shadow-strong);
    overflow: visible;
  }

  .topbar.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0.7rem 0.9rem;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .hero,
  .page-hero,
  .section,
  .cta-band {
    padding: 3.75rem 0;
  }

  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .outcome-grid,
  .mini-metrics,
  .form-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .visual-grid,
  .summary-metrics,
  .audit-outcomes {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .button,
  .hero-actions .button,
  .audit-panel .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-panel {
    padding: 0.6rem;
  }

  .brand {
    max-width: calc(100% - 4.5rem);
  }

  .brand-text span {
    white-space: normal;
  }

  .footer {
    padding-bottom: 6rem;
  }

  .trust-strip,
  .pill-row,
  .hero-actions,
  .cta-actions,
  .button-row {
    flex-direction: column;
  }

  .workflow-diagram,
  .workflow-canvas,
  .comparison-card,
  .audit-card {
    padding: 1rem;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .topbar-inner {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .brand-text small {
    display: none;
  }

  .card,
  .mini-card,
  .form-card,
  .contact-card,
  .audit-panel,
  .cta-panel,
  .footer-card {
    padding: 1.15rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.1rem);
    max-width: 10ch;
  }

  .section-copy,
  .lede,
  p {
    font-size: 1rem;
  }

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