﻿:root {
  --bg: #f5f7ff;
  --surface: #ffffff;
  --surface-soft: #eef2ff;
  --text: #1f2853;
  --muted: #5e678c;
  --line: rgba(4, 34, 170, 0.12);
  --accent: #0422aa;
  --accent-deep: #031877;
  --accent-soft: #dfe5ff;
  --accent-soft-strong: #a9b5f4;
  --amber: #ffb133;
  --amber-deep: #d48600;
  --amber-soft: #fff1d8;
  --danger-soft: #fff2de;
  --success-soft: #e6ebff;
  --shadow: 0 24px 80px rgba(4, 34, 170, 0.12);
  --radius: 22px;
  --content-width: min(1120px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(4, 34, 170, 0.12), transparent 28%),
    radial-gradient(circle at right 18%, rgba(255, 177, 51, 0.14), transparent 24%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 100%);
}

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

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

p,
li {
  line-height: 1.65;
}

.site-header,
.section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-kicker,
.brand-subtitle,
.eyebrow {
  letter-spacing: 0;
}

.brand-subtitle,
.header-link,
.eyebrow,
.hero-note {
  color: var(--muted);
  font-size: 0.96rem;
}

.brand-logo {
  width: clamp(150px, 16vw, 210px);
  height: auto;
  display: block;
}

.header-link:hover {
  color: var(--accent);
}

.hero {
  min-height: calc(100svh - 72px);
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 56px 28px 108px;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  padding: 26px 0 26px 44px;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  font-family: "Roboto", sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 900;
  max-width: 10.5ch;
}

.hero-title-line {
  display: block;
}

.hero-title-line-primary {
  color: var(--text);
}

.hero-title-line-secondary {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent) 46%, #6378ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 44ch;
  margin: 22px 0 0;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin: 0 0 26px;
  padding-left: 14px;
  color: var(--accent);
  border-left: 3px solid var(--amber);
  max-width: 58ch;
}

.hero-points,
.checklist-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li,
.checklist-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
}

.hero-points li::before,
.checklist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  max-width: 48ch;
  margin-bottom: 24px;
  padding-left: 14px;
  color: var(--accent);
  border-left: 3px solid var(--amber);
}

.hero-eyebrow::before {
  content: none;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  width: 100%;
  max-width: none;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 0;
  padding-right: 12px;
}

.hero-points li::before {
  content: none;
}

.benefit-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 0.05rem;
  color: var(--amber);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(4, 34, 170, 0.18);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  border: 1px solid rgba(4, 34, 170, 0.16);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  color: var(--accent);
}

.hero-note {
  margin-top: 20px;
}

.hero-visual {
  position: relative;
  padding: 28px 42px 28px 0;
}

.hero-visual-shell {
  position: relative;
  min-height: 680px;
}

.hero-device {
  position: absolute;
  inset: 54px 56px 64px 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 242, 255, 0.8));
  border: 1px solid rgba(4, 34, 170, 0.08);
  box-shadow: 0 28px 72px rgba(4, 34, 170, 0.14);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  z-index: 2;
  width: min(260px, 46%);
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(4, 34, 170, 0.1);
  box-shadow: 0 20px 50px rgba(4, 34, 170, 0.16);
}

.hero-card-top {
  top: 22px;
  right: 0;
}

.hero-card-bottom {
  left: 0;
  bottom: 18px;
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

body.hero-text-only .hero {
  width: min(1280px, calc(100vw - 48px));
  grid-template-columns: 1fr;
  min-height: calc(100svh - 96px);
  max-width: none;
  justify-items: stretch;
  padding-top: 40px;
  padding-bottom: 128px;
}

body.hero-text-only .hero-copy {
  width: 100%;
  max-width: none;
  padding-top: 8px;
  padding-bottom: 24px;
}

body.hero-text-only .hero-copy h1 {
  max-width: 18ch;
}

body.hero-text-only .hero-text {
  max-width: 58ch;
}

body.hero-layout-left .hero {
  justify-items: stretch;
}

body.hero-layout-left .hero-copy {
  text-align: left;
  padding-left: 56px;
  padding-right: 96px;
}

body.hero-layout-centered .hero {
  justify-items: stretch;
}

body.hero-layout-centered .hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-left: 64px;
  padding-right: 64px;
}

body.hero-layout-centered .eyebrow,
body.hero-layout-centered .hero-text,
body.hero-layout-centered .hero-note {
  margin-left: auto;
  margin-right: auto;
}

body.hero-layout-centered .hero-actions {
  justify-content: center;
  width: 100%;
}

body.hero-layout-centered .hero-points {
  justify-content: center;
  width: 100%;
}

body.hero-layout-centered .hero-points li {
  text-align: left;
}

body.hero-with-device .hero {
  width: min(1280px, calc(100vw - 48px));
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 5vw, 68px);
  min-height: calc(100svh - 96px);
  padding-top: 36px;
}

body.hero-with-device .hero-copy {
  padding-left: 36px;
  padding-right: 0;
}

body.hero-with-device .hero-copy h1 {
  max-width: 10.5ch;
}

body.hero-with-device .hero-points {
  grid-template-columns: 1fr;
  max-width: 460px;
}

body.hero-with-device .hero-visual {
  display: grid;
  place-items: center;
  padding: 0 24px 0 0;
}

.hero-device-gif {
  width: min(430px, 100%);
  height: auto;
  border-radius: 38px;
  filter: drop-shadow(0 32px 48px rgba(4, 34, 170, 0.22));
}

.section {
  padding: 110px 0;
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 34px -24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 242, 255, 0.76)),
    linear-gradient(90deg, rgba(255, 177, 51, 0.06), rgba(4, 34, 170, 0.06));
  border-radius: 32px;
  z-index: -1;
}

.comparison-section {
  width: 100%;
  margin-top: 8px;
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.9), rgba(245, 247, 255, 0.94)),
    linear-gradient(90deg, rgba(255, 177, 51, 0.02), rgba(4, 34, 170, 0.025));
}

.comparison-section .section-heading,
.comparison-section .comparison {
  width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.comparison-section .section-heading {
  width: var(--content-width);
  max-width: none;
  text-align: left;
}

.comparison-section .section-heading .eyebrow,
.comparison-section .section-heading h2 {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.comparison-section .comparison {
  margin-top: 42px;
}

.section-heading {
  width: 100%;
  max-width: 100%;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  max-width: 100%;
}

.cta-panel h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p:not(.eyebrow),
.cta-panel p:not(.eyebrow) {
  font-size: 1.06rem;
  color: var(--muted);
  margin-top: 20px;
}

.comparison {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.comparison-panel,
.feature,
.video-frame,
.cta-panel,
.faq-item,
.step-content {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(4, 34, 170, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-panel {
  padding: 28px;
}

.comparison-panel h3 {
  margin: 0 0 18px;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.comparison-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.comparison-panel li {
  position: relative;
  padding-left: 30px;
}

.comparison-panel li + li {
  margin-top: 10px;
}

.comparison-panel li::before {
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--amber);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.65;
}

.comparison-panel-negative li::before {
  content: "×";
}

.comparison-panel-positive li::before {
  content: "✓";
}

.comparison-panel-negative {
  background: linear-gradient(180deg, rgba(255, 241, 216, 0.88), rgba(255, 255, 255, 0.92));
}

.comparison-panel-positive {
  background: linear-gradient(180deg, rgba(230, 235, 255, 0.9), rgba(255, 255, 255, 0.92));
}

.integration-layout {
  --integration-layout-padding: 42px;
  --integration-layout-padding-negative: -42px;
  --integration-visual-bleed: 6px;
  --integration-layout-radius: 8px;
  position: relative;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  padding: var(--integration-layout-padding);
  border: 1px solid rgba(4, 34, 170, 0.08);
  border-radius: var(--integration-layout-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 255, 0.72)),
    #fff;
  box-shadow: 0 24px 80px rgba(4, 34, 170, 0.1);
  overflow: hidden;
}

.integration-copy p {
  margin: 0 0 14px;
}

.integration-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.08;
}

.integration-copy p:not(.eyebrow) {
  max-width: 44ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.integration-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
}

.integration-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border: 1px solid rgba(4, 34, 170, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 800;
}

.integration-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-58%) rotate(45deg);
}

.integration-visual {
  display: grid;
  place-items: stretch;
  align-self: stretch;
  margin: calc(var(--integration-layout-padding-negative) - var(--integration-visual-bleed)) calc(var(--integration-layout-padding-negative) - var(--integration-visual-bleed)) calc(var(--integration-layout-padding-negative) - var(--integration-visual-bleed)) 0;
  overflow: hidden;
}

.integration-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 0 var(--integration-layout-radius) var(--integration-layout-radius) 0;
}

.steps-slider {
  position: relative;
  width: min(920px, 100%);
  margin: 42px auto 0;
}

.steps-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.steps-grid {
  display: flex;
  gap: 0;
  margin-top: 0;
  transition: transform 420ms ease;
  will-change: transform;
}

.step {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 0 2px;
}

.step-number {
  display: grid;
  place-items: center;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  padding-top: 0;
}

.step-content {
  --step-image-bleed: 36px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: stretch;
  min-height: 330px;
  padding: 32px;
}

.step-text {
  position: relative;
  z-index: 1;
}

.step-content h3,
.feature h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.step-content p,
.feature p {
  margin: 12px 0 0;
  color: var(--muted);
}

.step-content img {
  position: absolute;
  top: calc(var(--step-image-bleed) * -1);
  right: calc(var(--step-image-bleed) * -1);
  bottom: calc(var(--step-image-bleed) * -1);
  width: calc(54% + var(--step-image-bleed));
  height: calc(100% + (var(--step-image-bleed) * 2));
  margin: 0;
  object-fit: cover;
  object-position: right bottom;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.steps-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.steps-control {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(4, 34, 170, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(4, 34, 170, 0.1);
}

.steps-control:hover {
  background: var(--surface-soft);
}

.steps-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  cursor: pointer;
}

.steps-dot.is-active {
  width: 44px;
  background: var(--amber);
}

.section-action {
  width: 100%;
  margin-top: 28px;
  text-align: center;
}

.steps .section-action {
  display: flex;
  justify-content: center;
}

.features-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--accent);
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin-bottom: 18px;
}

.video-frame {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(4, 34, 170, 0.18), rgba(3, 24, 119, 0.66));
  color: #fff;
  text-align: center;
  padding: 24px;
}

.play-button {
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 177, 51, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 4px;
}

.checklist-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 20px;
}

.cta-final {
  padding-top: 80px;
}

.cta-panel {
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(255, 177, 51, 0.2), transparent 28%),
    radial-gradient(circle at left bottom, rgba(4, 34, 170, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.92);
}

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

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 980px) {
  .hero,
  .integration-layout,
  .comparison,
  .steps-grid,
  .features-grid,
  .checklist-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    padding: 28px 0 18px 28px;
  }

  .hero-visual {
    padding: 20px 28px 24px 0;
  }

  .hero-visual-shell {
    min-height: 620px;
  }

  .hero-device {
    inset: 54px 44px 52px 24px;
  }

  .section {
    padding: 88px 0;
  }

  .comparison-section {
    padding: 96px 0;
  }

  .step {
    grid-template-columns: 62px 1fr;
  }

  .site-footer {
    display: grid;
  }

  body.hero-text-only .hero {
    min-height: auto;
  }

  body.hero-text-only .hero-points {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .integration-layout {
    --integration-layout-padding: 30px;
    --integration-layout-padding-negative: -30px;
    padding: var(--integration-layout-padding);
  }

  .integration-visual {
    min-height: 320px;
    margin: 0 calc(var(--integration-layout-padding-negative) - var(--integration-visual-bleed)) calc(var(--integration-layout-padding-negative) - var(--integration-visual-bleed));
  }

  .integration-visual img {
    border-radius: 0 0 var(--integration-layout-radius) var(--integration-layout-radius);
  }

  body.hero-with-device .hero {
    padding-bottom: 88px;
  }

  body.hero-with-device .hero-copy {
    padding-left: 28px;
    padding-right: 28px;
  }

  body.hero-with-device .hero-points {
    max-width: 560px;
  }

  body.hero-with-device .hero-visual {
    padding: 8px 0 0;
  }

  .hero-device-gif {
    width: min(390px, 82vw);
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 28px, 1120px);
  }

  .site-header {
    padding-top: 18px;
  }

  .header-link {
    display: none;
  }

  .hero {
    gap: 28px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 72px;
  }

  .hero-copy {
    padding: 24px 12px 0;
  }

  .hero-visual {
    padding: 8px 8px 0;
  }

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

  .hero-device {
    position: relative;
    inset: auto;
    margin: 56px 10px 0;
    height: 430px;
  }

  .hero-card {
    width: auto;
    max-width: 220px;
    padding: 18px 20px;
  }

  .hero-card-top {
    top: 0;
    right: 8px;
  }

  .hero-card-bottom {
    left: 8px;
    bottom: 0;
  }

  .hero::before {
    inset: 18px 14px 14px;
    border-radius: 28px;
  }

  .section-heading h2,
  .cta-panel h2 {
    max-width: 100%;
  }

  .section-contrast::before {
    inset: 22px -10px;
    border-radius: 24px;
  }

  .comparison-section {
    padding: 80px 0;
  }

  .comparison-panel,
  .feature,
  .step-content,
  .cta-panel,
  .faq-item,
  .integration-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .steps-slider {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    justify-self: center;
    border-radius: 50%;
    background: var(--surface-soft);
  }

  .step-content {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .step-content img {
    position: static;
    grid-column: auto;
    grid-row: auto;
    width: min(520px, 100%);
    height: auto;
    max-height: 220px;
    margin-top: 18px;
    object-fit: contain;
    border-radius: 18px;
  }

  .cta-panel {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .button {
    width: 100%;
  }

  body.hero-text-only .hero-copy {
    max-width: none;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 28px;
    padding-bottom: 20px;
  }

  body.hero-text-only .hero {
    width: min(1280px, calc(100vw - 28px));
    padding-top: 36px;
    padding-bottom: 72px;
  }

  body.hero-layout-centered .hero-copy {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.hero-layout-centered .hero-actions {
    align-items: center;
  }

  .hero-eyebrow {
    max-width: 100%;
  }

  body.hero-with-device .hero {
    width: min(1280px, calc(100vw - 28px));
    padding-top: 24px;
    padding-bottom: 72px;
  }

  body.hero-with-device .hero-copy {
    padding: 24px 12px 0;
  }

  .hero-device-gif {
    width: min(340px, 92vw);
  }
}

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

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

  .button {
    transition: none;
  }

  .steps-grid {
    transition: none;
  }
}

/* Slack-inspired refresh */
:root {
  --radius: 8px;
  --soft-band: #f8f9ff;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, calc(100vw - 40px));
  min-height: 64px;
  margin-top: 12px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(4, 34, 170, 0.1);
  backdrop-filter: blur(18px);
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
}

.language-picker span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.language-picker select {
  min-height: 42px;
  padding: 0 34px 0 14px;
  border: 1px solid rgba(4, 34, 170, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-deep);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.site-nav {
  flex: 1;
  justify-content: center;
}

.site-nav a,
.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.header-link:hover {
  background: var(--surface-soft);
  color: var(--accent);
}

.button-header {
  min-height: 42px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.94rem;
}

.button-header:hover {
  background: var(--accent-deep);
}

body.hero-with-device .hero {
  width: min(1180px, calc(100vw - 40px));
  grid-template-columns: minmax(540px, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(18px, 2.5vw, 34px);
  min-height: auto;
  padding: 36px 0 48px;
  justify-items: stretch;
  text-align: left;
}

body.hero-with-device .hero-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  max-width: 760px;
  padding: 0;
}

body.hero-with-device .hero-copy h1 {
  max-width: 100%;
  font-size: clamp(2.65rem, 5.5vw, 4.9rem);
  font-weight: 800;
}

body.hero-with-device .hero-text {
  max-width: 46ch;
  margin-top: 18px;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
}

body.hero-with-device .hero-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

body.hero-with-device .hero-note {
  margin-top: 14px;
}

body.hero-with-device .hero-eyebrow {
  margin-right: 0;
  margin-left: 0;
}

body.hero-with-device .hero-visual {
  display: grid;
  align-items: center;
  justify-items: start;
  width: 100%;
  padding: 0;
}

.hero-device-stage {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  min-height: 470px;
  padding: 0;
}

.hero-device-stage::before {
  content: "";
  position: absolute;
  inset: 54px 22px 24px;
  z-index: 0;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 177, 51, 0.12), rgba(4, 34, 170, 0.08)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(4, 34, 170, 0.12);
}

.hero-device-gif {
  position: relative;
  z-index: 1;
  width: min(340px, 100%);
  height: 450px;
  object-fit: cover;
  object-position: top;
  border-radius: 40px;
  filter: drop-shadow(0 34px 48px rgba(4, 34, 170, 0.24));
}

.hero-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(4, 34, 170, 0.12);
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.hero-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-chip-scan {
  top: 62px;
  left: 0;
}

.hero-chip-stock {
  top: 132px;
  right: 0;
}

.hero-chip-order {
  bottom: 112px;
  left: -8px;
}

.hero-chip-connect {
  right: 8px;
  bottom: 48px;
}

.trust-strip {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto 34px;
  padding: 24px 0 42px;
  text-align: center;
}

.trust-strip p {
  margin: 0;
  color: #1f2853;
  font-size: 1rem;
  font-weight: 700;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 18px;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #000;
  font-weight: 400;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center .eyebrow,
.section-heading-center p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.product-suite {
  width: 100%;
  padding: 92px 0 110px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 249, 255, 0.98)),
    linear-gradient(90deg, rgba(255, 177, 51, 0.04), rgba(4, 34, 170, 0.04));
}

.product-suite,
.steps,
.feature-showcase,
.video,
.faq,
.cta-final {
  scroll-margin-top: 112px;
}

.product-suite > .section-heading,
.product-suite > .suite-tabs,
.product-suite > .suite-panels {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.suite-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 34, 170, 0.08);
}

.suite-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.suite-tab:hover,
.suite-tab.is-active {
  background: var(--accent);
  color: #fff;
}

.suite-panels {
  margin-top: 24px;
}

.suite-panel {
  --suite-panel-padding: 40px;
  --suite-panel-padding-negative: -40px;
  --suite-panel-padding-double: 80px;
  --suite-panel-image-bleed: 56px;
  --suite-panel-image-crop-left: 0;
  --suite-panel-radius: 8px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: stretch;
  min-height: 420px;
  padding: var(--suite-panel-padding);
  border: 1px solid rgba(4, 34, 170, 0.08);
  border-radius: var(--suite-panel-radius);
  background: #fff;
  box-shadow: 0 26px 72px rgba(4, 34, 170, 0.12);
  overflow: hidden;
}

.suite-panel[hidden] {
  display: none;
}

.suite-copy {
  position: relative;
  z-index: 1;
  align-self: start;
}

.suite-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.suite-copy p:not(.eyebrow) {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.suite-panel img {
  position: absolute;
  top: 50%;
  right: 0;
  width: auto;
  max-width: none;
  height: 100%;
  margin: 0;
  border-radius: var(--suite-panel-radius) 0 0 var(--suite-panel-radius);
  object-fit: contain;
  object-position: right center;
  clip-path: inset(0 0 0 var(--suite-panel-image-crop-left));
  transform: translateY(-50%);
}

.comparison-section {
  margin-top: 0;
}

.feature-showcase {
  width: 100%;
}

.feature-showcase.section-contrast::before {
  inset: 34px 0;
  border-radius: 0;
}

.feature-showcase > .section-heading,
.feature-showcase > .feature-stories {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.feature-showcase > .section-heading {
  max-width: var(--content-width);
  text-align: center;
}

.feature-showcase > .section-heading .eyebrow,
.feature-showcase > .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.comparison-section > .section-heading,
.steps > .section-heading,
.video > .section-heading,
.metrics > .section-heading,
.faq > .section-heading {
  width: var(--content-width);
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.comparison-section > .section-heading .eyebrow,
.comparison-section > .section-heading h2,
.steps > .section-heading .eyebrow,
.steps > .section-heading h2,
.video > .section-heading .eyebrow,
.video > .section-heading h2,
.metrics > .section-heading .eyebrow,
.metrics > .section-heading h2,
.faq > .section-heading .eyebrow,
.faq > .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 0.72fr);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(4, 34, 170, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.feature-story h3 {
  margin: 0;
  font-size: 1.45rem;
}

.feature-story p {
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-story img {
  width: min(172px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  max-height: 190px;
  object-fit: contain;
}

.metrics {
  padding-top: 94px;
}

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

.metrics-grid article {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(4, 34, 170, 0.1);
  text-align: center;
}

.metrics-icon {
  width: min(152px, 70%);
  height: 152px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.metrics-grid strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.08;
}

.metrics-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.cta-panel {
  border-radius: 8px;
  text-align: center;
}

.cta-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100vw - 28px, 1180px);
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px;
    border-radius: 24px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  body.hero-with-device .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0 58px;
    justify-items: center;
    text-align: center;
  }

  body.hero-with-device .hero-copy {
    justify-items: center;
    max-width: 760px;
  }

  body.hero-with-device .hero-actions {
    justify-content: center;
  }

  body.hero-with-device .hero-eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-device-stage {
    width: min(640px, 100%);
    min-height: 450px;
  }

  .hero-device-gif {
    width: min(320px, 68vw);
    height: 420px;
  }

  .hero-chip-scan {
    left: 4px;
  }

  .hero-chip-stock {
    right: 0;
  }

  .hero-chip-order {
    left: 10px;
  }

  .hero-chip-connect {
    right: 6px;
  }

  .suite-panel,
  .feature-stories,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .suite-panel {
    text-align: center;
  }

  .suite-panel img {
    position: static;
    width: calc(100% + var(--suite-panel-padding-double) + var(--suite-panel-image-bleed));
    height: auto;
    margin: 0 calc(var(--suite-panel-padding-negative) - var(--suite-panel-image-bleed)) var(--suite-panel-padding-negative) var(--suite-panel-padding-negative);
    border-radius: 0 0 var(--suite-panel-radius) var(--suite-panel-radius);
    object-fit: contain;
    clip-path: none;
    transform: none;
  }

  .suite-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    padding: 10px;
  }

  .site-nav {
    display: none;
  }

  .header-link {
    display: none;
  }

  .button-header {
    min-height: 40px;
    width: auto;
    padding: 0 14px;
  }

  .language-picker select {
    min-height: 40px;
    padding-right: 26px;
    padding-left: 10px;
    font-size: 0.82rem;
  }

  body.hero-with-device .hero {
    width: min(100vw - 28px, 1180px);
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 44px;
  }

  body.hero-with-device .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 9.6vw, 3.4rem);
  }

  body.hero-with-device .hero-text {
    margin-top: 14px;
    font-size: 0.96rem;
  }

  body.hero-with-device .hero-actions {
    margin-top: 20px;
  }

  .hero-device-stage {
    min-height: auto;
    padding: 16px 0 0;
  }

  .hero-device-stage::before {
    inset: 74px 8px 80px;
  }

  .hero-device-gif {
    width: min(292px, 86vw);
    height: 380px;
  }

  .hero-chip {
    position: static;
    min-height: 38px;
    margin: 4px;
    font-size: 0.9rem;
  }

  .hero-device-stage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-device-gif {
    order: -1;
    flex: 0 0 auto;
    margin: 0 auto 14px;
  }

  .trust-strip,
  .product-suite > .section-heading,
  .product-suite > .suite-tabs,
  .product-suite > .suite-panels,
  .feature-showcase > .section-heading,
  .feature-showcase > .feature-stories {
    width: min(100vw - 28px, 1120px);
  }

  .suite-tabs {
    border-radius: 8px;
  }

  .suite-tab {
    flex: 1 1 130px;
  }

  .suite-panel,
  .feature-story,
  .metrics-grid article {
    padding: 22px;
  }

  .suite-panel {
    --suite-panel-padding: 22px;
    --suite-panel-padding-negative: -22px;
    --suite-panel-padding-double: 44px;
  }

  .feature-story {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .cta-panel h2,
  .suite-copy h3 {
    max-width: none;
  }
}

/* Section background rhythm */
.trust-strip {
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 48px;
  background: transparent;
}

.product-suite {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 177, 51, 0.12), transparent 24%),
    linear-gradient(180deg, #eef2ff 0%, #f8f9ff 100%);
}

.comparison-section {
  background: #fff;
}

.integration {
  width: 100%;
  padding: 108px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 177, 51, 0.14), transparent 24%),
    linear-gradient(135deg, #e8edff 0%, #f7f9ff 100%);
}

.integration-layout {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.94);
}

.steps {
  width: 100%;
  padding: 108px 0;
  background: #fff;
}

.steps > .section-heading,
.steps > .section-action {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.steps > .steps-slider {
  width: min(920px, var(--content-width));
}

.feature-showcase {
  padding: 108px 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(4, 34, 170, 0.08), transparent 24%),
    linear-gradient(180deg, #fff7e8 0%, #fffaf2 100%);
}

.feature-showcase.section-contrast::before {
  content: none;
}

.video {
  width: 100%;
  padding: 108px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 177, 51, 0.18), transparent 24%),
    linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
}

.video > .section-heading,
.video > .video-frame {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.video .eyebrow,
.video .section-heading p:not(.eyebrow),
.video h2 {
  color: #fff;
}

.video .eyebrow {
  border-left-color: var(--amber);
}

.video-frame {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 72px rgba(3, 24, 119, 0.28);
}

.metrics {
  width: 100%;
  padding: 108px 0;
  background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.metrics > .section-heading,
.metrics > .metrics-grid,
.metrics > .checklist-list {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.cta-final {
  width: 100%;
  padding: 108px 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 177, 51, 0.2), transparent 26%),
    linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.cta-final .cta-panel {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.96);
}

.faq {
  padding-top: 108px;
}

@media (max-width: 720px) {
  .integration,
  .steps,
  .feature-showcase,
  .video,
  .metrics,
  .cta-final {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .integration-layout,
  .video > .section-heading,
  .video > .video-frame,
  .metrics > .section-heading,
  .metrics > .metrics-grid,
  .metrics > .checklist-list,
  .cta-final .cta-panel {
    width: min(100vw - 28px, 1120px);
  }
}

/* Consistent section spacing */
.section,
.comparison-section,
.product-suite,
.integration,
.steps,
.feature-showcase,
.video,
.metrics,
.cta-final,
.faq {
  padding-top: 84px;
  padding-bottom: 84px;
}

@media (max-width: 720px) {
  .section,
  .comparison-section,
  .product-suite,
  .integration,
  .steps,
  .feature-showcase,
  .video,
  .metrics,
  .cta-final,
  .faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.site-header {
  margin-bottom: 0;
}

body.hero-with-device .hero {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
}

.trust-strip {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-top: -8px;
  padding-top: 22px;
  padding-bottom: 78px;
  background: transparent;
}

.trust-strip > p,
.trust-strip > .trust-items {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.trust-strip > .trust-items {
  margin-top: 18px;
}

.product-suite {
  margin-top: 0;
}

/* Continuous first-screen gradient */
body {
  background:
    radial-gradient(circle at top left, rgba(4, 34, 170, 0.12), transparent 28%),
    radial-gradient(circle at right 18%, rgba(255, 177, 51, 0.14), transparent 24%),
    linear-gradient(
      180deg,
      #fcfdff 0%,
      #f7f9ff 18%,
      #f1f5ff 34%,
      #eef2ff 48%,
      var(--bg) 66%,
      var(--bg) 100%
    );
}

.product-suite {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 177, 51, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 24%, #f6f8ff 56%, #eef2ff 100%);
}
/* Desktop app download QR */
.hero-qr {
  display: inline-grid;
  grid-template-columns: 82px minmax(0, 13ch);
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(4, 34, 170, 0.12);
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-qr:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 34, 170, 0.18);
  box-shadow: 0 22px 52px rgba(4, 34, 170, 0.16);
}

.hero-qr img {
  width: 82px;
  height: 82px;
  padding: 6px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 6px;
  background: #fff;
}

.hero-qr span {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .hero-qr {
    display: none;
  }
}
/* Hero trust strip */
.trust-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 32px 0 0;
  padding: 22px 0 20px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  text-align: center;
}

.trust-strip p {
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  color: #1f2853;
  font-size: clamp(0.96rem, 1.18vw, 1.12rem);
  font-weight: 300;
  line-height: 1.45;
}

.trust-items {
  width: min(980px, calc(100vw - 48px));
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 999px;
  background: rgba(245, 247, 255, 0.72);
  color: #000;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
}

.trust-items span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--amber);
}

@media (max-width: 720px) {
  .trust-strip {
    margin-top: 16px;
    padding: 22px 0 18px;
  }

  .trust-strip p,
  .trust-items {
    width: min(100vw - 28px, 1120px);
  }

  .trust-items {
    gap: 8px;
  }

  .trust-items span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.78rem;
  }
}
/* Transparent hero device backing */
.hero-device-stage::before {
  background: transparent;
  box-shadow: none;
}

.hero-device-gif {
  background: transparent;
}
/* Desktop hero alignment with product suite */
@media (min-width: 981px) {
  body.hero-with-device .hero-copy {
    padding-left: clamp(4px, calc((100vw - 1160px) / 2), 30px);
  }
}
/* Compact step text block */
.step-text {
  display: grid;
  align-content: center;
  gap: 10px;
}

.step-text p {
  margin: 0;
}

@media (min-width: 721px) {
  .step-content img {
    grid-row: 1;
  }
}

@media (max-width: 720px) {
  .step-text {
    justify-items: center;
  }
}
/* Comparison flow rows */
.comparison.comparison-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 44px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(4, 34, 170, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(4, 34, 170, 0.08);
}

.comparison-card {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 22px 24px;
  border-radius: 8px;
}

.comparison-card span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 500;
  line-height: 1.42;
}

.comparison-card-before {
  background: linear-gradient(180deg, rgba(255, 241, 216, 0.62), rgba(255, 255, 255, 0.9));
  color: #1f2853;
}

.comparison-card-before span {
  color: rgba(94, 103, 140, 0.72);
}

.comparison-card-after {
  border: 1px solid rgba(4, 34, 170, 0.12);
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.95), rgba(255, 255, 255, 0.96));
}

.comparison-arrow {
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--accent-deep);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(255, 177, 51, 0.25);
}

@media (max-width: 720px) {
  .comparison.comparison-flow {
    margin-top: 32px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .comparison-card {
    min-height: auto;
    padding: 18px;
    text-align: center;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }
}
/* Hero chip icons */
.hero-chip {
  gap: 6px;
  padding-left: 11px;
}

.hero-chip::before {
  display: none;
}

.hero-visual .hero-chip > .hero-chip-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .hero-visual .hero-chip > .hero-chip-icon {
    width: 15px;
    height: 15px;
  }
}
/* Scan icon visual compensation */
.hero-visual .hero-chip-scan > .hero-chip-icon {
  width: 19px;
  height: 19px;
  max-width: 19px;
  max-height: 19px;
}
/* Scan icon vertical alignment */
.hero-visual .hero-chip-scan > .hero-chip-icon {
  transform: translateY(1.5px);
}
/* Metrics icon size safeguard */
.metrics-grid .metrics-icon {
  width: min(152px, 70%);
  height: 152px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
  object-fit: contain;
}
/* Comparison hybrid active */
.comparison.comparison-flow {
  gap: 10px;
  margin-top: 38px;
}

.comparison-row {
  grid-template-columns: minmax(0, 0.9fr) 38px minmax(0, 1.05fr);
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.comparison-card {
  min-height: 96px;
  padding: 22px 24px;
  border-radius: 8px;
}

.comparison-card-before {
  border: 1px solid rgba(4, 34, 170, 0.06);
  background: rgba(255, 255, 255, 0.58);
  color: #1f2853;
}

.comparison-card-before span {
  color: rgba(94, 103, 140, 0.72);
}

.comparison-card-before p {
  color: #1f2853;
  font-weight: 400;
}

.comparison-card-after {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(4, 34, 170, 0.16);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 177, 51, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(238, 242, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 16px 42px rgba(4, 34, 170, 0.08);
}

.comparison-card-after::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  height: auto;
  background: var(--amber);
}

.comparison-card-after span {
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), #6378ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.comparison-card-after p {
  color: var(--text);
  font-weight: 700;
}

.comparison-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 177, 51, 0.35);
  background: rgba(255, 177, 51, 0.14);
  color: var(--amber-deep);
  font-size: 0.98rem;
  box-shadow: none;
}

@media (max-width: 720px) {
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .comparison-card {
    min-height: auto;
    padding: 18px;
  }

  .comparison-card-after::before {
    width: 100%;
    height: 4px;
    inset: 0 0 auto;
  }
}

.trust-highlight {
  color: #1f2853;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 0.18em;
  text-underline-offset: 0.16em;
  text-decoration-skip-ink: none;
}
/* Pilot lead form */
.cta-final .pilot-lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  align-items: start;
  gap: 38px;
  padding: 46px;
  text-align: left;
}

.pilot-lead-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.pilot-lead-copy p:not(.eyebrow) {
  max-width: 42ch;
}

.pilot-lead-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-lead-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.42;
}

.pilot-lead-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 177, 51, 0.16);
}

.pilot-lead-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(4, 34, 170, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(4, 34, 170, 0.1);
}

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

.pilot-field {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

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

.pilot-field input,
.pilot-field select,
.pilot-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(4, 34, 170, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.pilot-field textarea {
  min-height: 106px;
  resize: vertical;
}

.pilot-field input:focus,
.pilot-field select:focus,
.pilot-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(4, 34, 170, 0.1);
}

.pilot-field textarea::placeholder {
  color: rgba(31, 40, 83, 0.52);
}

.pilot-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.pilot-consent input {
  width: 17px;
  height: 17px;
  margin-top: 0.12em;
  accent-color: var(--accent);
}

.pilot-recaptcha {
  margin: 4px 0 8px;
}

.pilot-form-recaptcha-error {
  margin: 0 0 8px;
  font-size: 0.86rem;
  color: var(--error, #c0392b);
}

.pilot-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.pilot-form-note,
.pilot-form-success {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pilot-form-note {
  max-width: 30ch;
  color: var(--muted);
}

.pilot-form-success {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(230, 235, 255, 0.78);
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 980px) {
  .cta-final .pilot-lead-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pilot-lead-copy p:not(.eyebrow),
  .pilot-lead-list {
    margin-right: auto;
    margin-left: auto;
  }

  .pilot-lead-list {
    max-width: 520px;
    text-align: left;
  }

  .pilot-lead-form {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .cta-final .pilot-lead-panel {
    padding: 26px 18px;
  }

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

  .pilot-lead-form {
    padding: 18px;
  }

  .pilot-form-actions .button,
  .pilot-form-note {
    width: 100%;
  }
}
/* Suite tabs hug their labels */
.product-suite > .suite-tabs {
  width: fit-content;
  max-width: var(--content-width);
  margin-top: 34px;
}

.suite-tab {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .product-suite > .suite-tabs {
    width: fit-content;
    max-width: calc(100vw - 28px);
    margin-top: 28px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 999px;
  }

  .suite-tab {
    flex: 0 0 auto;
  }
}
/* Trust strip refinements */
.trust-strip {
  background: #fff;
}

.trust-items span::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 12px;
  margin-right: 10px;
  margin-top: -3px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
}
/* Trust items without pills */
.trust-items span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-weight: 400;
  box-shadow: none;
}
/* Pilot lead checks */
.pilot-lead-list li {
  padding-left: 28px;
}

.pilot-lead-list li::before {
  top: 0.38em;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(45deg);
}
/* Stronger comparison arrow */
.comparison-arrow {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 177, 51, 0.45);
  background: var(--amber);
  color: var(--accent-deep);
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(255, 177, 51, 0.24);
}
/* Hide trust items */
.trust-items {
  display: none;
}

/* Section heading spacing */
.section-heading {
  display: flow-root;
}

.section h2 {
  margin-bottom: 28px;
}

.section h2 + p:not(.eyebrow) {
  margin-top: 0;
}

@media (max-width: 720px) {
  .section h2 {
    margin-bottom: 22px;
  }
}
