:root {
  --ink-950: #0b1220;
  --blue-600: #2563ff;
  --slate-700: #334155;
  --line-200: #e2e8f0;
  --surface-0: #eff5fd;
  --surface-1: rgba(255, 255, 255, 0.94);
  --surface-2: #f8fbff;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(11, 18, 32, 0.08);
  --shadow-strong: 0 24px 80px rgba(37, 99, 255, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-950);
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(239, 245, 253, 0.72), rgba(239, 245, 253, 0.98)),
    url("../assets/fondo-login.webp") center top / cover no-repeat;
}

body.menu-open {
  overflow: hidden;
}

body.demo-support-open {
  overflow: hidden;
}

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

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

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

.page-shell {
  overflow: hidden;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.brand img {
  width: 195px;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.nav-links,
.nav-actions,
.hero-actions,
.trust-strip,
.workflow-pill-row,
.microcopy-row,
.final-cta-actions,
.brand-assets {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(37, 99, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-button {
  min-width: 44px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--slate-700);
  font-weight: 800;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

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

.lang-button.is-active {
  color: var(--surface-2);
  background: linear-gradient(135deg, var(--blue-600), #3d7bff);
}

.mobile-lang-switcher {
  width: fit-content;
  margin-bottom: 10px;
}

.nav-links a,
.mobile-menu a,
.footer-column a {
  color: var(--slate-700);
  font-weight: 700;
  transition: color var(--transition);
}

.nav-links a:hover,
.mobile-menu a:hover,
.footer-column a:hover {
  color: var(--blue-600);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.button-primary {
  color: var(--surface-2);
  background: linear-gradient(135deg, var(--blue-600), #3d7bff);
  box-shadow: 0 18px 34px rgba(37, 99, 255, 0.28);
}

.button-secondary,
.button-tertiary {
  color: var(--ink-950);
  border-color: rgba(37, 99, 255, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.button-dark {
  color: var(--white);
  background: rgba(11, 18, 32, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(37, 99, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-950);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  display: none;
  padding: 0 24px 22px;
  gap: 14px;
  flex-direction: column;
}

.hero {
  padding: 120px 0 44px;
}

.hero-copy {
  padding-top: 12px;
}

.hero-layout,
.solution-layout,
.audience-layout,
.faq-layout,
.footer-layout {
  display: grid;
  gap: 30px;
}

.hero-layout,
.solution-layout,
.audience-layout,
.faq-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.eyebrow,
.eyebrow-badge,
.tiny-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 14px;
  color: var(--blue-600);
  background: rgba(37, 99, 255, 0.1);
}

.eyebrow-badge {
  padding: 8px 12px;
  color: var(--blue-600);
  background: rgba(37, 99, 255, 0.08);
}

.eyebrow-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-950);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.1vw, 4.95rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.18;
}

p,
li,
span,
small {
  color: var(--slate-700);
  line-height: 1.75;
}

.lead {
  max-width: 640px;
  margin: 22px 0 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.support-copy {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--slate-700);
  font-size: 1rem;
  opacity: 0.8;
}

.hero-actions {
  width: fit-content;
  max-width: 640px;
  margin-top: 10px;
  padding-right: 6px;
}

.trust-strip {
  margin-top: 26px;
  display: block;
  min-height: 0;
}

.trust-strip span,
.microcopy-row span,
.workflow-pill {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 620px;
  padding: 20px 0 24px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
}

.orb-one {
  top: 10%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.28), transparent 70%);
}

.orb-two {
  bottom: 10%;
  left: 2%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.14), transparent 72%);
}

.product-card,
.feature-card,
.module-card,
.info-panel,
.process-step,
.audience-card,
.differential-card,
.testimonial-card,
.brand-banner,
.final-cta,
.faq-item,
.solution-panel {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  box-shadow: var(--shadow-soft);
}

.product-card-main {
  position: relative;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(100%, 560px);
  margin-left: auto;
  padding: 30px 30px 26px;
  min-height: 534px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    var(--surface-1);
  box-shadow: var(--shadow-strong);
}

.product-top,
.metric-grid,
.section-header,
.faq-copy,
.footer-column,
.footer-brand {
  display: grid;
  gap: 16px;
}

.product-top {
  grid-template-columns: 1fr;
  align-items: start;
}

.product-title {
  max-width: 480px;
  font-size: clamp(1.95rem, 3.3vw, 3.05rem);
  line-height: 1.06;
  font-weight: 600;
}

.tiny-label {
  width: fit-content;
  padding: 0;
  background: transparent;
  color: var(--slate-700);
  opacity: 0.6;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--blue-600);
  font-weight: 800;
  background: rgba(37, 99, 255, 0.1);
  white-space: nowrap;
}

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

.metric-card {
  display: grid;
  grid-template-rows: 64px auto 88px;
  align-content: start;
  min-height: 196px;
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(239, 245, 253, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.metric-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 255, 0.22);
  box-shadow: 0 14px 30px rgba(37, 99, 255, 0.1);
}

.metric-label {
  display: block;
  min-height: 64px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--slate-700);
}

.metric-value {
  display: block;
  align-self: center;
  margin: 10px 0;
  font-size: clamp(2.15rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--ink-950);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums lining-nums;
}

.metric-copy {
  display: block;
  min-height: 88px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--slate-700);
  opacity: 0.86;
}

.workflow-pill.active {
  color: var(--surface-2);
  background: linear-gradient(135deg, var(--blue-600), #3d7bff);
  border-color: transparent;
}

.workflow-pill-row {
  gap: 10px;
  margin-top: 18px;
  padding-top: 2px;
}

.workflow-pill {
  appearance: none;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.workflow-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 255, 0.24);
}

.floating-quote {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-marquee {
  width: min(var(--container), calc(100% - 48px));
  margin: 22px auto 0;
}

.insights-main {
  padding-top: 118px;
}

.modules-main .modules-section:first-child {
  padding-top: 44px;
  padding-bottom: 18px;
}

.modules-main .section-header {
  margin-bottom: 0;
}

.module-showcase {
  padding: 34px 0;
}

.module-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.module-showcase-grid.is-reverse .module-copy {
  order: 2;
}

.module-showcase-grid.is-reverse .module-visual {
  order: 1;
}

.module-copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: none;
}

.module-copy:hover,
.module-copy:focus-within,
.module-showcase .module-copy:hover,
.module-showcase .module-copy:focus-within {
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  background: transparent !important;
}

.module-copy,
.module-copy * {
  transition: none;
}

.module-copy a:hover,
.module-copy a:focus-visible {
  color: var(--brand-blue);
}

.module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 35px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(37, 99, 255, 0.1);
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-copy h3 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.02;
}

.module-copy p {
  max-width: 520px;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--slate-700);
}

.module-copy-lead {
  max-width: 500px;
  margin-top: 10px;
}

.module-copy-support {
  max-width: 520px;
  margin-top: 18px;
}

.module-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--brand-blue);
  font-weight: 700;
}

.module-link::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 255, 0.3);
  background:
    radial-gradient(circle at 54% 50%, var(--brand-blue) 0 20%, transparent 22%),
    linear-gradient(135deg, rgba(37, 99, 255, 0.12), rgba(37, 99, 255, 0.04));
}

.module-divider {
  width: min(100%, 360px);
  height: 1px;
  margin: 34px 0 24px;
  background: rgba(21, 35, 59, 0.12);
}

.module-benefits {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-700);
  font-size: 1.03rem;
  line-height: 1.5;
}

.module-benefits li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, white 0 14%, transparent 16%),
    linear-gradient(135deg, #2563FF, #5A8CFF);
  box-shadow: 0 8px 16px rgba(37, 99, 255, 0.16);
}

.module-visual {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: 600px;
  margin-inline: auto;
}

.module-visual-customers {
  min-height: 0;
}

.module-visual-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.module-screen {
  display: block;
  position: absolute;
  overflow: hidden;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 52px rgba(14, 25, 46, 0.11);
}

.module-screen-main {
  inset: 0 0 auto;
  width: 100%;
  max-width: none;
  height: 400px;
}

.module-screen-floating {
  right: -8px;
  bottom: 0;
  width: min(66%, 510px);
  height: 380px;
  z-index: 2;
}

.module-visual-shell {
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(37, 99, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 255, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
  box-shadow: 0 28px 60px rgba(37, 99, 255, 0.1);
  overflow: hidden;
}

.module-visual-shell::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px auto;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.1), transparent 68%);
}

.module-visual-header,
.module-visual-body,
.module-visual-content,
.module-visual-stack,
.module-chip-row,
.module-card-grid,
.module-progress-row,
.module-summary-row,
.module-table,
.module-kanban,
.module-chart,
.module-calendar {
  position: relative;
  z-index: 1;
}

.module-visual-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.module-visual-header span,
.module-line,
.module-chip-row span,
.module-card-grid span,
.module-progress-row span,
.module-summary-row span,
.module-table span,
.module-kanban span,
.module-calendar span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 255, 0.16), rgba(37, 99, 255, 0.06));
}

.module-visual-header span:first-child {
  width: 42%;
  height: 14px;
}

.module-visual-header span:last-child {
  width: 26%;
  height: 14px;
}

.module-visual-body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
}

.module-visual-sidebar {
  min-height: 260px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(37, 99, 255, 0.08), rgba(37, 99, 255, 0.03));
}

.module-visual-content,
.module-visual-stack {
  display: grid;
  gap: 16px;
}

.module-line {
  width: 100%;
  height: 14px;
}

.module-line-lg {
  width: 68%;
  height: 16px;
}

.module-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.module-chip-row span {
  width: 84px;
  height: 34px;
}

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

.module-card-grid span {
  height: 118px;
  border-radius: 22px;
}

.module-table {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.6fr 0.7fr;
  gap: 12px;
}

.module-table span {
  height: 46px;
  border-radius: 14px;
}

.module-progress-row,
.module-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.module-progress-row span,
.module-summary-row span {
  height: 86px;
  border-radius: 22px;
}

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

.module-kanban span {
  height: 228px;
  border-radius: 24px;
}

.module-chart,
.module-calendar {
  display: grid;
  align-items: end;
  gap: 14px;
}

.module-chart {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 190px;
}

.module-chart-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.module-chart span {
  border-radius: 18px 18px 8px 8px;
}

.module-chart span:nth-child(1) { height: 44%; }
.module-chart span:nth-child(2) { height: 78%; }
.module-chart span:nth-child(3) { height: 56%; }
.module-chart span:nth-child(4) { height: 92%; }
.module-chart-wide span:nth-child(5) { height: 68%; }

.module-chart-tall {
  min-height: 220px;
}

.module-calendar {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 160px;
}

.module-calendar span {
  height: 100px;
  border-radius: 20px;
}

.insights-page h3 {
  font-size: 1.05rem;
}

.insights-page .alt-copy h2,
.insights-page .section-header h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.06;
}

.alt-section {
  padding: 34px 0;
}

.insights-main .alt-section + .alt-section {
  margin-top: -56px;
}

.alt-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.alt-copy {
  margin-bottom: 0;
}

.alt-content {
  min-width: 0;
}

.alt-reverse .alt-copy {
  order: 2;
}

.alt-reverse .alt-content {
  order: 1;
}

.insights-page .problem-grid,
.insights-page .benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insights-page .problem-grid .info-panel:last-child {
  grid-column: 1 / -1;
}

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

.insights-process-grid .process-step:last-child {
  grid-column: 1 / -1;
}

.process-flow-layout {
  display: grid;
  gap: 26px;
}

.process-section-header {
  width: min(100%, 760px);
  max-width: none;
  margin-left: auto;
  margin-bottom: 0;
  text-align: right;
  justify-items: end;
}

.process-section-header .eyebrow {
  justify-self: end;
}

.process-flow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.process-flow-grid .process-step {
  height: 100%;
}

.process-flow-grid .process-step:last-child {
  grid-column: auto;
}

.floating-quote > div {
  min-width: 0;
  flex: 1 1 auto;
}

.floating-quote > img {
  flex: 0 0 auto;
  align-self: center;
}

.message-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.message-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: message-marquee 80s linear infinite;
}

.message-item {
  flex: 0 0 248px;
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--slate-700);
}

.floating-quote:hover .message-track {
  animation-play-state: paused;
}

@keyframes message-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.section {
  padding: 92px 0;
}

.section-header {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-header.narrow {
  max-width: 760px;
}

.trusted-section {
  padding-top: 36px;
  padding-bottom: 16px;
}

.audience-section {
  padding-top: 44px;
  padding-bottom: 16px;
}

.trusted-shell {
  display: grid;
  gap: 24px;
  padding: 30px 0;
  border-radius: var(--radius-xl);
  background: transparent;
  box-shadow: none;
}

.trusted-copy {
  max-width: 700px;
}

.trusted-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.05rem, 3vw, 2.75rem);
  line-height: 1.02;
}

.trusted-copy p {
  margin: 12px 0 0;
}

.trusted-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px);
  gap: 18px;
}

.trusted-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 164px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.trusted-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 255, 0.12);
}

.trusted-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.problem-grid,
.benefits-grid,
.modules-grid,
.process-grid,
.differential-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.info-panel,
.feature-card,
.module-card,
.process-step,
.audience-card,
.differential-card,
.testimonial-card,
.solution-panel {
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-panel:hover,
.feature-card:hover,
.module-card:hover,
.process-step:hover,
.audience-card:hover,
.differential-card:hover,
.testimonial-card:hover,
.solution-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(37, 99, 255, 0.22);
}

.solution-panel {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(37, 99, 255, 0.06), rgba(37, 99, 255, 0.02)),
    var(--surface-1);
}

.solution-panel img {
  margin-bottom: 22px;
}

.solution-panel-logo {
  display: block;
  width: clamp(160px, 38%, 220px);
  height: auto;
}

.solution-points {
  margin: 0;
  padding-left: 18px;
}

.solution-points li + li,
.audience-list li + li {
  margin-top: 12px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--surface-2);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-600), #3d7bff);
  box-shadow: 0 12px 24px rgba(37, 99, 255, 0.22);
}

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

.audience-list {
  margin: 22px 0 0;
  padding-left: 20px;
}

.brand-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 30px 32px;
  background:
    linear-gradient(135deg, rgba(37, 99, 255, 0.07), rgba(37, 99, 255, 0.02)),
    rgba(255, 255, 255, 0.92);
}

.brand-assets {
  justify-content: flex-end;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.legal-main {
  padding: 126px 0 72px;
}

.legal-hero {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.legal-hero-copy {
  max-width: 780px;
}

.legal-hero-copy p {
  margin: 18px 0 0;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-summary {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.legal-summary h2,
.legal-section-card h2,
.legal-contact-card h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.legal-summary ul,
.legal-section-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-summary li,
.legal-section-list li {
  margin-bottom: 10px;
}

.legal-grid {
  display: grid;
  gap: 20px;
}

.legal-section-card,
.legal-contact-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 255, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-section-card p,
.legal-contact-card p {
  margin: 14px 0 0;
}

.legal-contact-card {
  margin-top: 20px;
}

.legal-contact-email {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-600);
  font-weight: 800;
}

.footer-inline-legal {
  color: var(--white);
  font-size: 0.84rem;
  white-space: nowrap;
}

.footer-inline-legal a {
  color: var(--white);
  font-weight: 700;
}

.footer-inline-legal a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-section {
  padding-top: 36px;
}

.testimonial-section .testimonial-grid {
  justify-items: start;
}

.testimonial-card {
  text-align: left;
}

.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink-950);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-mark {
  color: var(--blue-600);
  font-size: 1.35rem;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-item.is-open .faq-mark {
  transform: rotate(45deg);
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(25, 52, 126, 0.92)),
    rgba(11, 18, 32, 0.94);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow,
.final-cta .microcopy-row span {
  color: var(--white);
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.08);
}

.final-cta .microcopy-row span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.demo-form {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.demo-form-progress {
  display: grid;
  gap: 10px;
}

.demo-form-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-form-progress-label,
.demo-form-progress-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-form-progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.demo-form-progress-bar span {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  transition: width 280ms ease;
}

.demo-form-carousel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.demo-form-step {
  display: none;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(4, 10, 24, 0.24);
}

.demo-form-step.is-active {
  display: grid;
  animation: demoStepIn 260ms ease;
}

.demo-form-step[data-demo-step-type="industries"] .demo-form-step-question {
  max-width: 19ch;
}

.demo-form-step-kicker {
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-form-step-question {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.12;
  font-weight: 800;
  max-width: 15ch;
}

.demo-form-step-helper {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 46ch;
}

.demo-industry-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-industry-limit,
.demo-industry-counter {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.demo-industry-counter {
  color: #fbbf24;
}

.demo-industry-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-industry-chip {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.demo-industry-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.demo-industry-chip.is-selected {
  border-color: transparent;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.22);
}

.demo-industry-chip.is-disabled {
  opacity: 0.54;
  cursor: not-allowed;
}

.demo-form-step input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
  font-size: 1rem;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.demo-form-step input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.demo-form-step input:focus {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.demo-password-field {
  position: relative;
}

.demo-password-field input {
  padding-right: 62px;
}

.demo-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.demo-password-toggle:hover,
.demo-password-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}

.demo-password-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-password-icon-hide,
.demo-password-toggle[aria-pressed="true"] .demo-password-icon-show {
  display: none;
}

.demo-password-toggle[aria-pressed="true"] .demo-password-icon-hide {
  display: block;
}

.demo-password-feedback {
  display: grid;
  gap: 8px;
}

.demo-password-meter {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.demo-password-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.3);
  transition: width 180ms ease, background-color 180ms ease;
}

.demo-password-meter span[data-strength="invalid"],
.demo-password-meter span[data-strength="weak"] {
  background: #fb7185;
}

.demo-password-meter span[data-strength="medium"] {
  background: #fbbf24;
}

.demo-password-meter span[data-strength="strong"] {
  background: #4ade80;
}

.demo-password-strength,
.demo-password-rules {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.demo-password-strength[data-strength="invalid"],
.demo-password-strength[data-strength="weak"] {
  color: #fecdd3;
}

.demo-password-strength[data-strength="medium"] {
  color: #fde68a;
}

.demo-password-strength[data-strength="strong"] {
  color: #bbf7d0;
}

.demo-turnstile-wrap {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 6px;
}

.demo-turnstile-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.demo-turnstile-slot {
  display: flex;
  justify-content: flex-start;
  min-height: 66px;
}

.demo-turnstile-slot > div {
  max-width: 100%;
}

.demo-support-modal[hidden] {
  display: none !important;
}

.demo-support-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.demo-support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 24, 0.66);
  backdrop-filter: blur(10px);
}

.demo-support-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(20, 34, 75, 0.98), rgba(31, 53, 112, 0.94)),
    rgba(11, 18, 32, 0.96);
  box-shadow: 0 28px 60px rgba(4, 10, 24, 0.34);
}

.demo-support-modal-card h3,
.demo-support-modal-card p,
.demo-support-modal-card li,
.demo-support-modal-kicker {
  color: var(--white);
}

.demo-support-modal-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.demo-support-modal-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.demo-support-modal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.demo-support-modal-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.demo-support-modal-list li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.demo-support-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.demo-support-modal-dismiss {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-form-nav-button,
.demo-form-submit {
  min-width: 154px;
}

.demo-form-submit[hidden],
.demo-form-nav-button[hidden] {
  display: none !important;
}

.demo-form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.demo-form-status[data-state="success"] {
  color: #d7ffe6;
}

.demo-form-status[data-state="error"] {
  color: #ffd7d7;
}

.demo-form-status[data-state="loading"] {
  color: rgba(255, 255, 255, 0.88);
}

@keyframes demoStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.confirm-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 240px);
}

.confirm-card {
  width: min(720px, 100%);
  padding: 40px;
  border-radius: 28px;
  border: 1px solid rgba(16, 27, 52, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.98));
  color: #101b34;
  box-shadow: 0 28px 70px rgba(16, 27, 52, 0.12);
  position: relative;
  overflow: hidden;
}

.confirm-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #101b34, #c9a227);
}

.confirm-card-head {
  display: grid;
  gap: 12px;
  margin-bottom: 6px;
}

.confirm-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(16, 27, 52, 0.06);
  border: 1px solid rgba(16, 27, 52, 0.08);
}

.confirm-card h1 {
  margin: 0;
  color: #101b34;
  max-width: 12ch;
}

.confirm-card p {
  color: rgba(16, 27, 52, 0.72);
  max-width: 58ch;
}

.confirm-card .eyebrow {
  color: #101b34;
  opacity: 0.7;
}

.confirm-status,
.confirm-summary {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(16, 27, 52, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.confirm-status.is-loading {
  color: #101b34;
  border-left: 4px solid #101b34;
}

.confirm-status.is-success {
  color: #101b34;
  border-left: 4px solid #c9a227;
  background: rgba(201, 162, 39, 0.08);
}

.confirm-status.is-error {
  color: #101b34;
  border-left: 4px solid #101b34;
  background: rgba(16, 27, 52, 0.04);
}

.confirm-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.confirm-summary-item {
  display: grid;
  gap: 6px;
}

.confirm-summary-item span {
  color: rgba(16, 27, 52, 0.56);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.confirm-summary-item strong {
  font-size: 1.02rem;
  color: #101b34;
}

.confirm-summary h2 {
  margin-bottom: 10px;
  color: #101b34;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 4px;
}

.confirm-actions .button-primary {
  background: #101b34;
  color: #ffffff;
}

.confirm-actions .confirm-login-button {
  min-width: min(100%, 320px);
  padding: 18px 32px;
  justify-content: center;
  font-size: 1rem;
}

.site-footer {
  margin-top: 16px;
  padding: 42px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(61, 123, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #101b34, #1f3570 72%);
}

.footer-layout {
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  align-items: start;
  color: var(--white);
}

.site-footer .footer-column a,
.site-footer .footer-brand p,
.site-footer .footer-column span,
.site-footer .footer-column h3 {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .footer-column a:hover {
  color: var(--white);
}

.footer-brand {
  gap: 18px;
}

.footer-brand img {
  width: 158px;
  height: auto;
}

.footer-brand p {
  max-width: 460px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.footer-contact-head .footer-social {
  margin-top: 0;
  flex-wrap: wrap;
}

.footer-contact-head h3 {
  margin-bottom: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 200ms;
}

.reveal-delay-4 {
  transition-delay: 260ms;
}

.reveal-delay-5 {
  transition-delay: 320ms;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .faq-answer {
    max-height: none;
  }

  .message-track {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .solution-layout,
  .audience-layout,
  .faq-layout,
  .legal-hero,
  .footer-layout,
  .brand-banner,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .alt-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .module-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .module-showcase-grid.is-reverse .module-copy,
  .module-showcase-grid.is-reverse .module-visual {
    order: initial;
  }

  .module-visual-shell {
    min-height: 360px;
  }

  .module-copy h3 {
    font-size: clamp(1.9rem, 5.4vw, 3rem);
  }

  .module-visual-customers,
  .module-visual-stage {
    min-height: 0;
  }

  .module-visual {
    height: 590px;
  }

  .module-screen-main {
    height: 390px;
  }

  .module-screen-floating {
    right: 0;
    bottom: 0;
    width: min(68%, 500px);
    height: 360px;
  }

  .insights-main .alt-section + .alt-section {
    margin-top: 0;
  }

  .alt-reverse .alt-copy,
  .alt-reverse .alt-content {
    order: initial;
  }

  .hero-visual {
    min-height: 540px;
  }

  .product-card-main {
    margin-left: 0;
  }

  .floating-quote {
    width: 100%;
    max-width: 100%;
  }

  .hero-marquee {
    width: min(var(--container), calc(100% - 48px));
    max-width: none;
  }

  .problem-grid,
  .benefits-grid,
  .modules-grid,
  .testimonial-grid,
  .differential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .insights-page .problem-grid,
  .insights-page .benefits-grid,
  .insights-process-grid {
    grid-template-columns: 1fr;
  }

  .insights-process-grid .process-step:last-child {
    grid-column: auto;
  }

  .process-section-header .eyebrow {
    justify-self: start;
  }

  .brand-assets {
    justify-content: flex-start;
  }

  .process-section-header {
    width: 100%;
    text-align: left;
    justify-items: start;
  }

  .process-section-header .eyebrow {
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

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

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

  .mobile-menu.is-open {
    display: flex;
  }

  .site-header {
    position: fixed;
  }

  .hero {
    padding-top: 104px;
  }

  .insights-main {
    padding-top: 104px;
  }

  .hero-copy,
  .audience-copy,
  .faq-copy,
  .legal-hero-copy,
  .alt-copy,
  .final-cta-copy {
    min-width: 0;
  }

  .hero-layout > *,
  .solution-layout > *,
  .audience-layout > *,
  .faq-layout > *,
  .legal-hero > * {
    min-width: 0;
  }

  .hero-visual {
    min-height: auto;
    gap: 18px;
    padding-top: 8px;
  }

  .product-card-main,
  .floating-quote {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .hero-marquee {
    width: min(var(--container), calc(100% - 28px));
    margin-top: 18px;
  }

  .message-item {
    flex-basis: 220px;
  }

  .workflow-pill-row {
    gap: 8px;
  }

  .workflow-pill {
    flex: 1 1 140px;
  }

  .module-showcase {
    padding: 24px 0;
  }

  .module-copy p {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .module-visual-shell {
    min-height: 300px;
    padding: 22px;
    border-radius: 28px;
  }

  .module-visual-body {
    grid-template-columns: 1fr;
  }

  .module-visual-sidebar {
    min-height: 72px;
  }

  .module-card-grid,
  .module-kanban,
  .module-progress-row,
  .module-summary-row {
    grid-template-columns: 1fr;
  }

  .module-table {
    grid-template-columns: 1fr 1fr;
  }

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

  .module-visual-customers,
  .module-visual-stage {
    min-height: 0;
  }

  .module-visual {
    height: 520px;
  }

  .module-screen-main {
    width: 100%;
    height: 340px;
  }

  .module-screen-floating {
    right: 0;
    bottom: 0;
    width: min(70%, 470px);
    height: 310px;
    margin: 0;
  }

  .trusted-copy h2,
  .faq-copy h2,
  .final-cta-copy h2 {
    max-width: 14ch;
  }

  .demo-form-carousel {
    min-height: 430px;
  }

  .demo-form-step {
    padding: 22px;
  }

  .demo-form-step-question {
    max-width: none;
  }

  .demo-industry-chip-grid {
    gap: 10px;
  }

  .confirm-card {
    padding: 28px 22px;
  }

  .confirm-summary-grid {
    grid-template-columns: 1fr;
  }

  .brand-banner,
  .final-cta {
    gap: 20px;
  }

  .footer-contact-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact-head .footer-social {
    order: 2;
    margin-top: 12px;
  }

  .footer-contact-head h3 {
    order: 1;
  }

  .product-card-main {
    min-height: auto;
  }

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

  .trusted-card {
    min-height: 118px;
    padding: 16px;
    border-radius: 22px;
  }

  .metric-grid,
  .problem-grid,
  .benefits-grid,
  .legal-grid,
  .modules-grid,
  .process-grid,
  .audience-cards,
  .differential-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 96px 0 28px;
  }

  .hero-layout,
  .audience-layout,
  .faq-layout,
  .legal-hero,
  .alt-grid,
  .module-showcase-grid,
  .footer-layout {
    gap: 22px;
  }

  .lead,
  .support-copy,
  .module-copy p {
    max-width: none;
  }

  .product-top,
  .module-visual-header,
  .footer-contact-head {
    gap: 12px;
  }

  .status-chip {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .module-visual-customers,
  .module-visual-stage {
    min-height: 0;
  }

  .module-visual {
    height: 410px;
  }

  .module-screen-main {
    height: 270px;
  }

  .module-screen-floating {
    width: min(76%, 390px);
    height: 240px;
    margin: 0;
  }

  .trusted-card {
    min-height: 108px;
    padding: 14px;
  }

  .faq-question {
    align-items: flex-start;
    padding: 20px;
  }

  .faq-question span:first-child {
    min-width: 0;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  .final-cta-actions {
    width: 100%;
  }

  .demo-form-nav-button,
  .demo-form-submit {
    width: 100%;
  }

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

  .footer-contact-head {
    flex-direction: column;
  }

  .footer-contact-head .footer-social {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 78px;
  }

  .nav {
    min-height: 66px;
    padding: 6px 0;
  }

  .module-visual {
    height: 330px;
  }

  .module-screen {
    border-radius: 18px;
  }

  .module-screen-main {
    height: 215px;
  }

  .module-screen-floating {
    width: min(80%, 330px);
    height: 190px;
  }

  .brand img {
    width: 170px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 2.7rem);
    line-height: 1.02;
  }

  .metric-card {
    grid-template-rows: auto auto auto;
  }

  .metric-copy {
    min-height: 0;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 1.95rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
    margin-top: 18px;
  }

  .support-copy {
    margin-bottom: 24px;
  }

  .hero-actions,
  .workflow-pill-row,
  .microcopy-row {
    gap: 10px;
  }

  .workflow-pill {
    width: 100%;
  }

  .product-card-main {
    padding: 20px;
  }

  .metric-grid {
    gap: 12px;
    margin-top: 24px;
  }

  .metric-card {
    min-height: 0;
    padding: 16px;
  }

  .metric-label,
  .metric-copy {
    min-height: 0;
  }

  .message-item {
    flex-basis: 200px;
    font-size: 0.92rem;
  }

  .message-carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  }

  .module-copy h3,
  .product-title,
  h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .module-visual-shell {
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }

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

  .module-table {
    grid-template-columns: 1fr;
  }

  .trusted-shell {
    padding: 16px 0;
  }

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

  .brand-banner {
    padding: 22px;
  }

  .footer-layout {
    gap: 28px;
  }

  .button,
  .final-cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .final-cta-actions {
    width: 100%;
  }

  .product-card-main,
  .info-panel,
  .feature-card,
  .module-card,
  .process-step,
  .audience-card,
  .differential-card,
  .testimonial-card,
  .brand-banner,
  .final-cta,
  .legal-summary,
  .legal-section-card,
  .legal-contact-card,
  .solution-panel {
    padding: 22px;
  }
}
