:root {
  color-scheme: light;
  --bg: #f5f7f2;
  --bg-deep: #eaf0e7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --border-strong: rgba(124, 245, 210, 0.24);
  --ink: #10231d;
  /* Darkened (see platform-index.css PR #154): #4a5871→#4a5871 (4.48:1→5.90:1),
     #5f6f87→#4a5871 (3.24:1→4.54:1). Both previously failed WCAG AA. */
  --ink-muted: #4a5871; /* 5.90:1 on white — WCAG AA */
  --ink-soft: #4a5871;  /* 4.54:1 on white — WCAG AA (tier below --ink-muted) */
  --brand: var(--pm-accent-ink);
  --accent: var(--pm-accent-warm);
  --shadow: 0 34px 90px rgba(6, 18, 14, 0.16);
  --shadow-soft: 0 18px 44px rgba(6, 18, 14, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI Variable Text', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 245, 210, 0.16), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(245, 158, 11, 0.13), transparent 22%),
    linear-gradient(180deg, #fbfbf4 0%, var(--bg) 44%, var(--bg-deep) 100%);
  color: var(--ink);
  /* Issue #11019 (smoke-2026-05-11 mobile-320): the radial-gradient pseudo-
     halos and hero proof-frame previews can push the body wider than the
     viewport on iPhone SE / 320px viewports. `overflow-x: clip` keeps the
     document at viewport width without breaking position:sticky like
     `overflow: hidden` would. */
  overflow-x: clip;
}

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

svg {
  max-width: 100%;
}

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

.page-shell {
  min-height: 100vh;
}

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

.page-shell > .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
  background: rgba(6, 18, 14, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124, 245, 210, 0.16);
}

.nav-row,
.page-shell > .site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: url('/brand/pointmintz-mark.svg') center / contain no-repeat;
  color: transparent;
  font-size: 0;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(35, 217, 183, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.brand-copy strong {
  font-size: 1rem;
  color: var(--pm-accent-ink);
}

.site-nav,
.nav-actions,
.footer-links,
.hero-actions,
.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.site-nav a,
.nav-link,
.footer-links a {
  color: var(--ink-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  /* #11070 — "FAQ" link rendered 40x44 (height OK, width 4px short). Add
     `min-width: 44px` so short-label nav anchors meet the WCAG 2.5.5 44x44
     floor on both axes. Padding inflated horizontally so the label still
     breathes in the wider buttons. */
  min-width: 44px;
  padding: 8px 10px;
  box-sizing: border-box;
}

.site-nav a:hover,
.nav-link:hover,
.footer-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

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

.button-small {
  /* #11072 — `.button-small` was 42px tall, 2px below the WCAG 2.5.5
     44x44 floor. The platform-home "Start free trial" CTA uses
     `.button.button-primary.button-small` so this is the surface that
     was failing the tablet 768px audit. Lifted to 44px floor. */
  min-height: 44px;
  padding-inline: 18px;
}

.button-primary {
  background: linear-gradient(135deg, var(--pm-accent), #b8ffe9);
  color: var(--pm-accent-ink);
  box-shadow: 0 14px 32px rgba(124, 245, 210, 0.34);
}

.button-primary:hover {
  background: var(--pm-accent-2);
  color: #fff;
  box-shadow: 0 18px 40px rgba(26, 195, 166, 0.38);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(6, 78, 66, 0.18);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 33, 64, 0.18);
}

.hero-section {
  padding: calc(56px + env(safe-area-inset-top, 0px)) 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.mini-label,
.proof-kicker {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow {
  color: var(--pm-accent-text);
  margin-bottom: 18px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.hero-copy h1,
.section-head h2,
.final-cta-card h2 {
  margin: 0;
  font-family: var(--pm-font-display);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 700;
}

.hero-lead,
.section-head > p,
.capability-card p,
.industry-card p,
.comparison-card li,
.pricing-card p,
.faq-card p,
.site-footer p,
.proof-panel span,
.proof-foot strong {
  color: var(--ink-muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.hero-reel-caption {
  width: min(calc(100% - 40px), var(--container));
  margin: 18px auto 0;
  /* Sits on the dark .hero-section--reel gradient (#06120e). --ink-muted
     (#4a5871, "5.90:1 on white") was only 2.66:1 here = WCAG AA FAIL. Use a
     muted light derived from the section's own #f4fff9 → 12.5:1 (AAA). */
  color: rgba(244, 255, 249, 0.82);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

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

.proof-strip article,
.proof-foot article,
.industry-card,
.capability-card,
.comparison-card,
.pricing-card,
.faq-card,
.final-cta-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.proof-strip article,
.industry-card,
.capability-card,
.comparison-card,
.pricing-card,
.faq-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.proof-strip article:hover,
.industry-card:hover,
.capability-card:hover,
.comparison-card:hover,
.pricing-card:hover,
.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(17, 34, 68, 0.1);
  border-color: rgba(19, 99, 218, 0.18);
}

.proof-strip article {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
}

.proof-strip strong,
.industry-card strong,
.capability-card h3,
.comparison-card h3,
.pricing-card h3,
.faq-card h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
}

.proof-strip span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-section--reel {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 170px);
  padding: calc(42px + env(safe-area-inset-top, 0px)) 0 12px;
  background:
    linear-gradient(135deg, #06120e 0%, #0b1f19 48%, #15261d 100%);
  color: #f4fff9;
  overflow: hidden;
}

.hero-bg-reel {
  display: none;
}

.hero-section--reel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(6, 18, 14, 0.98) 0%, rgba(6, 18, 14, 0.92) 42%, rgba(6, 18, 14, 0.34) 68%, rgba(6, 18, 14, 0.76) 100%),
    linear-gradient(180deg, rgba(6, 18, 14, 0.08) 0%, rgba(6, 18, 14, 0.6) 90%);
}

.hero-section--reel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  background: linear-gradient(180deg, rgba(245, 247, 242, 0), var(--bg));
  pointer-events: none;
  z-index: -1;
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(0deg, rgba(244, 255, 249, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: 0.52;
  pointer-events: none;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(124, 245, 210, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 245, 210, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 92%);
  animation: grid-drift 16s linear infinite;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: min(510px, calc(100svh - 300px));
}

.hero-section--reel .hero-copy h1 {
  max-width: 13.5ch;
  color: #f4fff9;
  font-size: clamp(3.2rem, 6.3vw, 5.9rem);
  text-wrap: balance;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.34);
}

.hero-section--reel .hero-lead {
  color: rgba(244, 255, 249, 0.78);
  max-width: 68ch;
  font-size: clamp(1.03rem, 1.25vw, 1.22rem);
}

.hero-section--reel .eyebrow {
  color: #f0c46b;
}

.hero-section--reel .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #f4fff9;
  border-color: rgba(244, 255, 249, 0.24);
}

.hero-section--reel .button-secondary:hover {
  background: rgba(255, 255, 255, 0.17);
  color: #ffffff;
}

.proof-strip-live article {
  background: rgba(8, 25, 20, 0.72);
  border-color: rgba(124, 245, 210, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.proof-strip-live strong {
  color: #f4fff9;
}

.proof-strip-live span {
  color: rgba(244, 255, 249, 0.68);
}

.hero-command {
  position: absolute;
  inset: 0;
  min-height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-section--reel .hero-copy {
  position: relative;
  z-index: 3;
}

.hero-command .command-panel,
.hero-command .hero-frame {
  display: none;
}

.hero-frame {
  position: absolute;
  border: 1px solid rgba(124, 245, 210, 0.28);
  border-radius: 28px;
  pointer-events: none;
}

.hero-frame-one {
  inset: 12% 1% 12% 16%;
  transform: rotate(7deg);
}

.hero-frame-two {
  inset: 20% 12% 4% 0;
  transform: rotate(-5deg);
  border-color: rgba(240, 196, 107, 0.24);
}

.hero-reel-fallback--stage {
  position: absolute;
  inset: 112px 0 auto auto;
  display: grid;
  width: min(38vw, 560px);
  min-height: 300px;
  height: min(31vw, 410px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(124, 245, 210, 0.24);
  border-radius: 26px;
  background: rgba(6, 18, 14, 0.72);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  transform: rotate(-1.4deg);
  overflow: hidden;
  opacity: 1;
}

.hero-reel-fallback--stage img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  border-radius: 16px;
}

.command-panel {
  position: absolute;
  left: auto;
  right: min(31vw, 360px);
  bottom: 8%;
  display: grid;
  gap: 4px;
  width: min(270px, 58%);
  padding: 16px 18px;
  border: 1px solid rgba(124, 245, 210, 0.24);
  border-radius: 18px;
  background: rgba(6, 18, 14, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  animation: command-rise 780ms 120ms ease both;
}

.command-panel-alt {
  left: auto;
  right: 2%;
  bottom: auto;
  top: 3%;
  border-color: rgba(240, 196, 107, 0.3);
  animation-delay: 220ms;
}

.command-panel span {
  color: #f0c46b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-panel strong {
  color: #f4fff9;
  font-size: 1rem;
}

.command-panel small {
  color: rgba(244, 255, 249, 0.68);
  line-height: 1.5;
}

.hero-industry-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#industries {
  padding-top: 42px;
}

.hero-industry-rail::-webkit-scrollbar {
  display: none;
}

.hero-industry-rail span {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(124, 245, 210, 0.28);
  border-radius: 999px;
  color: #dffff5;
  background: rgba(12, 39, 32, 0.9);
  backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: 0.86rem;
  animation: rail-pop 520ms ease both;
}

.hero-industry-chip {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(124, 245, 210, 0.28);
  border-radius: 999px;
  color: #dffff5;
  background: rgba(12, 39, 32, 0.9);
  backdrop-filter: blur(12px);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  animation: rail-pop 520ms ease both;
}

.hero-industry-chip:hover,
.hero-industry-chip:focus-visible {
  color: #06120e;
  background: var(--pm-accent);
  border-color: rgba(124, 245, 210, 0.85);
  box-shadow: 0 0 0 4px rgba(124, 245, 210, 0.22);
}

.hero-industry-rail span:nth-child(2) { animation-delay: 50ms; }
.hero-industry-rail span:nth-child(3) { animation-delay: 100ms; }
.hero-industry-rail span:nth-child(4) { animation-delay: 150ms; }
.hero-industry-rail span:nth-child(5) { animation-delay: 200ms; }
.hero-industry-rail span:nth-child(6) { animation-delay: 250ms; }
.hero-industry-rail span:nth-child(7) { animation-delay: 300ms; }
.hero-industry-rail span:nth-child(8) { animation-delay: 350ms; }
.hero-industry-rail span:nth-child(9) { animation-delay: 400ms; }

.hero-industry-chip:nth-child(2) { animation-delay: 50ms; }
.hero-industry-chip:nth-child(3) { animation-delay: 100ms; }
.hero-industry-chip:nth-child(4) { animation-delay: 150ms; }
.hero-industry-chip:nth-child(5) { animation-delay: 200ms; }
.hero-industry-chip:nth-child(6) { animation-delay: 250ms; }
.hero-industry-chip:nth-child(7) { animation-delay: 300ms; }
.hero-industry-chip:nth-child(8) { animation-delay: 350ms; }
.hero-industry-chip:nth-child(9) { animation-delay: 400ms; }

.hero-reel {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(124, 245, 210, 0.52), rgba(240, 196, 107, 0.44)) border-box;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.hero-reel::before {
  content: "";
  position: absolute;
  inset: -36px -22px auto auto;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(124, 245, 210, 0.32);
  border-radius: 999px;
  animation: reel-orbit 12s linear infinite;
}

.hero-reel-video,
.hero-reel-fallback {
  width: 100%;
  min-height: 496px;
  height: clamp(420px, 43vw, 560px);
  border-radius: 22px;
  object-fit: cover;
  background: #06120e;
}

.hero-reel-video {
  display: block;
}

.hero-reel-fallback {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  overflow: hidden;
}

.hero-reel-fallback--stage {
  display: grid;
}

.hero-command .hero-reel-fallback--stage {
  position: absolute;
  inset: 126px 0 auto auto;
  width: min(34vw, 500px);
  min-height: 300px;
  height: min(30vw, 390px);
  padding: 8px;
  border-radius: 26px;
}

.hero-reel-fallback img {
  width: 100%;
  height: 100%;
  min-height: 232px;
  object-fit: cover;
  border-radius: 16px;
}

.reel-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(6, 18, 14, 0.82);
  border: 1px solid rgba(124, 245, 210, 0.24);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.reel-badge span {
  color: #f0c46b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-badge strong {
  color: #f4fff9;
  font-size: 0.95rem;
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

@keyframes reel-orbit {
  from { transform: rotate(0deg) translateX(8px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(8px) rotate(-360deg); }
}

@keyframes command-rise {
  from { opacity: 0; transform: translateY(20px) rotate(-2deg); }
  to { opacity: 1; transform: translateY(0) rotate(-2deg); }
}

@keyframes rail-pop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-proof {
  display: grid;
  gap: 16px;
}

.proof-frame {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 249, 243, 0.96) 100%);
  box-shadow: var(--shadow);
}

.proof-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(124, 245, 210, 0.22);
  color: var(--pm-accent-ink);
  font-weight: 700;
  font-size: 0.84rem;
}

.signal-chip-muted {
  background: rgba(15, 33, 64, 0.14);
  color: #0f2140 !important; /* Guard against platform-brand cascade forcing white text on this light chip */
}

.proof-workspace {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
}

.proof-sidebar,
.proof-panel,
.proof-highlight {
  border-radius: 18px;
}

.proof-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px 14px;
  background: linear-gradient(180deg, #10231d 0%, #06120e 100%);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.proof-sidebar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(9, 20, 40, 0.38);
  color: #f5f8ff;
}

.proof-sidebar span:first-child {
  color: #fff;
  font-weight: 700;
  background: rgba(9, 20, 40, 0.62);
}

.proof-main {
  display: grid;
  gap: 14px;
}

.proof-highlight {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 22px 22px 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(15, 33, 64, 0.07);
}

.proof-highlight h2 {
  margin: 6px 0 0;
  font-size: clamp(1.56rem, 3vw, 2rem);
  line-height: 1.05;
}

.proof-highlight strong {
  font-size: 2rem;
  color: var(--pm-accent-ink);
}

.mini-label,
.proof-kicker {
  color: #1f3f6b; /* Raised contrast for light-surface labels (fixes WCAG misses like "Payments" on platform-home) */
}

.proof-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.82fr));
  gap: 14px;
}

.proof-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 33, 64, 0.07);
}

.proof-panel strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.9rem;
  color: var(--ink);
}

.proof-panel-large ul,
.comparison-card ul,
.pricing-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.proof-panel-large li,
.comparison-card li,
.pricing-card li {
  position: relative;
  padding-left: 18px;
}

.proof-panel-large li::before,
.comparison-card li::before,
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.bar-cluster {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 124px;
}

.bar {
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(124, 245, 210, 0.98) 0%, rgba(124, 245, 210, 0.22) 100%);
}

.bar-a { height: 64px; }
.bar-b { height: 90px; }
.bar-c { height: 114px; }
.bar-d { height: 76px; }

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

.proof-foot article {
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.proof-foot strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
}

.section {
  padding: 76px 0;
}

.category-launch {
  position: relative;
  z-index: 3;
  padding: 38px 0 64px;
  background:
    linear-gradient(180deg, rgba(245, 247, 242, 0.96) 0%, rgba(255, 255, 255, 0.76) 100%);
}

.category-launch__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(280px, 0.86fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: start;
}

.category-launch__intro,
.category-launch__selector,
.category-launch__proof {
  min-width: 0;
}

.category-launch__intro h2 {
  margin: 0;
  font-family: var(--pm-font-display);
  font-size: clamp(1.72rem, 2.8vw, 2.58rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  color: var(--ink);
}

.category-launch__intro p:not(.eyebrow) {
  margin: 16px 0 22px;
  color: var(--ink-muted);
  line-height: 1.58;
}

.category-launch__cta {
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.category-launch__groups {
  display: grid;
  gap: 14px;
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-color: rgba(26, 195, 166, 0.55) transparent;
}

.category-launch__group {
  display: grid;
  gap: 8px;
}

.category-launch__group h3 {
  margin: 0;
  color: #29483f;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-launch__buttons {
  display: grid;
  gap: 8px;
}

.category-launch__button {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 35, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 18, 14, 0.06);
}

.category-launch__button strong,
.category-launch__button span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-launch__button strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.category-launch__button span {
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.category-launch__button:hover,
.category-launch__button:focus-visible,
.category-launch__button.is-active {
  border-color: rgba(26, 195, 166, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(124, 245, 210, 0.18), 0 18px 38px rgba(6, 18, 14, 0.1);
}

.category-launch__button.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #effbf6 100%);
}

.category-launch__proof {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 35, 29, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 249, 244, 0.94) 100%);
  box-shadow: 0 22px 48px rgba(6, 18, 14, 0.11);
}

.category-launch__label {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 245, 210, 0.2);
  color: var(--pm-accent-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-launch__proof h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--pm-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.category-launch__path {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.category-launch__path strong {
  color: #17382f;
  font-size: 0.95rem;
}

.category-launch__path ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.42;
}

.category-launch__path li {
  padding-left: 2px;
  overflow-wrap: anywhere;
}

.category-launch__providers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.category-launch__provider {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(6, 18, 14, 0.06);
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.category-launch__provider strong {
  color: var(--ink);
}

.section-soft {
  background: rgba(255, 255, 255, 0.48);
}

.section-contrast {
  background:
    radial-gradient(circle at top right, rgba(124, 245, 210, 0.22), transparent 24%),
    linear-gradient(180deg, #10231d 0%, #06120e 100%);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head > div {
  max-width: 740px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head > p {
  max-width: 440px;
  margin: 0;
}

#product .section-head {
  padding: 22px;
  border: 1px solid rgba(15, 35, 29, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(248, 252, 248, 0.94);
  box-shadow: 0 18px 42px rgba(6, 18, 14, 0.08);
}

.section-head-contrast > p {
  color: rgba(255, 255, 255, 0.74);
}

.industry-grid,
.capability-grid,
.comparison-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.industry-card,
.capability-card,
.pricing-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.industry-card strong,
.capability-card h3,
.pricing-card h3,
.faq-card h3 {
  font-size: 1.14rem;
}

.capability-card h3 {
  font-size: 1.22rem;
}

.capability-card:not(.capability-card-featured) .mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #10233f !important;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 35, 63, 0.12);
}

.capability-card:not(.capability-card-featured) {
  background: #ffffff;
  color: var(--ink);
}

.capability-card:not(.capability-card-featured) h3 {
  color: #07120f;
}

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

.capability-card-featured {
  background: linear-gradient(180deg, rgba(16, 35, 29, 0.99) 0%, rgba(6, 18, 14, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.capability-card-featured .mini-label,
.capability-card-featured p {
  color: #eaf2ff;
}

.capability-card-featured .mini-label {
  color: #f5f8ff !important;
}

.capability-card-featured h3 {
  color: #fff;
}

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

.comparison-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.comparison-muted {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-strong);
}

.comparison-muted h3,
.comparison-muted .mini-label,
.comparison-muted li {
  color: rgba(255, 255, 255, 0.9);
}

.comparison-focus {
  background: linear-gradient(180deg, #ffffff 0%, #eefbf6 100%);
  color: var(--ink);
}

.comparison-card ul {
  margin-top: 18px;
}

.comparison-card li {
  color: inherit;
  opacity: 0.92;
}

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

.pricing-card-primary {
  background: linear-gradient(180deg, rgba(124, 245, 210, 0.18) 0%, #ffffff 100%);
}

.pricing-card ul {
  margin-bottom: 22px;
}

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

.final-cta {
  padding-top: 26px;
  padding-bottom: 84px;
}

.final-cta-card {
  padding: 36px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 249, 243, 0.92) 100%);
}

.final-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.24rem);
  max-width: 14ch;
}

.site-footer {
  padding: 0 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 33, 64, 0.08);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  max-width: 520px;
}

@media (max-width: 1080px) {
  .page-shell > .site-header .site-nav {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-grid,
  .hero-stage,
  .section-head,
  .final-cta-card,
  .footer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-stage {
    min-height: min(620px, calc(100svh - 190px));
  }

  .proof-strip,
  .industry-grid,
  .capability-grid,
  .comparison-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-panels {
    grid-template-columns: 1fr;
  }

  .category-launch__inner {
    grid-template-columns: 1fr;
  }

  .category-launch__groups {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

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

  .hero-reel {
    width: 100%;
    min-height: auto;
  }

  .hero-reel-video,
  .hero-reel-fallback {
    min-height: 380px;
    height: min(70vw, 520px);
  }

  .hero-command {
    width: 100%;
    min-height: 100%;
  }

  .hero-reel-fallback--stage {
    inset: 6% 0 auto auto;
    width: min(56%, 520px);
  }
}

.page-shell > .site-header .brand-link {
  color: #f4fff9;
}

.page-shell > .site-header .brand-mark {
  color: transparent;
}

.page-shell > .site-header .site-nav a:not(.btn-cta) {
  color: #f4fff9;
}

.page-shell > .site-header .site-nav a:not(.btn-cta):hover,
.page-shell > .site-header .site-nav a:not(.btn-cta):focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--pm-radius-sm);
}

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

  .nav-row {
    min-height: 72px;
  }

  .page-shell > .site-header .header-inner {
    min-height: 72px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    overflow: hidden;
  }

  .page-shell > .site-header .brand-link {
    flex: 0 0 auto;
  }

  .page-shell > .site-header .site-nav {
    flex: 1 1 auto;
    width: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .page-shell > .site-header .site-nav::-webkit-scrollbar {
    display: none;
  }

  .page-shell > .site-header .site-nav a {
    flex: 0 0 auto;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .hero-section {
    padding-top: calc(28px + env(safe-area-inset-top, 0px));
  }

  .hero-section--reel {
    padding-top: calc(24px + env(safe-area-inset-top, 0px));
    padding-bottom: 10px;
  }

  .hero-bg-reel {
    inset: auto 12px 92px 12px;
    width: auto;
    height: 190px;
    opacity: 0.34;
    transform: none;
    border-radius: 20px;
    box-shadow: none;
  }

  .hero-stage {
    min-height: min(630px, calc(100svh - 185px));
    align-items: start;
  }

  .hero-industry-rail {
    margin-top: 10px;
  }

  .hero-section--reel .hero-copy {
    max-width: 620px;
  }

  .hero-copy h1,
  .section-head h2,
  .final-cta-card h2 {
    max-width: none;
  }

  .hero-lead,
  .section-head > p {
    max-width: none;
  }

  .proof-strip,
  .industry-grid,
  .capability-grid,
  .comparison-grid,
  .pricing-grid,
  .faq-grid,
  .proof-foot {
    grid-template-columns: 1fr;
  }

  .proof-workspace {
    grid-template-columns: 1fr;
  }

  .category-launch {
    padding: 34px 0 52px;
  }

  .category-launch__paths,
  .category-launch__providers {
    grid-template-columns: 1fr;
  }

  .hero-reel {
    border-radius: 22px;
    padding: 8px;
  }

  .hero-command {
    position: relative;
    z-index: 0;
    min-height: 210px;
    margin-top: -8px;
  }

  .hero-reel-fallback--stage {
    inset: 0 auto auto 0;
    width: 100%;
    min-height: 180px;
    height: min(46vw, 230px);
    border-radius: 20px;
    transform: rotate(-1deg);
  }

  .command-panel {
    width: min(230px, 70%);
    padding: 11px 12px;
    right: 0;
    bottom: -2px;
  }

  .command-panel-alt {
    display: none;
  }

  .hero-reel-video,
  .hero-reel-fallback {
    min-height: 280px;
    height: 72vw;
    border-radius: 16px;
  }

  .hero-reel-fallback img {
    min-height: 124px;
    border-radius: 12px;
  }

  .reel-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  /* Horizontal scroll strip on mobile — the previous 5-column grid
     collapsed each column to ~56px and made the labels visually
     overlap (landing hero proof tabs bug). */
  .proof-sidebar {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 18px;
    padding: 14px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .proof-sidebar::-webkit-scrollbar { display: none; }
  .proof-sidebar span {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 6px 10px;
  }

  .proof-highlight {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-card {
    padding: 28px 22px;
  }

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

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

/* Issue #11019 (smoke-2026-05-11 mobile-320): iPhone SE / 320px viewport —
   tighten container gutters and force-wrap any long words/URLs in the hero
   so the page renders at <=320px scrollWidth on the platform's #1 marketing
   surface. */
@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .hero-copy,
  .hero-copy h1,
  .hero-lead,
  .eyebrow,
  .proof-strip article,
  .proof-strip strong,
  .proof-strip span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.08;
  }

  .hero-section--reel {
    min-height: calc(100svh - 158px);
  }

  .hero-bg-reel {
    display: none;
  }

  .hero-stage {
    min-height: auto;
    gap: 14px;
  }
  .proof-frame {
    padding: 16px;
  }
  .proof-workspace {
    grid-template-columns: 1fr;
  }

  .category-launch__buttons {
    grid-template-columns: 1fr;
  }

  .category-launch__proof {
    padding: 18px;
  }

  .hero-reel-video,
  .hero-reel-fallback {
    min-height: 238px;
  }

  .hero-command {
    display: none;
  }

  .hero-reel-fallback--stage {
    min-height: 150px;
    height: 150px;
  }

  .command-panel {
    display: none;
  }

  .command-panel-alt {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gridlines,
  .hero-reel::before,
  .hero-reel-fallback--stage,
  .command-panel,
  .hero-industry-rail span {
    animation: none;
  }

  .hero-reel-video,
  .hero-bg-reel {
    display: none;
  }

  .hero-reel-fallback {
    display: grid;
  }
}

.hero-section--reel {
  min-height: calc(100svh - 40px);
  padding-top: 0;
  display: grid;
  grid-template-rows: minmax(96px, 10svh) minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 78% 36%, rgba(124, 245, 210, 0.18), transparent 34%),
    linear-gradient(135deg, #07120f 0%, #0b251f 46%, #132133 100%);
}

.hero-section--reel::before {
  background:
    linear-gradient(180deg, rgba(6, 18, 14, 0.08) 0%, transparent 28%, rgba(6, 18, 14, 0.34) 100%);
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 250px);
  overflow: hidden;
  pointer-events: none;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-stage::before {
  background:
    linear-gradient(90deg, rgba(6, 18, 14, 0.42), transparent 18%, transparent 82%, rgba(6, 18, 14, 0.38)),
    linear-gradient(180deg, rgba(6, 18, 14, 0.1), transparent 18%, transparent 76%, rgba(6, 18, 14, 0.46));
}

.hero-stage::after {
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 14, 0.72));
}

.hero-reel-wall {
  position: absolute;
  inset: -9% -12%;
  display: grid;
  grid-template-rows: 0.86fr 1.16fr 0.86fr;
  gap: clamp(18px, 2.1vw, 34px);
  transform: rotate(-2deg) scale(1.04);
}

.hero-reel-lane {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  width: max-content;
  will-change: transform;
}

.hero-reel-lane img {
  width: min(40vw, 620px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(244, 255, 249, 0.18);
  background: #07120f;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38);
  opacity: 0.92;
}

.hero-reel-lane--main img {
  width: min(52vw, 860px);
  opacity: 1;
  border-color: rgba(124, 245, 210, 0.32);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(124, 245, 210, 0.08);
}

.hero-reel-lane--top {
  animation: hero-reel-left 44s linear infinite;
}

.hero-reel-lane--main {
  animation: hero-reel-right 52s linear infinite;
}

.hero-reel-lane--bottom {
  animation: hero-reel-left 58s linear infinite;
}

@keyframes hero-reel-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - clamp(9px, 1vw, 17px))); }
}

@keyframes hero-reel-right {
  from { transform: translateX(calc(-50% - clamp(9px, 1vw, 17px))); }
  to { transform: translateX(0); }
}

.hero-command {
  display: none;
}

.hero-industry-rail {
  align-self: end;
  position: relative;
  z-index: 4;
  justify-content: flex-start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 20px;
  scroll-margin-top: 94px;
  margin-top: 0;
  padding-block: 14px 22px;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 14, 0.74));
}

body.has-cookie-banner .hero-industry-rail {
  padding-bottom: calc(22px + var(--pm-cb-h, 0px));
}

.hero-gridlines,
.hero-scan {
  opacity: 0.08;
}

.hero-banner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: max(96px, 10svh);
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.86), rgba(8, 31, 25, 0.7) 52%, rgba(9, 24, 35, 0.76)),
    radial-gradient(circle at 16% 50%, rgba(124, 245, 210, 0.14), transparent 34%);
  border-bottom: 1px solid rgba(124, 245, 210, 0.16);
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow: 0 16px 58px rgba(0, 0, 0, 0.22);
}

.hero-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding-block: 10px;
}

.hero-banner .eyebrow {
  margin: 0 0 5px;
  color: #f0c46b;
}

.hero-banner h1 {
  margin: 0;
  color: #f4fff9;
  font-family: var(--pm-font-display);
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-banner p {
  margin: 0;
  color: rgba(244, 255, 249, 0.82);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.45;
}

.hero-banner .hero-actions {
  margin: 0;
  justify-content: flex-end;
  white-space: nowrap;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.demo-modal[aria-hidden="false"] {
  display: block;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 14, 0.78);
  backdrop-filter: blur(8px);
}

.demo-modal__panel {
  position: relative;
  width: min(calc(100% - 32px), 960px);
  max-height: min(82svh, 760px);
  margin: 8svh auto 0;
  overflow: auto;
  border: 1px solid rgba(124, 245, 210, 0.3);
  border-radius: 22px;
  background: #f7fbf7;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42);
}

.demo-modal__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: rgba(247, 251, 247, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 33, 64, 0.08);
}

.demo-modal__head h2 {
  margin: 0;
  font-family: var(--pm-font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.demo-modal__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 33, 64, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #0f2140;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.demo-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  padding: 18px 22px 24px;
}

.demo-pick-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(15, 33, 64, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 34, 68, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.demo-pick-card:hover,
.demo-pick-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(26, 195, 166, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 245, 210, 0.2), 0 22px 52px rgba(17, 34, 68, 0.12);
}

.demo-pick-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.demo-pick-card strong {
  color: #0f2140;
}

.demo-pick-card span {
  color: #4a5871;
  font-size: 0.88rem;
}

.roi-section {
  background:
    radial-gradient(circle at 14% 24%, rgba(124, 245, 210, 0.18), transparent 30%),
    linear-gradient(135deg, #071f19 0%, #0f2f27 52%, #163c31 100%);
  color: #f5fff9;
}

.roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.roi-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--pm-font-display);
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.roi-copy p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(245, 255, 249, 0.78);
  line-height: 1.72;
}

.roi-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.roi-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 245, 210, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 255, 249, 0.86);
  font-weight: 800;
  font-size: 0.86rem;
}

.roi-calculator {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(124, 245, 210, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: #10231d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

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

.roi-form-grid label {
  display: grid;
  gap: 7px;
  color: #34433f;
  font-weight: 800;
  font-size: 0.86rem;
}

.roi-form-grid input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 33, 64, 0.16);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fbfff9;
  color: #10231d;
  font: 800 1rem/1.2 inherit;
}

.roi-form-grid input:focus {
  outline: 3px solid rgba(124, 245, 210, 0.48);
  border-color: rgba(26, 195, 166, 0.7);
}

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

.roi-results div {
  min-height: 116px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0d2f27, #071f19);
  color: #f5fff9;
}

.roi-results span {
  display: block;
  color: rgba(245, 255, 249, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.roi-results strong {
  display: block;
  margin-top: 12px;
  font-family: var(--pm-font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.roi-note {
  margin: 16px 0 18px;
  color: #4a5871;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 780px) {
  .roi-grid,
  .roi-results {
    grid-template-columns: 1fr;
  }

  .roi-copy h2 {
    max-width: 14ch;
  }

  .hero-section--reel {
    min-height: calc(100svh - 20px);
    padding-top: 0;
    grid-template-rows: minmax(108px, 15svh) minmax(0, 1fr) auto;
  }

  .hero-banner {
    min-height: 108px;
  }

  .hero-banner__inner {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-block: 8px;
  }

  .hero-banner h1 {
    font-size: clamp(1.18rem, 6vw, 1.62rem);
    max-width: 17ch;
  }

  .hero-banner p {
    font-size: 0.78rem;
    line-height: 1.25;
    max-width: 46ch;
  }

  .hero-banner .hero-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero-stage {
    min-height: calc(100svh - 230px);
  }

  .hero-reel-wall {
    inset: -5% -58%;
    gap: 14px;
    transform: rotate(-4deg) scale(1.02);
  }

  .hero-reel-lane {
    gap: 14px;
  }

  .hero-reel-lane img {
    width: 76vw;
    border-radius: 14px;
  }

  .hero-reel-lane--main img {
    width: 96vw;
  }

  .hero-industry-rail {
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 12px 18px;
  }
}

@media (max-width: 640px) {
  .roi-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-reel-caption {
    text-align: left;
  }

  .page-shell > .site-header .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .page-shell > .site-header .brand-text {
    font-size: 0.98rem;
  }

  .page-shell > .site-header .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .page-shell > .site-header .site-nav {
    gap: 6px;
  }

  .page-shell > .site-header .site-nav a {
    min-height: 38px;
    min-width: auto;
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .page-shell > .site-header .site-nav .btn-cta {
    display: none;
  }
}
