:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #eff6ff;
  --success: #16a34a;
  --text: #111827;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --surface: #f9fafb;
  --footer-band: #dfe5ef;
  --footer-band-mid: #d1dae8;
  --footer-band-accent: #c5d0e4;
  --logo-footer-height: clamp(2rem, 3.5vw, 2.4375rem);
  --logo-header-max-h: clamp(1.5rem, 2.5vw, 1.875rem);
  --logo-wordmark-max-w: min(240px, 92vw);
  /* Signature “cut” corners — reused on cards & chrome (variant 1) */
  --radius-sig-round: 17px;
  --radius-sig-tight: 6px;
  --radius-card: var(--radius-sig-round) var(--radius-sig-tight) var(--radius-sig-round)
    var(--radius-sig-tight);
  --radius-chip: 11px 4px 11px 4px;
  --accent-ribbon: linear-gradient(
    90deg,
    transparent 4%,
    rgba(56, 189, 248, 0.45) 42%,
    rgba(37, 99, 235, 0.85) 50%,
    rgba(56, 189, 248, 0.45) 58%,
    transparent 96%
  );
  /* Same partial-text treatment as hero (background-clip) */
  --text-accent-gradient: linear-gradient(110deg, #1d4ed8 0%, #2563eb 38%, #38bdf8 100%);
  --radius-btn: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-btn: 0 4px 16px rgba(37, 99, 235, 0.32);
  --header-offset: 4.5rem;
  --surface-band: linear-gradient(
    168deg,
    var(--footer-band) 0%,
    var(--footer-band-mid) 45%,
    var(--footer-band-accent) 100%
  );
  /* Main column: same breakpoints as Tailwind `container` on /ee & /en (max 96rem @ 2xl) */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

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

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  background: #fff;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: var(--header-offset);
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem; /* align with ee/en px-4 */
}

@media (min-width: 640px) {
  .container {
    max-width: 40rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 48rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 64rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 80rem;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 96rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 767px) {
  .site-header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 2rem) 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  }

  .site-header .nav.is-open {
    display: flex;
  }

  .site-header .nav a:not(.btn) {
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .site-header .nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--accent-ribbon);
  opacity: 0.88;
  pointer-events: none;
}

/* Slightly roomier horizontal padding than body sections so the bar doesn’t feel pinched */
.site-header .container {
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.site-header .inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) 0;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  min-height: 0;
  position: relative;
}

.site-header .brand {
  grid-column: 1;
  justify-self: start;
}

.site-header .nav {
  grid-column: 2;
  justify-self: center;
}

.site-header .header-end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .site-header .inner {
    gap: clamp(1rem, 2.5vw, 1.75rem);
  }
}

@media (max-width: 767px) {
  .site-header .inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .site-header .header-end {
    grid-column: 2;
    gap: 0.5rem;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-toggle:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--primary);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand--image {
  gap: 0;
  line-height: 0;
}

.site-header .brand.brand--image {
  font-size: 0;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/*
 * Header logo: NEVER let intrinsic raster px blow up the bar (flex min-width:auto bug).
 * Capped dimensions; footer keeps the big treatment (.brand-logo--footer).
 */
.site-header .brand-logo {
  height: auto;
  width: auto;
  max-width: min(var(--logo-wordmark-max-w), 100%);
  max-height: var(--logo-header-max-h);
}

/* Footer: keep large fixed-height treatment */
.brand-logo--footer {
  height: var(--logo-footer-height);
  max-width: var(--logo-wordmark-max-w);
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a:not(.btn) {
  color: var(--text-light);
  /* align with en/ header links: Tailwind implicit text-base (~1rem) */
  font-size: 1rem;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-primary {
  background: linear-gradient(165deg, #3b82f6 0%, #2563eb 45%, #1d4ed8 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: linear-gradient(165deg, #60a5fa 0%, #3b82f6 42%, var(--primary-hover) 100%);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.38);
  }
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(239, 246, 255, 0.75);
  color: var(--text);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.1);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.header-cta-mobile {
  display: flex;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 2rem;
  }

  .header-cta-mobile {
    display: none;
  }
}

/* Header CTAs */
.site-header .btn {
  min-height: 2.75rem;
  padding: 0 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
}

.site-header .btn-primary {
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.site-header .btn-primary:hover {
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(37, 99, 235, 0.4);
  }
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(100% 60% at 90% -5%, rgba(56, 189, 248, 0.12), transparent 45%),
    radial-gradient(120% 78% at 50% -22%, rgba(37, 99, 235, 0.14), transparent 56%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 72%, #fafbfd 100%);
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(96, 165, 250, 0.55);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  text-align: center;
}

/* Partial-line blue gradient text (reuse beyond hero via .text-gradient) */
.hero h1 .accent,
.text-gradient {
  background: var(--text-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Readable on solid blue bands (cta-band lead words) */
.text-gradient-light {
  background: linear-gradient(105deg, #ffffff 15%, #e0f2fe 52%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust__item svg {
  flex-shrink: 0;
  color: #1d4ed8;
  filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.2));
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .cta-band {
    padding: 3.5rem 0;
  }

  .pilots-band {
    padding: 3rem 0;
  }
}

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

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.section-alt {
  background:
    radial-gradient(98% 50% at 100% -8%, rgba(56, 189, 248, 0.08), transparent 50%),
    radial-gradient(92% 48% at 100% -3%, rgba(37, 99, 235, 0.07), transparent 52%),
    radial-gradient(74% 44% at 0% 102%, rgba(37, 99, 235, 0.04), transparent 52%),
    var(--surface);
}

.section-head h2::after,
.problem-title::after,
.pilots-band__head h2::after,
.rollout-intro h2::after,
.book-section .section-head h2::after,
.contact-section .section-head h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  border-radius: 2px;
}

.section-head h2::after,
.problem-title::after {
  margin: 0.65rem auto 0;
  background: linear-gradient(90deg, #1d4ed8 0%, #38bdf8 55%, #93c5fd 100%);
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.25);
}

.problem-title::after {
  margin-top: 0.75rem;
}

.pilots-band__head h2::after {
  margin: 0.65rem auto 0;
  background: linear-gradient(90deg, #38bdf8 0%, #93c5fd 55%, rgba(255, 255, 255, 0.45) 100%);
  box-shadow: 0 2px 12px rgba(56, 189, 248, 0.35);
}

.book-section .section-head h2::after,
.contact-section .section-head h2::after,
.rollout-intro h2::after {
  background: linear-gradient(90deg, #1d4ed8 0%, #38bdf8 52%, #94a3b8 100%);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.18);
}

.rollout-intro h2::after {
  margin: 0.75rem 0 0;
}

.book-section .section-head h2::after,
.contact-section .section-head h2::after {
  margin: 0.65rem auto 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
}

/* Cards grid */
.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .grid-3.product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Product gallery: tighter gutters → wider columns; captions match Key features card type */
.product-gallery {
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .grid-3.product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }
}

.product-gallery .product-shot {
  aspect-ratio: auto;
  background: var(--surface);
  cursor: zoom-in;
}

.product-gallery .product-shot img {
  width: 100%;
  aspect-ratio: 5 / 4;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #eef2f7;
}

/* Modal: enlarge Product screenshots on click */
.product-lightbox {
  margin: auto;
  padding: 0;
  border: none;
  width: calc(100% - 2rem);
  max-width: min(56rem, calc(100vw - 2rem));
  background: transparent;
  color: #e5e7eb;
}

.product-lightbox:focus {
  outline: none;
}

.product-lightbox::backdrop {
  cursor: zoom-out;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
}

.product-lightbox__panel {
  position: relative;
  padding-top: 0.35rem;
  max-width: min(54rem, 94vw);
  margin-inline: auto;
}

.product-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(17, 24, 39, 0.95);
  color: #f9fafb;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.product-lightbox__close:hover {
  background: rgba(31, 41, 55, 0.98);
  color: #fff;
}

.product-lightbox__close:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.product-lightbox__img {
  display: block;
  max-width: min(100%, 52rem);
  width: auto;
  height: auto;
  max-height: min(68vh, 640px);
  margin: 0 auto;
  border-radius: var(--radius-card);
  box-shadow: none;
  background: #f9fafb;
}

/* Product screenshots */
.product-shot {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16 / 10;
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-shot figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.product-shot figcaption strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.product-gallery .product-shot figcaption {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.product-gallery .product-shot figcaption strong {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  line-height: 1.3;
  color: var(--text);
}

.product-gallery .product-shot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Pilots + CTA — shared dark band chrome */
.pilots-band,
.cta-band {
  position: relative;
  color: #fff;
  background: linear-gradient(155deg, #0f172a 0%, #1e3a8a 48%, #1d4ed8 100%);
  overflow: hidden;
}

.pilots-band::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 55% at 15% 0%, rgba(56, 189, 248, 0.22), transparent 58%),
    radial-gradient(55% 50% at 100% 100%, rgba(37, 99, 235, 0.35), transparent 55%);
  pointer-events: none;
}

.pilots-band {
  padding: 4rem 0;
}

.pilots-band__inner {
  position: relative;
  z-index: 1;
}

.pilots-band__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.pilots-band__head h2,
.cta-band h2 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

.pilots-band__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #bfdbfe;
}

.pilots-stats {
  display: grid;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pilots-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pilots-stat {
  text-align: center;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .pilots-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }
}

.pilots-stat__value {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pilots-stat:nth-child(1) .pilots-stat__value {
  color: #7dd3fc;
}

.pilots-stat:nth-child(2) .pilots-stat__value {
  color: #86efac;
}

.pilots-stat:nth-child(3) .pilots-stat__value {
  color: #fde68a;
}

.pilots-stat__label {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #dbeafe;
}

/* Team */
.team-grid {
  display: grid;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-photo {
  width: clamp(10.5rem, 22vw, 11.5rem);
  height: clamp(10.5rem, 22vw, 11.5rem);
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow), 0 0 0 1px var(--border);
}

.team-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-align: center;
}

.team-card p:not(.team-role) {
  font-size: 0.9375rem;
  margin: 0;
  text-align: left;
}

/* CTA band */
.cta-band {
  padding: 5rem 0;
  text-align: center;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band__ws-link {
  color: #fff;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.cta-band__ws-link:hover {
  color: #eff6ff;
  text-decoration-color: #fff;
}

.cta-band p {
  color: #dbeafe;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.cta-band .btn-primary:hover {
  background: #f3f4f6;
  color: var(--primary-hover);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  .cta-band .btn-primary:hover {
    transform: translateY(-2px);
  }
}

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* Demo: video + steps + thumbnails */
.demo-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .demo-split {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.78fr);
    gap: clamp(2rem, 3.5vw, 3rem);
    align-items: start;
  }
}

/* Wrapper only positions the player — no tall empty “card” under the video */
.demo-video-wrap {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  align-self: start;
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 6px 32px rgba(37, 99, 235, 0.14), 0 2px 10px rgba(0, 0, 0, 0.06);
  background: #0f172a;
  object-fit: contain;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.demo-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.demo-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-step-num--1 {
  background: var(--primary-soft);
  color: var(--primary);
}

.demo-step-num--2 {
  background: #dcfce7;
  color: var(--success);
}

.demo-step-num--3 {
  background: #ede9fe;
  color: #7c3aed;
}

.demo-step-head h3 {
  margin: 0;
  font-size: 1rem;
}

.demo-step-card p {
  margin: 0;
  padding-left: 2.75rem;
  font-size: 0.9375rem;
}

/* Feature cards — spec-style rows, no hover chrome */
.feat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.875rem;
  row-gap: 0.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.feat-icon-well {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-chip);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
}

.feat-icon-well svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feat-card h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.feat-card p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  padding-left: calc(2.5rem + 0.875rem);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
}

/* Benefit + rollout icon rings */
.ic-col {
  text-align: center;
}

.ic-ring {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ic-ring svg {
  stroke: currentColor;
}

.ic-col h3 {
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.ic-col p {
  margin: 0;
  font-size: 0.9375rem;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}

.grid-4 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Rollout: white band + intro / timeline split */
.rollout-section {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rollout-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .rollout-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .rollout-intro {
    position: sticky;
    top: 5.5rem;
  }
}

.rollout-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1.25rem;
  text-align: left;
}

.rollout-intro p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 22rem;
}

.rollout-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.25rem;
  display: grid;
  gap: 0;
}

.rollout-step {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.rollout-step:last-child {
  padding-bottom: 0;
}

.rollout-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.375rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0.08) 100%);
}

.rollout-step__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(37, 99, 235, 0.15);
  position: relative;
  z-index: 1;
}

.rollout-step:nth-child(2) .rollout-step__num {
  color: #0891b2;
  background: #cffafe;
  border-color: rgba(8, 145, 178, 0.2);
}

.rollout-step:nth-child(3) .rollout-step__num {
  color: #16a34a;
  background: #dcfce7;
  border-color: rgba(22, 163, 74, 0.2);
}

.rollout-step:nth-child(4) .rollout-step__num {
  color: #7c3aed;
  background: #ede9fe;
  border-color: rgba(124, 58, 237, 0.2);
}

.rollout-step:nth-child(5) .rollout-step__num {
  color: #ea580c;
  background: #ffedd5;
  border-color: rgba(234, 88, 12, 0.2);
}

.rollout-step__body {
  padding-top: 0.2rem;
}

.rollout-step__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  text-align: left;
}

.rollout-step__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
  max-width: none;
}

/* Book / Calendly */
.book-section {
  padding: 3.25rem 0 4.5rem;
  background: var(--surface);
}

.book-section .section-head {
  margin-bottom: 0.35rem;
}

.book-section .section-head h2 {
  margin-bottom: 0.35rem;
}

.book-section .section-head p {
  font-size: 0.9375rem;
  line-height: 1.45;
}

.calendly-embed {
  max-width: 56rem;
  margin: 0.35rem auto 0;
  line-height: 0;
  /* kill stray gap under widget (Calendly’s CSS uses inline iframes) */
  font-size: 0;
  position: relative;
  z-index: 1;
}

/* Contact — separate band below Calendly; heading matches Book a call */
.contact-section {
  padding: 3.25rem 0 4.5rem;
  background: #fff;
  border-top: 1px solid var(--border);
}

.contact-section .section-head {
  margin-bottom: 2rem;
}

.contact-section .section-head p {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.contact-form-wrap {
  max-width: 40rem;
  margin: 0 auto;
}

.contact-form {
  background: var(--surface-band);
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08), var(--shadow);
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.contact-form__grid .contact-form__field {
  margin-bottom: 0;
}

.contact-form__grid + .contact-form__grid,
.contact-form__grid + .contact-form__field,
.contact-form__field + .contact-form__grid {
  margin-top: 1rem;
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form__req {
  color: var(--primary);
}

.contact-form__opt {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8125rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form__field--captcha[hidden] {
  display: none !important;
}

.contact-form__field--captcha input {
  max-width: 8rem;
}

.contact-form__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.4;
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__actions {
  margin-top: 0.25rem;
  display: flex;
  justify-content: center;
}

.contact-form__submit {
  min-width: 11rem;
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-form__feedback {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.contact-form__feedback--error {
  color: #dc2626;
}

.contact-form__feedback--success {
  color: var(--success);
}

/* No white “card” frame — Calendly supplies its own UI chrome */

/* Fit scheduler + cookie banner without a large empty band below */
.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  display: block;
  height: 1000px !important;
  font-size: 16px; /* restore after .calendly-embed { font-size: 0 } */
}

.calendly-inline-widget iframe {
  display: block;
  width: 100% !important;
  height: 1000px !important;
}

@media (max-width: 640px) {
  .calendly-inline-widget,
  .calendly-inline-widget iframe {
    height: 1180px !important;
  }
}

/* Footer */
/* Footer — light band so blue wordmark stays legible */
.site-footer {
  position: relative;
  background: var(--surface-band);
  color: #3d4556;
  padding: 3rem 0 2rem;
  font-size: 0.9375rem;
  border-top: 1px solid var(--border);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 3px;
  background: var(--accent-ribbon);
  opacity: 0.88;
  pointer-events: none;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.site-footer .footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 22rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-link__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--primary);
}

.footer-link__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-link--plain {
  padding-left: calc(1.125rem + 0.5rem);
}

@media (max-width: 640px) {
  .footer-links {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(0, 37, 86, 0.12);
  padding-top: 2rem;
}

.footer-bottom .container {
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #4f5666;
}

/* Problem block */
.problem-title {
  text-align: center;
  max-width: min(52rem, 94vw);
  margin: 0 auto 2.25rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -0.02em;
}

.problem-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.problem-copy {
  min-width: 0;
}

@media (min-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: center;
    justify-items: center;
  }

  .problem-copy {
    max-width: min(36rem, 100%);
  }
}

/* Diagram / schema: full graphic (no tight 16:10 crop) */
#problem .product-shot {
  aspect-ratio: auto;
  max-width: min(100%, 46rem);
  margin-inline: auto;
}

#problem .product-shot img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 780px);
  object-fit: contain;
  object-position: center;
  background: var(--surface);
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.problem-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}

.problem-list li::before {
  content: "→";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
  margin-top: 0.06em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-btn);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

.feat-icon-well svg,
.ic-ring svg {
  pointer-events: none;
}
