/* Source: contracts/static/contracts/css/marketing_home.css */

:root {
  color-scheme: light;

  --bg: var(--rd-color-f5f7fb);
  --panel: var(--rd-color-ffffff);
  --ink: var(--rd-color-020617);
  --muted: var(--rd-color-4b5563);
  --muter: var(--rd-color-6b7280);

  --accent: var(--rd-color-2563eb);
  --accent-soft: var(--rd-color-e0edff);
  --accent-2: var(--rd-color-0ea5e9);
  --accent-3: var(--rd-color-f59e0b);
  /* Only use on explicit Bullhorn integration references, never as a general accent. */
  --bullhorn: var(--rd-color-e8510a);

  --border: var(--rd-color-dce5f5);

  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-lift: 0 18px 40px rgba(15, 23, 42, 0.12);

  --radius-lg: 24px;
  --radius-md: 18px;
  --pill-radius: 999px;
  --header-item-height: 36px;

  --frame: var(--rd-color-141928);
  --frame-header: var(--rd-color-1a2032);
  --frame-text: rgba(255, 255, 255, 0.82);
  --frame-text-dim: rgba(255, 255, 255, 0.42);
  --frame-border: rgba(255, 255, 255, 0.07);
  --frame-active: rgba(37, 99, 235, 0.24);
  --frame-content-bg: var(--rd-color-f3f5f8);

  --ok-bg: var(--rd-color-dcfce7);
  --ok-fg: var(--rd-color-15803d);
  --warn-bg: var(--rd-color-fef9c3);
  --warn-fg: var(--rd-color-a16207);
  --info-bg: var(--rd-color-e0f2fe);
  --info-fg: var(--rd-color-0284c7);
  --rd-cookie-banner-height: 0px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--rd-color-f3f4ff) 0%, var(--rd-color-eef2ff) 40%, var(--rd-color-e5e7f5) 100%);
}

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

.layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  position: relative;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 50;
  pointer-events: none;
  background: transparent;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.45);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 80ms linear;
}

.hero,
.section,
.demo-intro {
  scroll-margin-top: 108px;
}

/* NAV
-------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 247, 252, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.topbar-center {
  justify-content: center;
}

.topbar-right {
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.topbar-left {
  justify-content: flex-start;
}

.logo,
.rd-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 19px;
  color: var(--ink);
}

.rd-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rd-brand-icon img {
  width: 40px;
  height: 40px;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.12));
}

.rd-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.rd-brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.rd-brand-tagline {
  font-size: 11px;
  color: var(--rd-color-6b7280);
  font-weight: 500;
  margin-top: 2px;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muter);
  white-space: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: var(--header-item-height);
  padding: 0 8px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  position: relative;
  transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.14);
  color: var(--ink);
}

.nav-link.current {
  color: var(--ink);
  font-weight: 600;
}

.nav-link.current[aria-current="page"] {
  box-shadow: inset 0 -2px 0 rgba(37, 99, 235, 0.6);
}

.nav-link-signin {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  height: var(--header-item-height);
  padding: 0 12px;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rd-color-0f172a);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--rd-color-ffffff);
  border-color: rgba(37, 99, 235, 0.28);
}

.nav-toggle-icon {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.nav-toggle-icon::before { top: -5px; }
.nav-toggle-icon::after { top: 5px; }

/* HIGHLIGHTS STRIP
-------------------------------------------------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.highlight-metric {
  padding: 6px 4px;
  border-left: 1px solid rgba(148, 163, 184, 0.5);
}

.highlight-metric:first-child {
  border-left: none;
}

.highlight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muter);
  margin-bottom: 6px;
}

.highlight-value {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  color: var(--ink);
}

.highlight-caption {
  font-size: 13px;
  color: var(--muted);
  max-width: 18rem;
}

.highlight-value-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-value-main {
  transition: opacity 260ms ease, transform 260ms ease;
}

.highlight-value-main.is-switching {
  opacity: 0;
  transform: translateY(4px);
}

.highlight-delta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muter);
}

.highlight-pill {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-pill--before {
  background: var(--rd-color-fee2e2);
  color: var(--rd-color-b91c1c);
}

.highlight-pill--after {
  background: var(--rd-color-dcfce7);
  color: var(--rd-color-166534);
}

.highlight-arrow {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--header-item-height);
  padding: 0 16px;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--pill-radius);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
  cursor: pointer;
}

.nav-desktop-only {
  display: inline-flex;
}

.nav-mobile-only {
  display: none;
}

.pill-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--rd-color-f9fafb);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.32);
}
.pill-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.4);
}

.pill-ghost {
  background: var(--rd-color-ffffff);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.pill-ghost:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);
}

.pill:focus-visible,
.cta:focus-visible,
.pricing-cta:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.8);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .topbar-inner {
    gap: 12px;
  }

  .nav-links {
    gap: 4px;
    font-size: 12px;
  }

  .nav-link {
    padding: 0 10px;
  }

  .topbar-right {
    gap: 8px;
  }

  .topbar-right .pill {
    padding: 0 18px;
  }
}

@media (max-width: 960px) {
  .topbar-center {
    justify-content: flex-end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    left: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(248, 249, 252, 0.98);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    display: none;
    white-space: normal;
    z-index: 60;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link,
  .nav-links .pill {
    width: 100%;
    justify-content: flex-start;
  }

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

  .nav-desktop-only {
    display: none;
  }

  .nav-mobile-only {
    display: inline-flex;
  }

  .hero-scan {
    grid-template-columns: 1fr;
  }

  .demo-intro-shell {
    grid-template-columns: 1fr;
  }

  .demo-intro-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .demo-intro-btns,
  .demo-intro-meta,
  .demo-intro-links {
    justify-content: center;
  }

  .demo-intro-note,
  .demo-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-intro-visual .hero-visual {
    margin-left: auto;
    margin-right: auto;
  }
}

/* HERO
-------------------------------------------------- */
.demo-intro {
  margin-top: 28px;
  padding: 34px 0 26px;
  text-align: center;
}

.demo-intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.demo-intro-copy {
  min-width: 0;
  text-align: left;
  max-width: 540px;
  padding-top: 14px;
}

.demo-intro-visual {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: var(--pill-radius);
  margin-bottom: 20px;
}

.demo-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.demo-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0 0 14px;
  color: var(--ink);
}

.demo-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-lede {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 22px;
  line-height: 1.5;
}

.demo-intro-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-intro-links {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

.demo-intro-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.demo-intro-tertiary:hover {
  color: var(--rd-color-1d4ed8);
}

.demo-intro-meta {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.demo-intro-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  font-size: 13px;
  font-weight: 800;
  color: var(--rd-color-111827);
  text-align: center;
  line-height: 1.3;
}

.pill-lg {
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
}

.demo-intro-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muter);
  max-width: 460px;
}

.hero {
  margin-top: 44px;
  padding: 56px 0 28px;
  display: block;
  text-align: center;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--rd-color-1d4ed8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rd-color-3b82f6);
}

.hero-title {
  margin: 18px auto 14px;
  max-width: 980px;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--rd-color-2563eb), var(--rd-color-0ea5e9), var(--rd-color-8b5cf6));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hueShift 9s ease-in-out infinite alternate;
}

@keyframes hueShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-accent {
    animation: none;
  }
  .scene[data-animate-on-scroll] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scene.visible {
    transform: none;
  }
}

.inline-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 8px 0 0;
  color: var(--muted);
}

.inline-checkbox input {
  margin: 0;
  flex: 0 0 auto;
}

.lede {
  margin: 0 auto 24px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.hero-scan {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-scan-card {
  min-width: 0;
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.hero-scan-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--rd-color-f8fafc);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
}

.hero-scan-title {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-scan-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-flow-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-flow-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rd-color-ffffff), var(--rd-color-eff6ff));
  border: 1px solid rgba(148, 163, 184, 0.26);
  font-size: 12px;
  font-weight: 700;
  color: var(--rd-color-0f172a);
  letter-spacing: -0.01em;
}

.hero-flow-arrow {
  font-size: 16px;
  font-weight: 800;
  color: var(--rd-color-60a5fa);
}

.hero-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.hero-proof-chip {
  min-width: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof-chip strong {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rd-color-0f172a);
}

.hero-proof-chip span {
  font-size: 12px;
  color: var(--muter);
}

.hero-bullets {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-bullet-dot {
  flex: 0 0 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.45);
}

.hero-bullet-content {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 2px;
}

.hero-bullet-label {
  font-weight: 700;
  color: var(--rd-color-111827);
}

.hero-bullet-copy {
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.micro-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muter);
}

.proof-bar {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--rd-color-6b7280);
  font-weight: 500;
}

.proof-logos {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rd-color-f3f4f6);
  border: 1px solid var(--rd-color-e5e7eb);
  font-size: 12px;
  font-weight: 600;
  color: var(--rd-color-4b5563);
}

.hero-visual {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  margin-left: auto;
  transform: none;
  opacity: 1;
  transition: opacity 320ms ease, transform 320ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.demo-intro-visual .hero-visual {
  margin-right: 0;
}

.hero-visual--product {
  padding: 0;
  max-width: 560px;
  overflow: hidden;
}

.hero-product-mock {
  min-height: 420px;
}

.hero-product-mock .mock-app-body {
  padding: 18px 18px 18px;
}

.hero-product-mock .mock-page-header {
  margin-bottom: 14px;
  gap: 8px;
}

.hero-product-mock .mock-page-title {
  font-size: 15px;
}

.hero-product-mock .mock-card {
  padding: 14px 16px;
}

.hero-product-mock .mock-card-header {
  margin-bottom: 12px;
}

.hero-product-mock .mock-card-title {
  font-size: 14px;
}

.hero-product-mock .mock-card-subtitle {
  font-size: 11.5px;
}

.hero-product-mock .mock-field {
  grid-template-columns: 96px 1fr;
  font-size: 12px;
  padding: 8px 0;
}

.hero-product-card {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hero-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, 0.9fr);
  gap: 12px;
}

.hero-product-main,
.hero-product-side {
  display: grid;
  gap: 12px;
}

.hero-product-card--primary {
  min-height: 214px;
}

.hero-product-card--status {
  min-height: 160px;
}

.hero-product-rail-card {
  min-height: 0;
}

.hero-product-rail-card--checks {
  align-content: start;
}

.hero-product-stage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.hero-product-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--rd-color-eef2ff);
  color: var(--rd-color-1d4ed8);
  font-size: 10.5px;
  font-weight: 700;
}

.hero-product-stage--done {
  background: var(--rd-color-dcfce7);
  color: var(--rd-color-15803d);
}

.hero-product-stage--active {
  background: var(--rd-color-dbeafe);
  color: var(--rd-color-1d4ed8);
}

.hero-product-note {
  margin-bottom: 0;
  border-left-color: rgba(37, 99, 235, 0.28);
  border-radius: 0 12px 12px 0;
  font-style: normal;
}

.hero-product-timeline {
  display: grid;
  gap: 10px;
}

.hero-product-timeline-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.hero-product-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 3px;
  background: rgba(148, 163, 184, 0.48);
}

.hero-product-timeline-dot--done {
  background: var(--rd-color-16a34a);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.hero-product-timeline-dot--active {
  background: var(--rd-color-2563eb);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.hero-product-timeline-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hero-product-timeline-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.hero-product-timeline-meta {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-product-mini-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.hero-product-mini-check + .hero-product-mini-check {
  margin-top: 8px;
}

.hero-product-mini-check--ok {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.16);
}

.hero-product-mini-check--info {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.14);
}

.hero-product-mini-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 900;
  color: var(--accent);
}

.hero-product-mini-check--ok .hero-product-mini-check-icon {
  color: var(--ok-fg);
}

.hero-product-mini-check-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hero-product-mini-check-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
}

.hero-product-mini-check-detail {
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-visual.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--rd-color-64748b);
  margin-bottom: 4px;
}

.hero-visual-header span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-visual-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rd-color-22c55e);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.hero-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-visual-row {
  border-radius: 18px;
  padding: 9px 11px;
  background: var(--rd-color-eff4ff);
  border: 1px solid var(--rd-color-dbe4ff);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.hero-visual-row-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rd-color-6b7280);
}

.hero-visual-row-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-color-111827);
}

.hero-visual-row-body {
  font-size: 12.5px;
  color: var(--rd-color-4b5563);
}

.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  font-size: 11.5px;
}

.hero-status-pill {
  padding: 5px 9px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-status-pill--primary {
  background: var(--rd-color-020617);
  color: var(--rd-color-f9fafb);
}
.hero-status-pill--info {
  background: var(--rd-color-e0edff);
  color: var(--rd-color-1d4ed8);
}
.hero-status-pill--success {
  background: var(--rd-color-dcfce7);
  color: var(--rd-color-15803d);
}

/* FLASH MESSAGES
-------------------------------------------------- */
.message-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.message-pill {
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--rd-color-ffffff);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-color-0f172a);
  line-height: 1.5;
}

.message-pill-success {
  border-color: rgba(22, 163, 74, 0.35);
  background: linear-gradient(135deg, var(--rd-color-ecfdf3), var(--rd-color-f0fdf4));
  color: var(--rd-color-166534);
}

.message-next {
  margin-top: 6px;
  font-weight: 500;
  font-size: 13px;
  color: var(--rd-color-166534);
}

.message-next-title {
  display: block;
  font-weight: 700;
  margin-bottom: 1px;
}

.invite-banner {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
}

.invite-banner strong {
  font-weight: 700;
}

.invite-banner-cta {
  white-space: nowrap;
}

/* SECTIONS
-------------------------------------------------- */
.section {
  margin-top: 110px;
}

.section--tour-primary {
  margin-top: 28px;
}

.section--proof-summary,
.section--compare-proof {
  margin-top: 72px;
}

.section--tour-primary .demo-tour {
  margin-top: 0;
  margin-bottom: 0;
}

.section--tour-primary .how-caption {
  margin: 0;
  max-width: none;
  text-align: center;
}

.spb-gap {
  margin-top: 24px;
}

.spb-gap .spb {
  margin: 0;
}

.section--after-ribbon {
  margin-top: 28px;
}

.section h2,
.section-heading {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section h2::after {
  display: none;
}

.section-lede,
.section-sub {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--muted);
  max-width: 740px;
}

/* Section scenes – give each area its own 'page' */
.scene {
  border-radius: var(--radius-lg);
  padding: 34px 28px 36px;
  background: var(--rd-color-ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  opacity: 0.9;
}

.scene--blue {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.92), var(--rd-color-ffffff) 24%);
}

.scene--lilac {
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.96), var(--rd-color-ffffff) 24%);
}

.scene--warm {
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.98), var(--rd-color-ffffff) 24%);
}

.scene--neutral {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), var(--rd-color-ffffff) 24%);
}

.scene--blue::before {
  background: linear-gradient(90deg, var(--rd-color-0ea5e9), var(--rd-color-2563eb));
}

.scene--lilac::before {
  background: linear-gradient(90deg, var(--rd-color-2563eb), var(--rd-color-ec4899));
}

.scene--warm::before {
  background: linear-gradient(90deg, var(--rd-color-f59e0b), var(--rd-color-fbbf24));
}

.scene--neutral::before {
  background: linear-gradient(90deg, var(--rd-color-94a3b8), var(--rd-color-cbd5e1));
}

/* Hidden pre-animation state only applies when JS added html.js-reveal (i.e. a
   working IntersectionObserver exists). Without it, scenes render fully visible,
   so disabled JS, a failed observer, or a full-page capture is never blank. */
.js-reveal .scene[data-animate-on-scroll] {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 420ms ease-out,
    transform 420ms ease-out;
}

.js-reveal .scene[data-animate-on-scroll].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .scene[data-animate-on-scroll] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media print {
  .scene[data-animate-on-scroll] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* PROBLEM STRIP BEFORE / AFTER */
.problem-strip {
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--rd-color-f8fbff);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.problem-intro h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.problem-intro p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
}

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

.problem-card {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: var(--rd-color-ffffff);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  font-size: 14px;
}

.problem-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.problem-label--before {
  background: var(--rd-color-fef2f2);
  color: var(--rd-color-b91c1c);
}

.problem-label--after {
  background: var(--rd-color-ecfdf3);
  color: var(--rd-color-15803d);
}

.problem-card h3 {
  margin: 8px 0 4px;
  font-size: 15px;
}

.problem-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.problem-list li::before {
  content: "•";
  font-size: 16px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.75);
}

@media (max-width: 900px) {
  .problem-strip {
    grid-template-columns: 1fr;
  }
  .problem-columns {
    grid-template-columns: 1fr;
  }
}

#impact h3 {
  font-weight: 700;
}

/* HOW IT WORKS */
.how-card {
  margin-top: 26px;
  padding: 22px 24px 20px;
  border-radius: var(--radius-lg);
  background: var(--rd-color-ffffff);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.timeline {
  position: relative;
}

.progress-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.3), rgba(37, 99, 235, 0.7));
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 520ms ease;
}

.scene.visible .progress-fill {
  width: 100%;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  padding: 26px 14px 18px;
  margin-top: 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--rd-color-374151);
  transition: box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.step:hover {
  background: var(--rd-color-f9fafb);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.step-circle {
  position: absolute;
  top: -16px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.6);
  background: var(--rd-color-eff6ff);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--rd-color-1d4ed8);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rd-color-2563eb);
  margin-bottom: 4px;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: var(--rd-color-111827);
}

.how-caption {
  margin: 0;
  padding: 11px 24px 13px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.9));
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--rd-color-334155);
}

.how-caption[data-animate-on-scroll] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms ease-out,
    transform 320ms ease-out;
}

.how-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.how-caption-line {
  display: inline-block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  vertical-align: bottom;
}

.how-caption.visible .how-caption-line {
  animation: howCaptionType 1.55s steps(46, end) 180ms both;
}

.how-caption-line::after {
  content: "";
  position: absolute;
  top: 0.08em;
  right: 0;
  width: 2px;
  height: 1.05em;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.82);
  opacity: 0;
}

.how-caption.visible .how-caption-line::after {
  opacity: 1;
  animation:
    howCaptionCaretBlink 720ms step-end 3 180ms,
    howCaptionCaretHide 0s linear 1.75s forwards;
}

.how-caption .bullhorn-text {
  color: var(--bullhorn);
}

@keyframes howCaptionType {
  from {
    max-width: 0;
  }
  to {
    max-width: 60ch;
  }
}

@keyframes howCaptionCaretBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes howCaptionCaretHide {
  to {
    opacity: 0;
  }
}

.demo-tour {
  margin-top: 26px;
}

.tour-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.tour-progress-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 0;
}

.tour-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(37, 99, 235, 0.09);
  border-radius: 999px;
  overflow: hidden;
}

.tour-progress-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 220ms ease;
}

.tour-progress-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tour-autoplay-indicator,
.tour-replay-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(248, 250, 252, 0.92);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.tour-replay-link[hidden] {
  display: none !important;
}

.tour-autoplay-indicator:hover,
.tour-replay-link:hover {
  border-color: rgba(37, 99, 235, 0.28);
  color: var(--ink);
}

.tour-autoplay-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.85);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.18);
}

.tour-autoplay-indicator.is-running .tour-autoplay-dot {
  animation: autoplayPulse 1.5s ease-in-out infinite;
}

.tour-autoplay-indicator.is-paused .tour-autoplay-dot {
  background: rgba(234, 179, 8, 0.92);
}

.tour-autoplay-indicator.is-complete .tour-autoplay-dot {
  background: rgba(34, 197, 94, 0.92);
}

.tour-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 6px;
  padding: 10px 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  scrollbar-width: none;
}

.tour-nav::-webkit-scrollbar {
  display: none;
}

.tour-nav-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muter);
  cursor: pointer;
  border: none;
  border-bottom: 2.5px solid transparent;
  border-radius: 14px 14px 0 0;
  background: rgba(248, 250, 252, 0.82);
  white-space: nowrap;
  min-width: 0;
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.tour-nav-step:hover {
  color: var(--ink);
  background: rgba(37, 99, 235, 0.04);
}

.tour-nav-step.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.tour-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: var(--muter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 120ms ease;
}

.tour-step-name {
  min-width: 0;
  text-align: center;
}

.tour-nav-step.active .tour-step-num {
  background: var(--accent);
  color: var(--rd-color-ffffff);
}

.tour-nav-step.done .tour-step-num {
  background: var(--ok-bg);
  color: var(--ok-fg);
  font-size: 10px;
}

.tour-body {
  display: grid;
  grid-template-columns: 336px 1fr;
  min-height: 544px;
}

.tour-sides-container,
.tour-viewports-container {
  min-width: 0;
}

.tour-side,
.tour-viewport {
  display: none;
}

.tour-side.active,
.tour-viewport.active {
  display: flex;
  animation: tourStepIn 240ms ease;
}

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

.tour-side {
  padding: 30px 26px 24px;
  border-right: 1px solid rgba(148, 163, 184, 0.25);
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.11), transparent 42%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.tour-side-content {
  flex: 1;
  max-width: 272px;
}

.tour-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-role-recruiter {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
}

.tour-role-system {
  background: rgba(124, 58, 237, 0.08);
  color: var(--rd-color-6d28d9);
}

.tour-role-admin {
  background: rgba(245, 158, 11, 0.12);
  color: var(--rd-color-b45309);
}

.tour-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.tour-side h3 {
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 16px;
}

.tour-side p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.62;
}

.tour-side-content > p:first-of-type {
  color: var(--ink);
  font-weight: 520;
}

.tour-side-note {
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  padding: 13px 15px;
  margin-top: 14px;
  line-height: 1.5;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.tour-nav-btns {
  display: flex;
  gap: 8px;
  padding-top: 20px;
  margin-top: auto;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 15px;
  border-radius: var(--pill-radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  background: none;
  color: var(--muted);
  transition: all 120ms ease;
  text-decoration: none;
}

.tour-btn:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink);
}

.tour-btn-hidden {
  visibility: hidden;
}

.tour-btn-next {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--rd-color-ffffff);
  margin-left: auto;
}

.tour-btn-next:hover {
  background: var(--rd-color-1d4ed8);
  border-color: var(--rd-color-1d4ed8);
  color: var(--rd-color-ffffff);
}

.tour-viewport {
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.88), rgba(241, 245, 249, 0.78));
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.mock-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}

.mock-app-chrome {
  background: var(--frame);
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  flex-shrink: 0;
}

.mock-dots {
  display: flex;
  gap: 5px;
}

.mock-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mock-dot-r {
  background: var(--rd-color-ff5f56);
}

.mock-dot-y {
  background: var(--rd-color-ffbd2e);
}

.mock-dot-g {
  background: var(--rd-color-27c93f);
}

.mock-url-bar {
  flex: 1;
  max-width: 380px;
  height: 24px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--frame-text-dim);
}

.mock-url-lock {
  opacity: 0.55;
  display: inline-flex;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.mock-url-icon {
  opacity: 0.5;
  flex: 0 0 auto;
}

.mock-app-nav {
  background: var(--frame-header);
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 4px;
  border-bottom: 1px solid var(--frame-border);
  flex-shrink: 0;
}

.mock-nav-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--frame-text);
  letter-spacing: -0.02em;
  margin-right: 12px;
  flex-shrink: 0;
}

.mock-nav-tab {
  font-size: 12px;
  color: var(--frame-text-dim);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.mock-nav-tab.active {
  background: var(--frame-active);
  color: var(--rd-color-93c5fd);
  font-weight: 600;
}

.mock-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--rd-color-ef4444);
  color: var(--rd-color-ffffff);
  font-size: 10px;
  font-weight: 800;
  padding: 0 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.mock-app-body {
  flex: 1;
  padding: 20px 22px 22px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92));
}

.mock-card {
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
}

.mock-anim-card {
  animation: cardIn 500ms both cubic-bezier(0.4, 0, 0.2, 1);
}

.mock-anim-pop {
  animation: popIn 300ms both;
}

.mock-anim-row {
  animation: slideInRow 300ms both;
}

.mock-anim-row-slow {
  animation: slideInRow 350ms both;
}

.mock-delay-100 {
  --mock-delay: 100ms;
  animation-delay: 100ms;
}

.mock-delay-200 {
  --mock-delay: 200ms;
  animation-delay: 200ms;
}

.mock-delay-240 {
  --mock-delay: 240ms;
  animation-delay: 240ms;
}

.mock-delay-250 {
  --mock-delay: 250ms;
  animation-delay: 250ms;
}

.mock-delay-260 {
  --mock-delay: 260ms;
  animation-delay: 260ms;
}

.mock-delay-300 {
  --mock-delay: 300ms;
  animation-delay: 300ms;
}

.mock-delay-310 {
  --mock-delay: 310ms;
  animation-delay: 310ms;
}

.mock-delay-350 {
  --mock-delay: 350ms;
  animation-delay: 350ms;
}

.mock-delay-360 {
  --mock-delay: 360ms;
  animation-delay: 360ms;
}

.mock-delay-380 {
  --mock-delay: 380ms;
  animation-delay: 380ms;
}

.mock-delay-400 {
  --mock-delay: 400ms;
  animation-delay: 400ms;
}

.mock-delay-410 {
  --mock-delay: 410ms;
  animation-delay: 410ms;
}

.mock-delay-460 {
  --mock-delay: 460ms;
  animation-delay: 460ms;
}

.mock-delay-500 {
  --mock-delay: 500ms;
  animation-delay: 500ms;
}

.mock-delay-520 {
  --mock-delay: 520ms;
  animation-delay: 520ms;
}

.mock-delay-540 {
  --mock-delay: 540ms;
  animation-delay: 540ms;
}

.mock-delay-600 {
  --mock-delay: 600ms;
  animation-delay: 600ms;
}

.mock-card + .mock-card {
  margin-top: 10px;
}

.mock-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muter);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mock-card-copy {
  min-width: 0;
}

.mock-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.mock-card-subtitle {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.mock-card-kpis {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mock-card-divider {
  height: 1px;
  margin: 12px 0;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.32), rgba(148, 163, 184, 0.08));
}

.mock-card-label--compact {
  margin-bottom: 8px;
}

.mock-card-label--section {
  margin-top: 12px;
  margin-bottom: 8px;
}

.mock-card-label--inline {
  margin-bottom: 0;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--pill-radius);
}

.mock-pill-blue {
  background: var(--accent-soft);
  color: var(--accent);
}

.mock-pill-green {
  background: var(--ok-bg);
  color: var(--ok-fg);
}

.mock-pill-warn {
  background: var(--warn-bg);
  color: var(--warn-fg);
}

.mock-pill-info {
  background: var(--info-bg);
  color: var(--info-fg);
}

.mock-pill-gap-sm {
  margin-left: 8px;
}

.mock-pill-gap-xs {
  margin-left: 4px;
}

.mock-page-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.mock-back-link {
  font-size: 12px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 3px;
}

.mock-page-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mock-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 14px;
}

.mock-field {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 9px 0;
}

.mock-field + .mock-field {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.mock-field-key {
  color: var(--muter);
  font-size: 12px;
}

.mock-field-val {
  font-weight: 500;
  color: var(--ink);
}

.mock-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 38px;
  border-radius: 11px;
  background: var(--accent);
  color: var(--rd-color-ffffff);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.mock-cta--approve {
  flex: 1;
  height: 32px;
  margin-top: 0;
  font-size: 12px;
  background: var(--ok-fg);
}

.mock-secondary-btn {
  flex: 1;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.mock-select-wrap {
  margin-bottom: 12px;
}

.mock-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  background: var(--panel);
}

.mock-select-caret {
  color: var(--muter);
  font-size: 10px;
}

.mock-map-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.mock-map-row {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 28px;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.mock-token {
  font-family: "SF Mono", "Fira Mono", monospace;
  font-size: 11px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-map-arrow {
  text-align: center;
  color: var(--muter);
  font-size: 10px;
}

.mock-map-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-map-val--warn {
  color: var(--warn-fg);
}

.mock-status-icon {
  min-width: 22px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding: 0 5px;
}

.mock-si-ok {
  background: var(--ok-bg);
  color: var(--ok-fg);
}

.mock-si-warn {
  background: var(--warn-bg);
  color: var(--warn-fg);
}

.mock-ai-summary {
  margin-bottom: 12px;
}

.mock-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mock-panel-heading {
  min-width: 0;
}

.mock-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mock-panel-subtitle {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muter);
}

.mock-panel-kpis {
  display: flex;
  gap: 6px;
}

.mock-pill-compact {
  font-size: 10px;
}

.mock-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.mock-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 12px;
}

.mock-check-item-warn {
  background: rgba(251, 191, 36, 0.07);
  border-color: rgba(251, 191, 36, 0.28);
}

.mock-check-item-ok {
  background: rgba(22, 163, 74, 0.05);
  border-color: rgba(22, 163, 74, 0.15);
}

.mock-inbox-row {
  padding: 14px 16px;
  transition: box-shadow 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.mock-inbox-new {
  border-color: rgba(37, 99, 235, 0.25) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.07), var(--shadow-soft) !important;
}

.mock-inbox-row--muted {
  opacity: 0.68;
}

.mock-inbox-row--muted-light {
  opacity: 0.46;
}

.mock-inbox-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mock-inbox-copy {
  flex: 1;
  min-width: 0;
}

.mock-inbox-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.mock-inbox-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.mock-inbox-meta {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.mock-inbox-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 5px;
}

.mock-inbox-dot-new {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.mock-inbox-checks {
  display: grid;
  gap: 9px;
}

.mock-inbox-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.mock-inbox-check--warn {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.26);
}

.mock-inbox-check--ok {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.16);
}

.mock-inbox-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.86);
}

.mock-inbox-check--warn .mock-inbox-check-icon {
  color: var(--warn-fg);
}

.mock-inbox-check--ok .mock-inbox-check-icon {
  color: var(--ok-fg);
}

.mock-inbox-check-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.mock-inbox-check-title {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
}

.mock-inbox-check-detail {
  display: block;
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--muted);
}

.mock-action-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mock-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-list-row-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.mock-list-row-time {
  margin-left: auto;
  font-size: 11px;
  color: var(--muter);
}

.mock-contract-row {
  transition: box-shadow 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.mock-contract-row--muted {
  opacity: 0.72;
}

.mock-contract-row--muted-light {
  opacity: 0.48;
}

.mock-contract-signed {
  border-color: rgba(22, 163, 74, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.07), var(--shadow-soft) !important;
}

.mock-contract-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-contract-copy {
  flex: 1;
  min-width: 0;
}

.mock-contract-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

.mock-contract-title--small {
  font-size: 13px;
  font-weight: 600;
}

.mock-contract-meta {
  font-size: 12px;
  color: var(--muter);
}

.mock-contract-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muter);
}

.mock-contract-flow {
  color: var(--muter);
}

.mock-contract-metric {
  color: var(--ok-fg);
  font-weight: 700;
}

.mock-contract-link {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.mock-contract-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-csd-signed {
  background: var(--rd-color-16a34a);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.mock-csd-review {
  background: var(--info-fg);
}

.mock-csd-draft {
  background: var(--border);
}

.mock-check-icon {
  min-width: 22px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 0 5px;
}

.mock-ci-warn {
  background: var(--warn-bg);
  color: var(--warn-fg);
}

.mock-ci-ok {
  background: var(--ok-bg);
  color: var(--ok-fg);
}

.mock-check-title {
  font-weight: 700;
  color: var(--ink);
  display: block;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRow {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes autoplayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
}

@keyframes mockCtaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18); }
  50% { transform: scale(1.02); box-shadow: 0 16px 32px rgba(15, 23, 42, 0.24); }
}

.tour-viewport:not(.active) *,
.tour-side:not(.active) * {
  animation: none !important;
}

.mock-check-desc {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  margin-top: 1px;
  display: block;
}

.mock-timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  position: relative;
}

.mock-tl-step {
  display: flex;
  gap: 12px;
  position: relative;
}

.mock-tl-step:not(:last-child) > .mock-tl-dot::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 19px;
  width: 2px;
  height: calc(100% + 2px);
  background: var(--border);
}

.mock-tl-dot {
  min-width: 22px;
  height: 18px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 2px;
  position: relative;
  z-index: 1;
  padding: 0 5px;
}

.mock-tld-done {
  background: var(--ok-bg);
  color: var(--ok-fg);
}

.mock-tld-active {
  background: var(--info-bg);
  color: var(--info-fg);
  border: 1px solid var(--rd-color-0284c7);
}

.mock-tl-content {
  padding-bottom: 14px;
  flex: 1;
}

.mock-tl-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muter);
  line-height: 1.2;
}

.mock-tl-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1px;
}

.mock-tl-meta {
  font-size: 11px;
  color: var(--muter);
}

.mock-comment {
  background: rgba(37, 99, 235, 0.05);
  border-left: 3px solid var(--accent-soft);
  border-radius: 0 8px 8px 0;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
}

.mock-comment-author {
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
}

.mock-sig-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  position: relative;
}

.mock-sig-step {
  display: flex;
  gap: 12px;
  position: relative;
}

.mock-sig-step:not(:last-child) > .mock-sig-dot::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 19px;
  width: 2px;
  height: calc(100% + 2px);
  background: linear-gradient(180deg, var(--rd-color-16a34a) 0%, rgba(22, 163, 74, 0.2) 100%);
}

.mock-sig-dot {
  min-width: 22px;
  height: 18px;
  border-radius: 999px;
  background: var(--ok-bg);
  color: var(--ok-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
  padding: 0 5px;
}

.mock-sig-content {
  padding-bottom: 12px;
  flex: 1;
}

.mock-sig-event {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mock-sig-time {
  font-size: 11px;
  color: var(--muter);
}

.mock-sig-actor {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.mock-signed-banner {
  background: var(--ok-bg);
  border: 1px solid var(--rd-color-bbf7d0);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ok-fg);
}

.mock-signed-icon {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rd-color-16a34a);
  color: var(--rd-color-ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

/* ---- COMPACT PRICING / TRUST ---- */
.compact-proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.compact-proof-head .section-lede {
  margin-bottom: 0;
  max-width: 620px;
}

.compact-proof-cta {
  flex-shrink: 0;
}

.compact-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compact-proof-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.compact-proof-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.compact-proof-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.chip,
.feature-chip,
.security-chip {
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 11px;
}

.chip--primary,
.feature-chip {
  background: var(--rd-color-eff6ff);
  color: var(--rd-color-1d4ed8);
}

.chip--alt,
.feature-chip--alt {
  background: var(--rd-color-fef3c7);
  color: var(--rd-color-92400e);
}

.chip--success,
.feature-chip--success {
  background: var(--rd-color-dcfce7);
  color: var(--rd-color-166534);
}

.chip--muted,
.feature-chip--muted {
  background: var(--rd-color-e5e7eb);
  color: var(--rd-color-374151);
}

/* IR35 / approvals section */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: flex-start;
}

.reason-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.reason-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 600;
}

.reason-list li::before {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--rd-color-0ea5e9);
}

.ir35-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--rd-color-ffffff), var(--rd-color-f3f6ff));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.pill-mini {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--rd-color-1d4ed8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.ir35-title {
  margin: 10px 0 4px;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gauge {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
}

.gauge-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 6px;
}

.gauge-segment {
  height: 9px;
  border-radius: 999px;
  background: var(--rd-color-e5e7eb);
  overflow: hidden;
  position: relative;
}

.gauge-segment:last-child {
  background: linear-gradient(90deg, var(--rd-color-dbeafe), var(--rd-color-bfdbfe));
}

.gauge-segment span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  opacity: 0.16;
}

.gauge-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 11px;
  font-weight: 600;
  color: var(--muter);
}

.gauge-indicator {
  position: absolute;
  top: 6px;
  left: 5%;
  width: 30%;
  height: 18px;
  border-radius: 999px;
  background: var(--rd-color-0ea5e9);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.35);
  transform: translateX(0);
  transition: transform 600ms ease;
}

.scene--lilac.visible .gauge-indicator {
  transform: translateX(190%);
}

/* TEAM */
.persona-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.persona-card {
  position: relative;
  padding: 16px 16px 26px;
  border-radius: 20px;
  background: var(--rd-color-ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.persona-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  background: var(--rd-color-f9fafb);
}

.persona-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--role-accent, var(--rd-color-2563eb));
  opacity: 0.9;
}

.role-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--rd-color-eef2ff);
  border: 1px solid var(--rd-color-e0e7ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 0 0 1px rgba(224, 231, 255, 0.7);
}

.role-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rd-color-1d4ed8);
  stroke-width: 1.6;
  fill: none;
}

/* PRICING v2 */
.pricing-grid--v2 {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card--v2 {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pricing-card--v2:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.25);
}

/* Featured card */
.pricing-card--featured {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
  overflow: hidden;
}

/* Animated gradient border on featured */
.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1.5px;
  background: conic-gradient(from var(--pc-angle, 0deg), var(--rd-color-2563eb), var(--rd-color-3b82f6), var(--rd-color-60a5fa), var(--rd-color-22d3ee), var(--rd-color-3b82f6), var(--rd-color-2563eb));
  -webkit-mask: linear-gradient(var(--rd-color-ffffff) 0 0) content-box, linear-gradient(var(--rd-color-ffffff) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  animation: pcGlow 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@property --pc-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes pcGlow {
  to { --pc-angle: 360deg; }
}

/* Subtle inner glow on featured */
.pricing-card--featured::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.18);
  border-color: transparent;
}

/* Ribbon */
.pc-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  padding: 4px 40px;
  background: linear-gradient(90deg, var(--rd-color-2563eb), var(--rd-color-3b82f6));
  color: var(--rd-color-ffffff);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  z-index: 2;
}

/* Top section */
.pc-top { margin-bottom: 20px; position: relative; z-index: 2; }

.pc-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--rd-color-94a3b8);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.pc-badge--glow {
  background: rgba(37, 99, 235, 0.15);
  color: var(--rd-color-93c5fd);
}

.pc-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--rd-color-f8fafc);
  letter-spacing: -0.02em;
}

.pc-subtitle {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.65);
}

/* Price block */
.pc-price-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.pc-currency {
  font-size: 28px;
  font-weight: 800;
  color: var(--rd-color-f8fafc);
  line-height: 1;
  align-self: flex-start;
  margin-top: 6px;
}

.pc-amount {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--rd-color-f8fafc);
}

.pricing-card--featured .pc-amount {
  background: linear-gradient(135deg, var(--rd-color-ffffff) 30%, var(--rd-color-93c5fd) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-per {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  color: var(--rd-color-64748b);
  line-height: 1.3;
  margin-left: 6px;
}

/* Savings badge */
.pc-savings {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--rd-color-4ade80);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* Min users */
.pc-min {
  font-size: 12px;
  color: var(--rd-color-64748b);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  position: relative;
  z-index: 2;
}

/* Feature list */
.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.82);
}

.pc-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rd-color-22c55e);
}

.pc-check--glow {
  color: var(--rd-color-22c55e);
  filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.3));
}

/* CTA */
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 13px 0;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
  color: var(--rd-color-f1f5f9);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 200ms ease;
  position: relative;
  z-index: 2;
}

.pc-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.2);
}

.pc-cta--primary {
  border: none;
  background: linear-gradient(135deg, var(--rd-color-2563eb), var(--rd-color-3b82f6));
  color: var(--rd-color-ffffff);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}

.pc-cta--primary:hover {
  background: linear-gradient(135deg, var(--rd-color-1d4ed8), var(--rd-color-2563eb));
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.4);
}

/* Footer note */
.pc-note {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--rd-color-64748b);
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Enterprise strip */
.pc-enterprise {
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pc-enterprise-left { min-width: 0; }

.pc-enterprise-badge {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rd-color-93c5fd);
}

.pc-enterprise-copy {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.7);
}

.pc-enterprise-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--rd-color-0f172a);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.26);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.pc-enterprise-cta:hover {
  transform: translateY(-1px);
  background: var(--rd-color-ffffff);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
}

/* Pricing responsive */
@media (max-width: 700px) {
  .pricing-grid--v2 {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pc-ribbon {
    top: 12px;
    right: -36px;
    font-size: 9px;
  }

  .pc-amount { font-size: 52px; }
  .pc-currency { font-size: 22px; margin-top: 4px; }

  .pc-enterprise {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured::before { animation: none; opacity: 0.4; }
}

/* Pricing section header */
.pc-section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 32px;
}

.pc-section-header h2 {
  margin: 0 0 10px;
  color: var(--rd-color-f8fafc);
}

.pc-section-lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.7);
}

.pricing-support {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.pricing-support-head h3 {
  margin: 0;
}

.pricing-support-copy {
  margin: 8px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
}

.pricing-support .security-grid {
  margin-top: 12px;
}

/* =============================================
   PRODUCT SHOWCASE — tabbed feature carousel
   ============================================= */

.scene--mesh {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(96, 165, 250, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.10), transparent 50%),
    linear-gradient(180deg, var(--rd-color-f0f4ff) 0%, var(--rd-color-ffffff) 50%, var(--rd-color-f8fafc) 100%);
}

.scene--mesh::before {
  background: linear-gradient(90deg, var(--rd-color-3b82f6), var(--rd-color-60a5fa));
}

/* Floating orbs in bento background */
.bento-scene { position: relative; overflow: hidden; }

.bento-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.bento-orb--1 {
  width: 260px;
  height: 260px;
  background: var(--rd-color-3b82f6);
  top: -40px;
  right: 10%;
  animation: bentoFloat1 8s ease-in-out infinite;
}

.bento-orb--2 {
  width: 200px;
  height: 200px;
  background: var(--rd-color-22d3ee);
  bottom: 5%;
  left: 5%;
  animation: bentoFloat2 10s ease-in-out infinite;
}

.bento-orb--3 {
  width: 160px;
  height: 160px;
  background: var(--rd-color-60a5fa);
  top: 40%;
  left: 50%;
  animation: bentoFloat3 12s ease-in-out infinite;
}

@keyframes bentoFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}
@keyframes bentoFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -25px); }
}
@keyframes bentoFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, -20px); }
}

/* =============================================
   BENTO GRID — product showcase
   ============================================= */

.bento-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.bento-kicker {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--rd-color-2563eb);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bento-header h2 { margin: 0; }

/* Bento grid layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.bento-cell {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

/* Animated gradient border glow on hover */
.bento-cell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1.5px;
  background: conic-gradient(from var(--bento-angle, 0deg), var(--rd-color-2563eb), var(--rd-color-3b82f6), var(--rd-color-60a5fa), var(--rd-color-22d3ee), var(--rd-color-3b82f6), var(--rd-color-2563eb));
  -webkit-mask: linear-gradient(var(--rd-color-ffffff) 0 0) content-box, linear-gradient(var(--rd-color-ffffff) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 1;
  pointer-events: none;
}

.bento-cell:hover::before {
  opacity: 1;
  animation: bentoGlow 3s linear infinite;
}

@keyframes bentoGlow {
  to { --bento-angle: 360deg; }
}

@property --bento-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.1), 0 8px 20px rgba(15, 23, 42, 0.06);
  border-color: transparent;
}

.bento-cell-inner { padding: 22px 22px 20px; }

/* Grid placement */
.bento-cell--wide  { grid-column: span 2; }
.bento-cell--tall  { grid-row: span 2; }
.bento-cell--stat  { grid-column: span 1; }

/* Labels */
.bento-label {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--rd-color-2563eb);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bento-cell h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Cell entrance animation */
.bento-anim {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.bento-anim.bento-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---- PIPELINE (template engine) ---- */
.bento-pipeline {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
}

.bento-pipe-step {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rd-color-94a3b8);
  transition: all 350ms ease, transform 300ms ease;
}

.bento-pipe-step.bento-pipe-active {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--rd-color-1d4ed8);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
  transform: scale(1.02);
}

.bento-pipe-icon { display: flex; opacity: 0.5; transition: opacity 300ms ease; }
.bento-pipe-active .bento-pipe-icon { opacity: 1; }
.bento-pipe-icon--go { color: var(--rd-color-16a34a); }
.bento-pipe-active .bento-pipe-icon--go { opacity: 1; }

.bento-pipe-arrow {
  color: var(--rd-color-cbd5e1);
  font-size: 14px;
  flex-shrink: 0;
  transition: color 350ms ease;
}

.bento-pipe-arrow.bento-arrow-lit {
  color: var(--rd-color-3b82f6);
}

/* ---- CHECKS (verification) ---- */
.bento-checks { display: grid; gap: 6px; }

.bento-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--rd-color-64748b);
  font-weight: 500;
  transition: background 200ms ease;
}

.bento-check.bento-check-done {
  color: var(--rd-color-0f172a);
}

.bento-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.15);
  flex-shrink: 0;
  transition: all 300ms ease;
  position: relative;
}

.bento-check-done .bento-check-dot {
  background: var(--rd-color-22c55e);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.bento-check-done .bento-check-dot::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rd-color-ffffff);
  font-size: 10px;
  font-weight: 800;
}

.bento-check-dot--warn { background: rgba(245, 158, 11, 0.2); }

.bento-check-done .bento-check-dot--warn {
  background: var(--rd-color-f59e0b);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.bento-check-done .bento-check-dot--warn::after {
  content: "!";
}

.bento-check-result {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  opacity: 0;
  transition: opacity 400ms ease;
}

.bento-check-result.bento-result-visible { opacity: 1; }

.bento-check-result-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--rd-color-16a34a);
  letter-spacing: -0.03em;
}

.bento-check-result-label {
  font-size: 12px;
  color: var(--rd-color-64748b);
}

/* ---- ROUTING (approval) ---- */
.bento-route { display: grid; gap: 2px; }

.bento-route-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 6px 2px;
  font-size: 13px;
}

.bento-route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  justify-self: center;
}

.bento-route-done .bento-route-dot { background: var(--rd-color-22c55e); }
.bento-route-waiting .bento-route-dot { background: var(--rd-color-f59e0b); animation: bentoPulse 1.5s ease-in-out infinite; }
.bento-route-pending .bento-route-dot { background: var(--rd-color-cbd5e1); }

@keyframes bentoPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.12); }
  50% { box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.06); }
}

.bento-route-name { font-weight: 600; color: var(--rd-color-0f172a); }
.bento-route-role { font-size: 11.5px; color: var(--rd-color-94a3b8); text-align: right; }

.bento-route-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--rd-color-94a3b8);
  font-style: italic;
}

/* Approval success burst */
.bento-route-row.bento-route-success {
  animation: bentoApproveFlash 600ms ease;
}

@keyframes bentoApproveFlash {
  0%   { background: transparent; }
  30%  { background: rgba(34, 197, 94, 0.12); }
  100% { background: transparent; }
}

.bento-route-badge {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--rd-color-22c55e);
  color: var(--rd-color-ffffff);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 300ms ease, transform 300ms ease;
}

.bento-route-success .bento-route-badge {
  opacity: 1;
  transform: scale(1);
}

/* Live feed new-item drop-in */
.bento-feed-new {
  animation: bentoFeedDrop 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bentoFeedDrop {
  0%   { opacity: 0; transform: translateY(-100%) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.bento-feed-item.bento-feed-highlight {
  background: rgba(37, 99, 235, 0.06);
}

/* ---- LIVE FEED ---- */
.bento-feed { display: grid; gap: 4px; }

.bento-feed-item {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12.5px;
  transition: background 200ms ease;
}

.bento-feed-item:first-child { background: rgba(34, 197, 94, 0.04); }

.bento-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bento-feed-dot--green  { background: var(--rd-color-22c55e); }
.bento-feed-dot--blue   { background: var(--rd-color-3b82f6); }
.bento-feed-dot--amber  { background: var(--rd-color-f59e0b); }

.bento-feed-text { color: var(--rd-color-0f172a); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bento-feed-time { color: var(--rd-color-94a3b8); font-size: 11px; }

.bento-feed-anim {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.bento-feed-anim.bento-feed-in {
  opacity: 1;
  transform: translateX(0);
}

/* ---- STAT CELLS ---- */
.bento-stat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  position: relative;
}

.bento-stat-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-stat-ring svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.bento-stat-ring .bento-ring-track {
  fill: none;
  stroke: rgba(148, 163, 184, 0.1);
  stroke-width: 4;
}

.bento-stat-ring .bento-ring-fill {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-stat-ring .bento-ring-fill--indigo { stroke: var(--rd-color-2563eb); }
.bento-stat-ring .bento-ring-fill--green  { stroke: var(--rd-color-22c55e); }

.bento-stat-ring.bento-ring-animated .bento-ring-fill {
  stroke-dashoffset: var(--ring-target, 0);
}

.bento-stat-ring .bento-stat-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-stat-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rd-color-2563eb);
  line-height: 1;
  white-space: nowrap;
}

.bento-cell--stat-green .bento-stat-num { color: var(--rd-color-16a34a); }

.bento-stat-label {
  font-size: 12px;
  color: var(--rd-color-64748b);
  margin-top: 8px;
  font-weight: 500;
}

/* Subtle radial glow behind stat cells */
.bento-cell--stat {
  background: radial-gradient(ellipse at 50% 40%, rgba(37, 99, 235, 0.06) 0%, rgba(255, 255, 255, 0.75) 70%);
}
.bento-cell--stat-green {
  background: radial-gradient(ellipse at 50% 40%, rgba(34, 197, 94, 0.06) 0%, rgba(255, 255, 255, 0.75) 70%);
}

/* ---- IT STRIP ---- */
.bento-it-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 12.5px;
  color: var(--rd-color-64748b);
  flex-wrap: wrap;
}

.bento-it-label {
  font-weight: 800;
  color: var(--rd-color-2563eb);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.bento-it-item strong { color: var(--rd-color-0f172a); }

.bento-it-sep {
  width: 1px;
  height: 14px;
  background: rgba(148, 163, 184, 0.22);
}

.bento-it-links {
  display: inline-flex;
  gap: 5px;
}

.bento-it-links a {
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--rd-color-2563eb);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease;
}

.bento-it-links a:hover { background: rgba(37, 99, 235, 0.12); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-cell--wide { grid-column: span 2; }
  .bento-cell--tall { grid-row: span 1; }

  .bento-pipeline { flex-wrap: wrap; }

  .bento-it-strip {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .bento-it-sep { display: none; }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cell--wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bento-anim { opacity: 1; transform: none; transition: none; }
  .bento-feed-anim { opacity: 1; transform: none; transition: none; }
  .bento-route-waiting .bento-route-dot { animation: none; }
  .bento-cell::before { display: none; }
  .bento-orb { display: none; }
  .bento-ring-fill { transition: none; }
}

.pricing-faqs {
  margin-top: 28px;
}

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

.faq-group {
  min-width: 0;
}

.faq-group-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.faq-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 16px;
  background: var(--rd-color-ffffff);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  padding: 8px 12px;
  font-size: 14px;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  background: var(--rd-color-f9fafb);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  color: var(--rd-color-111827);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rd-color-eef2ff);
  color: var(--rd-color-1d4ed8);
  font-size: 16px;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--rd-color-e0ebff);
}

.faq-body {
  margin: 6px 2px 4px;
  font-weight: 400;
  color: var(--muted);
}

/* SECURITY */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.security-card {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: var(--rd-color-ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.security-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-lift);
}

.security-card p {
  margin: 2px 0 6px;
}

.security-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.security-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--rd-color-eef2ff);
  border: 1px solid var(--rd-color-e0e7ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.security-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--rd-color-1d4ed8);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-row {
  margin-top: 12px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.logo-chip {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--rd-color-f3f4f6);
  color: var(--rd-color-4b5563);
  font-weight: 600;
}

.security-chiplist {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.security-chip {
  background: var(--rd-color-edf2ff);
  color: var(--rd-color-1f2937);
}

/* DEMO CTA */
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.card {
  background: var(--rd-color-ffffff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 10px 0 4px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--rd-color-f9fafb);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  background: var(--rd-color-ffffff);
}

.cta {
  width: 100%;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: var(--pill-radius);
  border: none;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--rd-color-f9fafb);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.muted-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.error-inline {
  margin-top: 4px;
  font-size: 12px;
  color: var(--rd-color-b91c1c);
}

.demo-form-section > .section-heading {
  margin-bottom: 6px;
}

.demo-form-section > .section-sub {
  margin-bottom: 28px;
}

.demo-book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 280px);
  gap: 24px;
  align-items: start;
}

.demo-book-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

/* Soft glow while a field/chip in the form is focused. */
.demo-book-form:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus), var(--shadow-soft);
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row {
  margin-bottom: 14px;
}

.demo-book-form .form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}

.demo-book-form .form-row input,
.demo-book-form .form-row textarea {
  width: 100%;
  /* Light field + fixed dark text: --bg stays light in dark mode, so the theme
     --ink (near-white in dark) would make typed text invisible. */
  background: var(--rd-color-ffffff);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--rd-color-0f172a);
  font-family: inherit;
  transition: border-color 120ms, background 120ms, box-shadow 120ms;
}

.demo-book-form .form-row input:focus,
.demo-book-form .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: none;
  background: var(--rd-color-ffffff);
}

.demo-book-form .form-row textarea {
  resize: vertical;
  min-height: 76px;
}

.demo-context-details {
  margin: 2px 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(224, 237, 255, 0.42), rgba(255, 255, 255, 0.9));
  overflow: hidden;
}

.demo-context-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.demo-context-summary::-webkit-details-marker {
  display: none;
}

.demo-context-summary::marker {
  content: "";
}

.demo-context-summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
  transition: transform 120ms ease;
}

.demo-context-details[open] .demo-context-summary::after {
  transform: rotate(45deg);
}

.demo-context-details[open] .demo-context-summary {
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.demo-context-body {
  padding: 14px 16px 16px;
}

.demo-context-copy {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--muter);
  line-height: 1.5;
}

.demo-book-form .demo-context-details {
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.1), rgba(148, 163, 184, 0.05)),
    rgba(15, 23, 42, 0.38);
  border-color: rgba(148, 163, 184, 0.18);
}

.demo-book-form .demo-context-summary {
  color: var(--rd-color-f8fafc);
}

.demo-book-form .demo-context-details[open] .demo-context-summary {
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

.demo-book-form .demo-context-copy {
  color: var(--rd-color-cbd5e1);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.5;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.form-submit {
  width: 100%;
  height: 44px;
  background: var(--accent);
  color: var(--rd-color-ffffff);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 120ms, transform 80ms;
  margin-top: 4px;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--rd-color-1d4ed8);
}

.form-submit:active {
  transform: scale(0.99);
}

.form-submit-label {
  display: inline-flex;
  align-items: center;
}

.form-submit.is-loading {
  pointer-events: none;
}

.form-submit.is-loading .form-submit-label::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 9px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--rd-color-ffffff);
  border-radius: 50%;
  animation: demo-spin 600ms linear infinite;
}

@keyframes demo-spin {
  to { transform: rotate(360deg); }
}

/* Demo scheduler chips + inline confirmation (2026) */
.demo-when {
  margin-bottom: 16px;
}

.demo-when-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.demo-when-tz {
  margin-left: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muter);
}

.demo-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.demo-chip-group:last-of-type {
  margin-bottom: 0;
}

.demo-chip {
  position: relative;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  /* Fixed light pill + dark text so labels stay readable in both light and dark
     themes. (--bg is not overridden in dark mode, so pairing it with the theme
     --ink collided: light pill + light text = invisible.) */
  background: var(--rd-color-ffffff);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rd-color-0f172a);
  line-height: 1.1;
  transition: border-color 120ms, background 120ms, color 120ms, box-shadow 120ms, transform 80ms;
}

.demo-chip:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.demo-chip:active {
  transform: scale(0.97);
}

.demo-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes demo-chip-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.demo-chip--pop {
  animation: demo-chip-pop 240ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .demo-chip:hover { transform: none; }
  .demo-chip--pop { animation: none; }
}

.demo-chip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--rd-color-ffffff);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/* Check badge that pops onto the selected chip (corner-anchored, no reflow). */
.demo-chip[aria-pressed="true"]::after {
  content: "✓";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--rd-color-ffffff);
  color: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  animation: demo-check-badge 280ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes demo-check-badge {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .demo-chip[aria-pressed="true"]::after { animation: none; }
}

.demo-chip-time {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  border-radius: 12px;
}

.demo-chip-title {
  font-size: 12.5px;
  font-weight: 700;
}

.demo-chip-sub {
  font-size: 10.5px;
  font-weight: 600;
  opacity: 0.65;
}

.demo-chip-time[aria-pressed="true"] .demo-chip-sub {
  opacity: 0.9;
}

.demo-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
  padding: 18px 6px;
  animation: demo-confirm-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes demo-confirm-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.demo-recap {
  margin: 2px 0 12px;
  font-size: 12.5px;
  color: var(--muter);
  text-align: center;
  animation: demo-recap-in 240ms ease-out both;
}

.demo-recap strong {
  color: var(--accent);
  font-weight: 700;
}

@keyframes demo-recap-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

.demo-confirm-check {
  position: relative;
  display: inline-flex;
  margin-bottom: 10px;
}

/* One-shot confetti burst behind the confirmation check. */
.demo-confirm-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.demo-confirm-burst i {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 2px;
  opacity: 0;
  animation: demo-confetti 720ms ease-out 600ms both;
}

@keyframes demo-confetti {
  0% { opacity: 0; transform: translate(0, 0) scale(0.4) rotate(0deg); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1) rotate(160deg); }
}

.demo-confirm-burst i:nth-child(1) { --dx: -44px; --dy: -26px; background: var(--rd-color-2563eb); }
.demo-confirm-burst i:nth-child(2) { --dx: 44px; --dy: -26px; background: var(--rd-color-16a34a); }
.demo-confirm-burst i:nth-child(3) { --dx: -52px; --dy: 6px; background: var(--rd-color-f59e0b); }
.demo-confirm-burst i:nth-child(4) { --dx: 52px; --dy: 6px; background: var(--rd-color-ec4899); }
.demo-confirm-burst i:nth-child(5) { --dx: -28px; --dy: -44px; background: var(--rd-color-16a34a); }
.demo-confirm-burst i:nth-child(6) { --dx: 28px; --dy: -44px; background: var(--rd-color-2563eb); }
.demo-confirm-burst i:nth-child(7) { --dx: -14px; --dy: 40px; background: var(--rd-color-f59e0b); }
.demo-confirm-burst i:nth-child(8) { --dx: 14px; --dy: 40px; background: var(--rd-color-ec4899); }

@media (prefers-reduced-motion: reduce) {
  .demo-recap { animation: none; }
  .demo-confirm-burst { display: none; }
}

.demo-confirm-check-circle {
  stroke: rgba(22, 163, 74, 0.9);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: demo-check-circle 520ms ease-out 120ms forwards;
}

.demo-confirm-check-mark {
  stroke: var(--rd-color-166534);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: demo-check-mark 320ms ease-out 540ms forwards;
}

@keyframes demo-check-circle { to { stroke-dashoffset: 0; } }
@keyframes demo-check-mark { to { stroke-dashoffset: 0; } }

.demo-confirm-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.demo-confirm-sub {
  margin: 0 auto 14px;
  max-width: 380px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muter);
}

.demo-confirm-sub strong {
  color: var(--ink);
}

.demo-confirm-recap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.demo-confirm-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rd-color-166534);
  background: linear-gradient(135deg, var(--rd-color-ecfdf3), var(--rd-color-f0fdf4));
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.demo-confirm-note {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rd-color-166534);
}

.demo-confirm-note-warn {
  color: var(--rd-color-b91c1c);
}

.demo-confirm-meta {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--muter);
}

.demo-confirm-reset {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.demo-confirm-reset:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .demo-confirm,
  .demo-confirm-check-circle,
  .demo-confirm-check-mark {
    animation: none;
  }
  .demo-confirm-check-circle,
  .demo-confirm-check-mark {
    stroke-dashoffset: 0;
  }
}

.form-footnote {
  font-size: 11.5px;
  color: var(--muter);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

.form-footnote a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.form-footnote a:hover {
  text-decoration: underline;
}

.form-reassurance {
  margin-top: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.demo-book-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.demo-side-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.26), transparent 36%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.24);
}

.demo-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.demo-side-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  margin: 0 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.2);
  background: rgba(37, 99, 235, 0.14);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rd-color-bfdbfe);
}

.demo-side-card h4 {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--rd-color-f8fafc);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.demo-side-intro {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--rd-color-cbd5e1);
}

.demo-promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-promise-list li {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--rd-color-e2e8f0);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.demo-promise-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--rd-color-4ade80);
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: -1px;
}

/* FOOTER */
.site-footer {
  margin-top: 72px;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 13px;
  color: var(--rd-color-64748b);
}

.site-footer-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.site-footer-brand {
  max-width: 240px;
  flex-shrink: 0;
}

.site-footer-logo {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.site-footer-tagline {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rd-color-94a3b8);
}

.site-footer-cols {
  display: flex;
  gap: 48px;
}

.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.site-footer-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.site-footer-meta {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 12px;
  color: var(--rd-color-94a3b8);
}

.site-footer a {
  text-decoration: none;
  color: var(--rd-color-64748b);
  transition: color 150ms ease;
}

.site-footer a:hover,
.site-footer-button:hover {
  color: var(--accent);
}

@media (max-width: 700px) {
  .site-footer-row {
    flex-direction: column;
    gap: 28px;
  }

  .site-footer-cols {
    flex-wrap: wrap;
    gap: 28px;
  }

  .site-footer-brand { max-width: none; }
}

/* RESPONSIVE
-------------------------------------------------- */
@media (max-width: 1024px) {
  .topbar-inner {
    padding-inline: 16px;
  }
  .nav-links {
    left: 16px;
    right: 16px;
  }
  .layout {
    padding-inline: 16px;
  }
}

@media (max-width: 960px) {
  .hero,
  .split,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .tour-body {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .tour-side {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding: 20px;
  }

  .how-caption-line {
    max-width: none;
    white-space: normal;
  }

  .how-caption.visible .how-caption-line,
  .how-caption.visible .how-caption-line::after {
    animation: none;
  }

  .how-caption-line::after {
    display: none;
  }

  .hero {
    gap: 30px;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .hero-product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .live-proof-grid,
  .compact-proof-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .pricing-enterprise-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .roi-grid {
    grid-template-columns: 1fr;
  }
  .persona-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .demo-book-grid {
    grid-template-columns: 1fr;
  }
  .form-2col {
    grid-template-columns: 1fr;
  }
  .demo-book-form {
    padding: 26px 22px;
  }
  .demo-side-card {
    padding: 15px 16px;
  }
  .demo-book-side {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .layout {
    padding-inline: 16px;
  }

  .scene {
    border-radius: 24px;
    padding: 24px 18px 28px;
    margin-bottom: 16px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .hero {
    padding: 22px 18px 26px;
  }

  .demo-intro {
    padding: 32px 0 28px;
  }

  .demo-intro-shell {
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .tour-progress-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-progress-actions {
    justify-content: space-between;
  }

  .cookie-banner,
  .cookie-panel {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: auto;
    transform: none;
  }

  .cookie-banner-actions,
  .cookie-panel-actions {
    justify-content: flex-start;
  }

  .hero-product-mock {
    min-height: 0;
  }

  .demo-eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .demo-intro-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .demo-intro-btns .pill {
    width: 100%;
    justify-content: center;
  }

  .demo-intro-meta {
    max-width: 100%;
    gap: 6px;
    margin-top: 14px;
  }

  .demo-intro-meta-item {
    width: auto;
    max-width: 100%;
    min-height: 0;
    padding: 6px 9px;
    font-size: 10px;
    line-height: 1.25;
    flex: 0 1 auto;
  }

  .demo-title {
    font-size: clamp(36px, 12vw, 48px);
  }

  .hero-title {
    font-size: 32px;
  }

  .section h2,
  .section-heading {
    font-size: 24px;
  }

  .section-sub,
  .section-lede {
    margin-bottom: 20px;
  }

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

  .hero-bullet-content {
    grid-template-columns: 1fr;
  }

  .spb-gap {
    margin-top: 18px;
  }

  .spb {
    overflow-x: auto;
    padding-inline: 10px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .spb::-webkit-scrollbar {
    display: none;
  }

  .spb::before,
  .spb::after {
    display: none;
  }

  .spb-marquee {
    width: max-content;
    animation: none;
  }

  .spb-track--clone {
    display: none;
  }

  .spb-track {
    padding-left: 0;
    padding-right: 0;
  }

  .spb-logo {
    scroll-snap-align: start;
  }

  .tour-nav-step {
    padding: 11px 14px;
    font-size: 12px;
  }
}

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

  .tour-step-name {
    display: none;
  }

  .demo-intro-meta-item::before {
    display: none;
  }
}

/* ============================================================
   ADDITIONS: hero screen mock, social proof bar, testimonials,
   onboarding track, integration bar
   ============================================================ */

/* ---- HERO SCREEN MOCK ---- */
.hero-screen {
  background: var(--frame);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(255,255,255,0.06) inset;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 480px;
  align-self: start;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    box-shadow 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-screen.visible {
  opacity: 1;
  transform: translateY(0);
}

.hs-chrome {
  background: var(--rd-color-1e2336);
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hs-dots { display: flex; gap: 5px; }
.hs-dot  { width: 10px; height: 10px; border-radius: 50%; }
.hs-dot-r { background: var(--rd-color-ff5f56); }
.hs-dot-y { background: var(--rd-color-ffbd2e); }
.hs-dot-g { background: var(--rd-color-27c93f); }

.hs-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  height: 22px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  max-width: 360px;
}

.hs-window-btns {
  display: flex;
  gap: 4px;
}
.hs-window-btns span {
  width: 22px;
  height: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
}

.hs-nav {
  background: var(--rd-color-141928);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.hs-nav-brand {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  margin-right: 10px;
}

.hs-nav-context {
  font-size: 11.5px;
  color: rgba(255,255,255,0.68);
  padding: 3px 9px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.hs-nav-context--primary {
  background: rgba(37,99,235,0.24);
  color: var(--rd-color-93c5fd);
  border-color: rgba(96, 165, 250, 0.18);
}

.hs-nav-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--rd-color-cbd5e1);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px 9px;
}

.hs-nav-badge {
  background: var(--rd-color-ef4444);
  color: var(--rd-color-ffffff);
  font-size: 9px;
  font-weight: 800;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hs-body {
  background: var(--rd-color-f3f5f8);
  padding: 14px 14px 10px;
  flex: 1;
}

.hs-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--rd-color-0f172a);
  margin-bottom: 10px;
}

.hs-count-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.hs-chip-green  { background: var(--rd-color-dcfce7); color: var(--rd-color-15803d); }
.hs-chip-info   { background: var(--rd-color-e0f2fe); color: var(--rd-color-0284c7); }
.hs-chip-purple { background: var(--rd-color-f3e8ff); color: var(--rd-color-7c3aed); }
.hs-chip-blue   { background: var(--accent-soft); color: var(--accent); }

.hs-contract-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--rd-color-ffffff);
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 9px;
  padding: 9px 11px;
  margin-bottom: 5px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  transition: box-shadow 120ms;
}

.hs-row-signed { border-left: 3px solid var(--rd-color-16a34a); }
.hs-row-review { border-left: 3px solid var(--rd-color-0284c7); }
.hs-row-sent   { border-left: 3px solid var(--rd-color-7c3aed); }
.hs-row-draft  { border-left: 3px solid rgba(15,23,42,0.15); }

.hs-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hs-dot-signed { background: var(--rd-color-16a34a); }
.hs-dot-review { background: var(--rd-color-0284c7); }
.hs-dot-sent   { background: var(--rd-color-7c3aed); }
.hs-dot-draft  { background: rgba(15,23,42,0.2); }

.hs-row-main { flex: 1; min-width: 0; }

.hs-row-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--rd-color-0f172a);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hs-row-sep { opacity: 0.35; }

.hs-row-meta {
  display: block;
  font-size: 11px;
  color: var(--rd-color-6b7280);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-status-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.hs-status-strip {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 14px 12px;
  background: rgba(0,0,0,0.15);
}

/* ---- SOCIAL PROOF BAR ---- */
.spb {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: 999px;
  padding: 10px 0;
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 360ms ease-out,
    transform 360ms ease-out;
}

.spb.visible {
  opacity: 1;
  transform: translateY(0);
}

.spb--hero,
.spb--always-on {
  opacity: 1;
  transform: none;
}

.spb::before,
.spb::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 1;
  pointer-events: none;
}

.spb::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.spb::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.spb-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  animation: spbMarquee 34s linear infinite;
  will-change: transform;
}

.spb:hover .spb-marquee {
  animation-play-state: paused;
}

.demo-intro .spb,
.spb--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.demo-intro .spb::before,
.spb--dark::before {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0));
}

.demo-intro .spb::after,
.spb--dark::after {
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0));
}

.spb-track {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.spb-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muter);
  line-height: 1.2;
  white-space: nowrap;
}

.demo-intro .spb-logo,
.spb--dark .spb-logo {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(148, 163, 184, 0.18);
  color: rgba(248, 250, 252, 0.96);
}

.spb-logo svg {
  flex-shrink: 0;
}

@keyframes spbMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- LIVE PRODUCT PROOF ---- */
.live-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.live-proof-grid--summary {
  grid-template-columns: 1fr;
  gap: 28px;
}

.live-proof-grid--demo {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: center;
}

.live-proof-copy {
  max-width: 500px;
}

.live-proof-copy--wide {
  max-width: 760px;
}

.proof-dayone-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.proof-dayone-item {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.proof-dayone-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-dayone-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

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

.live-proof-evidence--summary {
  gap: 0;
}

.proof-kicker,
.compact-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

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

.proof-point {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.proof-point h3 {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.proof-point p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.proof-summary-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.74));
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
}

/* --- Day-one proof checklist --- */
.proof-checklist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.proof-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.proof-check-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--rd-color-16a34a);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.proof-checklist-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.proof-checklist-item span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* --- Day-one proof demo app --- */
.live-proof-evidence--demo {
  gap: 0;
}

.proof-demo-app {
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.13), 0 2px 6px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

.mock-panel-header--placement-proof {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

/* --- Proof summary bar --- */
.proof-summary-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.6), rgba(241, 245, 249, 0.8));
}

.proof-summary-metric {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 12.5px;
  color: var(--muted);
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.proof-summary-metric:last-child {
  border-right: none;
}

.proof-summary-metric strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* --- Day-one KPI strip --- */
.proof-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.proof-kpi {
  text-align: center;
  padding: 14px 8px 12px;
  border-right: 1px solid rgba(148, 163, 184, 0.1);
}

.proof-kpi:last-child {
  border-right: none;
}

.proof-kpi-number {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text, var(--rd-color-0f172a));
  line-height: 1.2;
}

.proof-kpi-number--accent {
  color: var(--rd-color-2563eb);
}

.proof-kpi-number--green {
  color: var(--rd-color-16a34a);
}

.proof-kpi-label {
  display: block;
  font-size: 10.5px;
  color: var(--muted, var(--rd-color-64748b));
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* --- Day-one contract list --- */
.proof-contract-list {
  padding: 6px 0;
}

.proof-contract-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.09);
  transition: background 150ms ease;
}

.proof-contract-row--highlight {
  background: rgba(34, 197, 94, 0.04);
}

.proof-contract-row:last-child {
  border-bottom: none;
}

.proof-contract-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.proof-contract-dot--signed {
  background: var(--rd-color-22c55e);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.proof-contract-dot--pending {
  background: var(--rd-color-f59e0b);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.proof-contract-dot--review {
  background: var(--rd-color-3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.proof-contract-dot--draft {
  background: var(--rd-color-94a3b8);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12);
}

.proof-contract-info {
  flex: 1;
  min-width: 0;
}

.proof-contract-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text, var(--rd-color-0f172a));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proof-contract-sub {
  display: block;
  font-size: 11.5px;
  color: var(--muted, var(--rd-color-64748b));
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Row stagger animation --- */
.proof-row-anim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
}

.proof-row-anim.proof-row-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Signed flash --- */
.proof-row-signed-flash {
  animation: proofSignedFlash 600ms ease-out;
}

@keyframes proofSignedFlash {
  0% { background: rgba(34, 197, 94, 0); }
  30% { background: rgba(34, 197, 94, 0.15); }
  100% { background: rgba(34, 197, 94, 0.04); }
}

/* --- Toast notification --- */
.proof-toast {
  position: absolute;
  top: 52px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--rd-color-ffffff);
  border: 1px solid rgba(34, 197, 94, 0.24);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
  font-size: 12.5px;
  color: var(--text, var(--rd-color-0f172a));
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 320ms ease-out, transform 320ms ease-out;
  pointer-events: none;
  z-index: 5;
}

.proof-toast-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proof-toast-hiding {
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transition-duration: 500ms;
}

.proof-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rd-color-22c55e);
  color: var(--rd-color-ffffff);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.proof-toast-text strong {
  font-weight: 600;
}

/* Demo body needs position context for toast */
.proof-demo-body {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .proof-row-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .proof-row-signed-flash {
    animation: none;
  }
  .proof-toast {
    transition: none;
  }
}

.proof-summary-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.proof-summary-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.proof-summary-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.proof-summary-list {
  display: grid;
  gap: 10px;
}

.proof-summary-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 10px;
}

.proof-summary-row + .proof-summary-row {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.proof-summary-term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.24);
  font-size: 11px;
  font-weight: 800;
  color: var(--rd-color-0f172a);
}

.proof-summary-copy {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 900px) {
  .live-proof-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ---- SHARED METRICS STRIP ---- */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin: 20px 0 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms ease-out, transform 360ms ease-out;
}

.metrics-strip.visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-cell {
  padding: 26px 18px 20px;
  text-align: center;
  transition: background 180ms ease;
}

.metric-cell:hover {
  background: rgba(37, 99, 235, 0.03);
}

.metric-cell + .metric-cell {
  border-left: 1px solid var(--border);
}

.metric-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 5px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--accent);
}

.metric-number--text {
  align-items: center;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.metric-unit {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.metric-label {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.metric-before {
  display: block;
  font-size: 11px;
  color: var(--muter);
  text-decoration: line-through;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.metric-before.is-visible {
  opacity: 0.7;
  transform: translateY(0);
}

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

.proof-fact-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--rd-color-ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.proof-fact-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.proof-fact-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 160ms, transform 160ms;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.testimonial-card--featured {
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.06), var(--shadow-soft);
  position: relative;
}

.testimonial-card--featured::before {
  content: "Most cited";
  position: absolute;
  top: -1px;
  left: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--rd-color-ffffff);
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.testimonial-stars {
  font-size: 14px;
  color: var(--rd-color-f59e0b);
  letter-spacing: 1px;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after  { content: "\201D"; }

.testimonial-result {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--rd-color-1d4ed8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--rd-color-ffffff);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  font-size: 11.5px;
  color: var(--muter);
  margin-top: 1px;
}

/* ---- ONBOARDING TRACK ---- */
.onboarding-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ob-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 8px;
}

.ob-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.ob-step--goal .ob-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--rd-color-ffffff);
}

.ob-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.ob-sub {
  font-size: 11.5px;
  color: var(--muter);
  line-height: 1.4;
}

.ob-connector {
  flex: 0 0 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent-soft));
  align-self: center;
  border-radius: 999px;
  margin-top: -28px;
}

/* ---- INTEGRATION BAR ---- */
.integration-bar {
  margin-top: 28px;
  text-align: center;
}

.integration-bar-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muter);
  margin: 0 0 14px;
}

.integration-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.int-logo-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
  box-shadow: var(--shadow-soft);
}

.int-logo-card--center {
  background: linear-gradient(135deg, var(--accent) 0%, var(--rd-color-1d4ed8) 100%);
  border-color: transparent;
  color: var(--rd-color-ffffff);
  transform: scale(1.05);
  z-index: 1;
}

.int-logo-card--center .int-logo-icon,
.int-logo-card--center .int-logo-name,
.int-logo-card--center .int-logo-desc { color: var(--rd-color-ffffff); }
.int-logo-card--center .int-logo-desc { opacity: 0.75; }

.int-logo-icon {
  width: 22px; height: 22px;
  color: var(--accent);
  stroke-width: 1.5;
}

.int-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.int-logo-desc {
  font-size: 11px;
  color: var(--muter);
}

.int-logo-connector {
  font-size: 18px;
  color: rgba(148,163,184,0.5);
  padding: 0 4px;
  align-self: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 920px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-screen { max-width: 100%; }
  .spb { border-radius: var(--radius-md); }
  .metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metric-cell {
    border-left: 0;
  }
  .metric-cell:nth-child(even) {
    border-left: 1px solid var(--border);
  }
  .metric-cell:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
  .faq-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .onboarding-track { flex-direction: column; align-items: center; }
  .ob-connector { width: 2px; height: 20px; flex: 0 0 20px; margin: 0 0 0 -10px; align-self: auto; background: var(--accent-soft); }
  .integration-logos { gap: 8px; }
  .int-logo-connector { display: none; }
  .proof-facts-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof-metrics {
    grid-template-columns: 1fr;
  }
  .metrics-strip {
    grid-template-columns: 1fr;
  }
  .metric-cell + .metric-cell {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .hero-flow-strip {
    gap: 6px;
    padding: 10px;
  }
  .hero-flow-arrow {
    display: none;
  }
  .hero-flow-node {
    width: 100%;
    justify-content: flex-start;
  }
  .site-footer-identity {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-screen,
  .spb,
  .metrics-strip {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── STICKY CTA BAR ─────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: var(--rd-sticky-cta-offset, 0px);
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--rd-color-0f172a);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 24px calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sticky-cta-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sticky-cta-btn {
  font-size: .85rem;
  padding: 8px 20px;
}

.sticky-cta-link {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color 160ms ease;
  white-space: nowrap;
}
.sticky-cta-link:hover { color: rgba(255,255,255,.9); }

@media (max-width: 580px) {
  .sticky-cta-tagline { display: none; }
  .sticky-cta-inner { justify-content: center; }
}

.compare-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 920px) {
  .proof-stack {
    grid-template-columns: 1fr;
  }
}

/* ─── COMPARISON v2 ─────────────────────────────────────────────────────── */
.compare-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: var(--rd-color-ffffff);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

/* Headers */
.cv2-header {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid rgba(148, 163, 184, 0.1);
}

.cv2-header--feature { background: transparent; }

.cv2-header--them {
  background: rgba(148, 163, 184, 0.04);
  border-left: 1px solid rgba(148, 163, 184, 0.1);
  border-right: 1px solid rgba(148, 163, 184, 0.1);
}

.cv2-header--us {
  background: rgba(37, 99, 235, 0.04);
  border-bottom-color: rgba(37, 99, 235, 0.2);
}

.cv2-brand-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--rd-color-0f172a);
  letter-spacing: -0.02em;
}

.cv2-brand-sub {
  font-size: 11px;
  color: var(--rd-color-94a3b8);
  font-weight: 500;
}

.cv2-best-badge {
  font-size: 9px;
  font-weight: 800;
  color: var(--rd-color-2563eb);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 9px;
  border-radius: 999px;
}

/* Feature rows */
.cv2-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.cv2-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--rd-color-2563eb);
  flex-shrink: 0;
}

.cv2-feature-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rd-color-0f172a);
  line-height: 1.3;
}

/* Value cells */
.cv2-cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.cv2-cell--them {
  background: rgba(148, 163, 184, 0.02);
  border-left: 1px solid rgba(148, 163, 184, 0.1);
  border-right: 1px solid rgba(148, 163, 184, 0.1);
}

.cv2-cell--us {
  background: rgba(37, 99, 235, 0.02);
}

.cv2-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.cv2-icon--yes {
  background: var(--rd-color-22c55e);
  color: var(--rd-color-ffffff);
}

.cv2-icon--no {
  background: rgba(220, 38, 38, 0.08);
  color: var(--rd-color-dc2626);
}

.cv2-icon--partial {
  background: rgba(245, 158, 11, 0.1);
  color: var(--rd-color-d97706);
}

.cv2-note {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--rd-color-475569);
  padding-top: 2px;
}

.cv2-cell--us .cv2-note {
  color: var(--rd-color-1e293b);
  font-weight: 500;
}

/* Row entrance animation */
.cv2-row-anim {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
}

.cv2-row-anim.cv2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Score strip at bottom */
.cv2-score-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 20px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.9));
  border-top: 2px solid rgba(148, 163, 184, 0.1);
}

.cv2-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.cv2-score-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cv2-score-of {
  font-size: 16px;
  font-weight: 600;
  color: var(--rd-color-94a3b8);
}

.cv2-score--them .cv2-score-num { color: var(--rd-color-dc2626); }
.cv2-score--us .cv2-score-num { color: var(--rd-color-16a34a); }

.cv2-score-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--rd-color-94a3b8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Row hover */
.cv2-feature:hover,
.cv2-feature:hover ~ .cv2-cell--them,
.cv2-feature:hover ~ .cv2-cell--us {
  background: rgba(37, 99, 235, 0.03);
}

/* Responsive */
@media (max-width: 700px) {
  .compare-v2 {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .cv2-header--feature { display: none; }

  .cv2-header--them,
  .cv2-header--us {
    border-left: 0;
    border-right: 0;
  }

  .cv2-header--them {
    display: none;
  }

  .cv2-feature {
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 0;
    padding-bottom: 8px;
  }

  .cv2-cell {
    border-left: 0;
    border-right: 0;
  }

  .cv2-cell--them {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .cv2-cell--them::before {
    content: "AwesomeDocs";
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rd-color-94a3b8);
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }

  .cv2-cell--us::before {
    content: "RecruiterDocs";
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rd-color-2563eb);
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }

  .cv2-cell--them,
  .cv2-cell--us {
    flex-wrap: wrap;
  }

  .cv2-score-strip {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.roi-scene {
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.roi-head {
  margin-bottom: 18px;
}

.roi-head-note {
  max-width: 360px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.05));
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.roi-grid {
  display: grid;
  gap: 16px;
}

.roi-controls,
.roi-result {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.roi-controls {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.roi-field {
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.94)),
    rgba(255, 255, 255, 0.82);
}

.roi-field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.roi-field-head label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.roi-value {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.roi-range {
  width: 100%;
  margin: 0;
  accent-color: var(--accent);
}

.roi-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muter);
}

.roi-result {
  padding: 22px;
}

/* Stats strip — horizontal before → after → savings */
.roi-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.roi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
}

.roi-stat--before { border-right: 1px solid rgba(148, 163, 184, 0.14); }

.roi-stat-label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muter);
}

.roi-stat-value {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.roi-stat--before .roi-stat-value { color: var(--muter); }
.roi-stat--after .roi-stat-value { color: var(--accent); }

.roi-stat-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--muter);
  margin-top: 2px;
}

.roi-stat-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--accent);
  opacity: 0.5;
}

.roi-stat-savings {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 28px;
  margin-left: 20px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.roi-stat-savings-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rd-color-16a34a);
}

.roi-stat-savings-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--rd-color-16a34a);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Bottom row — cost + CTA */
.roi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  margin-top: 6px;
}

.roi-cost-line {
  font-size: 14px;
  color: var(--muted);
}

.roi-cost-line strong {
  color: var(--ink);
  font-size: 18px;
  margin-left: 6px;
}

.roi-cta {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .roi-head {
    gap: 12px;
  }

  .roi-head-note {
    max-width: none;
    width: 100%;
  }

  .roi-controls {
    grid-template-columns: 1fr;
  }

  .roi-stats-strip {
    flex-wrap: wrap;
    gap: 16px;
  }

  .roi-stat { padding: 0 16px; }
  .roi-stat--before { border-right: 0; }
  .roi-stat-arrow { display: none; }
  .roi-stat-savings { margin-left: 0; }
  .roi-stat-value { font-size: 32px; }
  .roi-stat-savings-num { font-size: 32px; }

  .roi-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 2026 marketing refresh overrides */
:root {
  color-scheme: light dark;
  --bg: var(--rd-color-eef2f8);
  --panel: var(--rd-color-ffffff);
  --ink: var(--rd-color-0b1220);
  --muted: var(--rd-color-475467);
  --muter: var(--rd-color-677489);
  --accent: var(--rd-color-2563eb);
  --accent-2: var(--rd-color-22c55e);
  --border: rgba(148, 163, 184, 0.28);
  --shadow-soft: 0 20px 48px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 32px 72px rgba(2, 6, 23, 0.18);
  --shadow-lift: 0 18px 40px rgba(15, 23, 42, 0.12);
  --header-item-height: 44px;
}

body {
  font-family: var(--rd-font-sans);
  background:
    radial-gradient(circle at top center, rgba(15, 23, 42, 0.05), transparent 30%),
    linear-gradient(180deg, var(--rd-color-fcfcfb) 0%, var(--rd-color-f6f6f2) 44%, var(--rd-color-f1f3ef) 100%);
  letter-spacing: -0.01em;
}

.topbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.rd-brand-name,
.nav-link,
.nav-link.current,
.nav-link-signin {
  color: rgba(15, 23, 42, 0.86);
}

.rd-brand-tagline {
  color: rgba(71, 85, 105, 0.76);
}

.nav-link {
  padding: 0 12px;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.current {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.06);
  color: var(--rd-color-0f172a);
  transform: translateY(-1px);
}

.nav-link.current[aria-current="page"] {
  box-shadow:
    inset 0 -2px 0 rgba(37, 99, 235, 0.68),
    0 0 0 1px rgba(37, 99, 235, 0.08);
}

.pill {
  position: relative;
  overflow: hidden;
}

.pill::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -140%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transition: transform 220ms ease;
}

.pill:hover::after {
  transform: translateX(320%);
}

.pill-primary {
  background: var(--rd-color-0f172a);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.pill-primary:hover {
  transform: translateY(-1px);
  background: var(--rd-color-111c33);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}

.pill-lg {
  padding: 0 24px;
}

.pill-ghost {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.demo-intro {
  margin-top: 22px;
  padding: 10px 0 18px;
}

.demo-intro-shell {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 24px;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(148, 163, 184, 0.08), transparent 26%),
    radial-gradient(circle at 15% 15%, rgba(96, 165, 250, 0.08), transparent 20%),
    linear-gradient(150deg, var(--rd-color-09111d) 0%, var(--rd-color-101726) 56%, var(--rd-color-161f31) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 72px rgba(2, 6, 23, 0.18);
}

.demo-intro-shell::before {
  content: "";
  position: absolute;
  inset: auto -8% -30% 46%;
  height: 180px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.1), transparent 62%);
  pointer-events: none;
}

.demo-intro-copy {
  max-width: 620px;
  padding-top: 10px;
}

.demo-eyebrow {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 320px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  border-radius: 999px;
}

.demo-eyebrow-dot {
  background: var(--rd-color-7dd3fc);
  box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.1);
}

.demo-title {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--rd-color-f8fafc);
  max-width: 13.4ch;
  margin-bottom: 22px;
  text-wrap: balance;
}

.demo-title-main {
  display: block;
  max-width: 13.4ch;
  text-wrap: balance;
}

.demo-title-accent {
  display: inline-block;
  margin-top: 16px;
  max-width: none;
  font-size: 0.4em;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  color: rgba(226, 232, 240, 0.94);
  white-space: nowrap;
}

.demo-title-accent--bullhorn {
  text-decoration-line: underline;
  text-decoration-color: var(--bullhorn);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.14em;
  text-decoration-skip-ink: none;
}

.demo-title-accent .bullhorn-text {
  color: var(--bullhorn);
  -webkit-text-fill-color: var(--bullhorn);
}

.bullhorn-text {
  color: var(--bullhorn);
}

.demo-lede {
  color: rgba(226, 232, 240, 0.76);
  font-size: 17px;
  line-height: 1.68;
  max-width: 60ch;
}

.demo-intro-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 580px;
  gap: 8px;
}

.demo-intro-meta-item {
  position: relative;
  justify-content: flex-start;
  gap: 8px;
  min-height: 0;
  width: auto;
  padding: 8px 12px 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.8);
  box-shadow: none;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.15;
  border-radius: 999px;
  text-align: left;
}

.demo-intro-meta-item::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.92);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.08);
}

.demo-intro-note {
  color: rgba(203, 213, 225, 0.6);
  font-size: 12.5px;
}

.demo-intro-tertiary {
  color: rgba(219, 234, 254, 0.86);
}

.demo-intro-tertiary:hover {
  color: var(--rd-color-ffffff);
}

.demo-intro-visual {
  position: relative;
  padding-top: 8px;
}

.hero-visual--product {
  position: relative;
  z-index: 1;
}

.hero-visual--placement {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-product-mock {
  transform: none;
  transform-origin: center;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.22);
}

.hero-product-mock--placement {
  border-radius: 28px;
  overflow: hidden;
}

.hero-product-mock--placement .mock-app {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.99);
}

.hero-product-mock--placement .mock-app-chrome,
.hero-product-mock--placement .mock-app-nav {
  background: rgba(248, 250, 252, 0.96);
}

.hero-product-mock--placement .mock-url-bar,
.hero-product-mock--placement .mock-nav-brand,
.hero-product-mock--placement .mock-nav-tab,
.hero-product-mock--placement .mock-back-link,
.hero-product-mock--placement .mock-page-title {
  color: rgba(15, 23, 42, 0.82);
}

.hero-product-mock--placement .mock-app-body {
  padding: 20px;
}

.hero-product-mock--placement .mock-card {
  background: var(--rd-color-ffffff);
  padding: 18px 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.hero-product-mock--placement .mock-page-header {
  margin-bottom: 18px;
}

.hero-product-mock--placement .mock-card-title {
  font-size: 15px;
  color: var(--rd-color-0f172a);
}

.hero-product-mock--placement .mock-card-subtitle {
  font-size: 12px;
  color: var(--rd-color-64748b);
}

.hero-product-mock--placement .mock-field {
  grid-template-columns: 116px 1fr;
  font-size: 12.5px;
}

.hero-product-mock--placement .mock-field-key {
  color: var(--rd-color-475569);
}

.hero-product-mock--placement .mock-field-val {
  color: var(--rd-color-334155);
  font-weight: 600;
}

.placement-mock.is-animating .placement-reveal-card {
  animation: cardIn 500ms both cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: var(--mock-delay, 0ms);
}

.placement-mock.is-animating .placement-reveal-row {
  animation: slideInRow 300ms both;
  animation-delay: var(--mock-delay, 0ms);
}

.placement-mock.is-animating .placement-reveal-pop {
  animation: popIn 300ms both;
  animation-delay: var(--mock-delay, 0ms);
}

.placement-mock--tour.is-animating .placement-reveal-cta {
  animation:
    slideInRow 300ms both,
    mockCtaPulse 800ms ease-in-out 4400ms 1;
  animation-delay: var(--mock-delay, 0ms), 4400ms;
}

.mock-cta {
  background: var(--rd-color-0f172a);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.spb {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
}

.scene {
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.scene::before {
  height: 4px;
}

.scene--blue {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.96), var(--rd-color-ffffff) 26%);
}

.scene--warm {
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 251, 235, 0.98), var(--rd-color-ffffff) 26%);
}

.scene--dark {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 24%),
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.08), transparent 20%),
    linear-gradient(155deg, var(--rd-color-08101c) 0%, var(--rd-color-111827) 100%);
  color: var(--rd-color-e2e8f0);
}

.scene--dark::before {
  background: linear-gradient(90deg, var(--rd-color-60a5fa), var(--rd-color-4ade80));
}

.scene--dark h2,
.scene--dark h3,
.scene--dark .section-lede,
.scene--dark .compact-proof-kicker,
.scene--dark .faq-body,
.scene--dark .pricing-footnote,
.scene--dark .security-card p {
  color: inherit;
}

.scene--dark .compact-proof-kicker {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-dayone-item,
.proof-point,
.proof-fact-card,
.pricing-card,
.security-card,
.faq-item {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.proof-dayone-item:hover,
.proof-point:hover,
.proof-fact-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.proof-point {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98));
}

.proof-summary-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.92));
}

.metrics-strip {
  margin-top: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
}

.metric-cell {
  padding: 28px 18px 24px;
  text-align: left;
}

.metric-cell:hover {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.7), rgba(255, 255, 255, 0.92));
}

.metric-number {
  justify-content: flex-start;
  font-size: clamp(44px, 5vw, 68px);
  margin-bottom: 8px;
}

.metric-unit {
  font-size: clamp(18px, 2vw, 24px);
}

.metric-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.metric-before {
  margin-top: 8px;
  font-size: 12px;
  text-decoration: none;
}

.metric-before.is-visible {
  opacity: 1;
}

.compare-scene {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), var(--rd-color-ffffff) 24%);
}

.pricing-card {
  padding: 20px 20px 22px;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.pricing-card.featured {
  transform: translateY(-2px);
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.pricing-cta {
  min-height: 42px;
}

.pricing-scene .pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pricing-scene .pricing-card:hover {
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lift);
}

.pricing-scene .pricing-badge {
  background: rgba(96, 165, 250, 0.14);
  color: var(--rd-color-bfdbfe);
}

.pricing-scene .price,
.pricing-scene .pricing-card h3,
.pricing-scene .pricing-support-head h3,
.pricing-scene .faq-item summary,
.pricing-scene .faq-group-title {
  color: var(--rd-color-f8fafc);
}

.pricing-scene .price-suffix,
.pricing-scene .pricing-sub,
.pricing-scene .pricing-card ul,
.pricing-scene .pricing-support-copy,
.pricing-scene .faq-body,
.pricing-scene .pricing-footnote {
  color: rgba(226, 232, 240, 0.78);
}

.pricing-scene .pricing-value-anchor {
  color: inherit;
}

.demo-form-section .section-heading,
.demo-form-section .section-sub {
  max-width: 760px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  top: 74px;
  bottom: auto;
  width: min(920px, calc(100vw - 48px));
  transform: translateX(-50%);
  z-index: 920;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(9, 17, 29, 0.96);
  color: var(--rd-color-f8fafc);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.2);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}

.cookie-banner-copy strong {
  display: inline;
  font-size: 12.5px;
  margin-bottom: 0;
  white-space: nowrap;
}

.cookie-banner-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(226, 232, 240, 0.82);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-btn {
  min-height: 32px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
}

.cookie-banner-link {
  color: rgba(226, 232, 240, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner-link:hover {
  text-decoration: underline;
}

.cookie-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(6px);
}

.cookie-panel-backdrop[hidden] {
  display: none !important;
}

.cookie-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(440px, calc(100vw - 48px));
  z-index: 950;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--rd-color-0f172a);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 28px 72px rgba(2, 6, 23, 0.26);
}

.cookie-panel[hidden] {
  display: none !important;
}

.cookie-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-panel-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.cookie-panel-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--rd-color-0f172a);
}

.cookie-panel-close {
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(248, 250, 252, 0.96);
  color: var(--rd-color-334155);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-panel-close:hover {
  background: rgba(241, 245, 249, 1);
}

.cookie-panel-state {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--rd-color-475569);
}

.cookie-panel-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.88);
}

.cookie-panel-section h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--rd-color-0f172a);
}

.cookie-panel-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--rd-color-475569);
}

.cookie-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}

.cookie-panel .pill-ghost {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--rd-color-334155);
  box-shadow: none;
}

.cookie-panel .cookie-banner-link {
  color: var(--rd-color-0f172a);
}

body.cookie-panel-open {
  overflow: hidden;
}

.pricing-scene .pricing-card li::before {
  color: var(--rd-color-93c5fd);
}

.pricing-scene .pricing-cta {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--rd-color-0f172a);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.26);
}

.pricing-scene .pricing-card.featured .pricing-cta {
  background: var(--rd-color-0f172a);
  color: var(--rd-color-f8fafc);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.34);
}

.pricing-scene .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pricing-scene .faq-item[open] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.pricing-scene .faq-item summary::after {
  background: rgba(96, 165, 250, 0.16);
  color: var(--rd-color-bfdbfe);
}

.security-scene .security-grid {
  gap: 18px;
}

.scene--dark .security-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.scene--dark .security-card:hover {
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
}

.scene--dark .security-icon {
  background: rgba(96, 165, 250, 0.14);
  border-color: rgba(96, 165, 250, 0.2);
}

.scene--dark .security-icon svg {
  stroke: var(--rd-color-93c5fd);
}

.scene--dark .security-chip,
.scene--dark .logo-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--rd-color-e2e8f0);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scene--dark .logo-chip:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.onboarding-track--elapsed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.onboarding-track--elapsed .ob-step {
  position: relative;
  min-width: 0;
  text-align: left;
  padding: 18px 0 0;
}

.onboarding-track--elapsed .ob-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.34);
}

.onboarding-track--elapsed .ob-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rd-color-0f172a);
}

.onboarding-track--elapsed .ob-label {
  font-size: 16px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.onboarding-track--elapsed .ob-sub {
  font-size: 13px;
  line-height: 1.58;
}

.onboarding-track--elapsed .ob-step--goal .ob-time {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--rd-color-1d4ed8);
}

@media (max-width: 1100px) {
  .topbar {
    background: rgba(255,255,255,0.92);
  }

  .nav-links {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }

  .demo-intro-shell {
    gap: 20px;
    padding: 34px;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .demo-intro-copy {
    max-width: 560px;
  }
}

@media (max-width: 960px) {
  .topbar {
    background: rgba(255,255,255,0.92);
  }

  .nav-links {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }

  .demo-intro-shell {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .demo-intro-copy {
    max-width: none;
    text-align: left;
  }

  .demo-intro-btns,
  .demo-intro-meta,
  .demo-intro-links {
    justify-content: flex-start;
  }

  .demo-intro-note,
  .demo-lede {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-product-mock {
    transform: none;
  }
}

@media (max-width: 720px) {
  .layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .demo-intro-shell {
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .demo-eyebrow {
    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap;
  }

  .demo-title,
  .demo-title-main {
    font-size: clamp(36px, 12vw, 48px);
    max-width: none;
    letter-spacing: 0;
    text-wrap: pretty;
  }

  .demo-title-accent {
    display: block;
    margin-top: 12px;
    font-size: 0.5em;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .demo-lede {
    font-size: 16px;
  }

  .demo-intro-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .demo-intro-btns .pill {
    width: 100%;
    justify-content: center;
  }

  .demo-intro-meta {
    max-width: 100%;
    gap: 6px;
    margin-top: 14px;
  }

  .demo-intro-meta-item {
    width: auto;
    max-width: 100%;
    min-height: 0;
    padding: 6px 9px;
    font-size: 10px;
    line-height: 1.25;
    flex: 0 1 auto;
  }

  .demo-intro-meta-item::before {
    display: none;
  }

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

  .metric-number {
    justify-content: center;
  }

  .onboarding-track--elapsed {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .spb-gap {
    margin-top: 18px;
  }

  .spb {
    overflow-x: auto;
    padding-inline: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .spb::-webkit-scrollbar {
    display: none;
  }

  .spb::before,
  .spb::after {
    display: none;
  }

  .spb-marquee {
    width: max-content;
    animation: none;
  }

  .spb-track--clone {
    display: none;
  }

  .spb-track {
    padding-left: 0;
    padding-right: 0;
  }

  .spb-logo {
    scroll-snap-align: start;
  }

  .demo-form-section {
    margin-top: 56px;
  }

  .demo-form-section > .section-sub {
    margin-bottom: 18px;
  }

  .demo-book-grid {
    gap: 16px;
  }

  .demo-book-side {
    gap: 10px;
  }

  .cookie-banner,
  .cookie-panel {
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    border-radius: 18px;
  }

  .cookie-banner {
    top: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner-copy {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cookie-banner-copy strong {
    white-space: normal;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner-actions > * {
    flex: 1 1 100%;
  }

  .cookie-banner-link,
  .cookie-banner-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cookie-panel {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill::after {
    display: none;
  }

  .nav-link,
  .pill,
  .proof-dayone-item,
  .proof-point,
  .proof-fact-card,
  .pricing-card,
  .security-card,
  .hero-product-mock {
    transition: none;
    transform: none;
  }
}

/* ─── MOBILE-FIRST FIXES ─────────────────────────────────────────────────── */

/* Prevent horizontal overflow on all screen sizes */
html, body { overflow-x: hidden; }

/* ---- 480px and below ---- */
@media (max-width: 480px) {

  /* ── Global ── */
  .layout {
    padding: 20px 12px 60px;
  }

  .section {
    margin-top: 72px;
    scroll-margin-top: 72px;
  }

  .scene {
    border-radius: 20px;
    padding: 20px 14px 24px;
    margin-bottom: 12px;
  }

  .section h2,
  .section-heading {
    font-size: 22px;
    line-height: 1.15;
  }

  .section-lede,
  .section-sub {
    font-size: 14px;
  }

  /* ── Topbar ── */
  .topbar-inner {
    padding: 8px 12px;
    gap: 8px;
  }

  .rd-brand-tagline { display: none; }

  .rd-brand-icon img { width: 22px; height: 22px; }

  .topbar-right .pill {
    padding: 0 14px;
    font-size: 12px;
    min-height: 32px;
  }

  .nav-links {
    left: 12px;
    right: 12px;
  }

  .nav-toggle { font-size: 12px; }

  /* ── Hero ── */
  .demo-intro {
    padding: 20px 0 16px;
  }

  .demo-intro-shell {
    padding: 16px 14px;
    gap: 14px;
    border-radius: 20px;
  }

  .demo-title,
  .demo-title-main {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.08;
    max-width: none;
    letter-spacing: 0;
  }

  .demo-title-accent {
    display: block;
    margin-top: 10px;
    font-size: 0.48em;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .demo-lede {
    font-size: 15px;
    line-height: 1.5;
  }

  .demo-eyebrow {
    font-size: 11px;
    padding: 6px 12px;
  }

  .demo-intro-btns .pill {
    min-height: 44px;
    font-size: 14px;
  }

  .demo-intro-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-intro-meta-item {
    text-align: center;
  }

  /* ── Hero product mock ── */
  .hero-product-mock {
    min-height: 0;
  }

  .hero-visual {
    max-width: 100%;
    padding: 0;
  }

  .hero-product-mock--placement .mock-app-body {
    padding: 12px;
  }

  .hero-product-mock--placement .mock-field {
    grid-template-columns: 90px 1fr;
    font-size: 11px;
    gap: 4px;
  }

  body.cookie-banner-visible .demo-intro {
    padding-bottom: calc(var(--rd-cookie-banner-height) + 16px);
  }

  body.cookie-banner-visible .demo-intro-visual {
    margin-top: calc(var(--rd-cookie-banner-height) + 32px);
    padding-bottom: calc(var(--rd-cookie-banner-height) + 12px);
  }

  /* ── Benefits ribbon ── */
  .spb-logo {
    font-size: 11px;
    gap: 6px;
    white-space: nowrap;
  }

  /* ── Metrics strip ── */
  .metric-number {
    font-size: 32px;
  }

  .metric-unit {
    font-size: 18px;
  }

  .metric-label {
    font-size: 11px;
  }

  .metric-before {
    font-size: 10px;
  }

  .metric-cell {
    padding: 18px 12px 16px;
  }

  /* ── Tour / How it works ── */
  .tour-frame {
    border-radius: 20px;
  }

  .tour-nav {
    gap: 3px;
    padding: 8px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tour-nav::-webkit-scrollbar { display: none; }

  .tour-nav-step {
    padding: 9px 10px;
    font-size: 11px;
    border-radius: 10px 10px 0 0;
  }

  .tour-step-name { display: none; }

  .tour-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tour-side {
    padding: 18px 16px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }

  .tour-side-content {
    max-width: none;
  }

  .tour-side h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .tour-side p {
    font-size: 14px;
  }

  .tour-side-note {
    font-size: 12px;
    padding: 10px 12px;
  }

  .tour-viewport.active {
    max-height: 380px;
    overflow-y: auto;
  }

  /* ── Mock app (inside tour + proof) ── */
  .mock-app-chrome {
    height: 34px;
    padding: 0 10px;
    gap: 6px;
  }

  .mock-dot { width: 8px; height: 8px; }

  .mock-url-bar {
    font-size: 9px;
    height: 20px;
    padding: 0 6px;
  }

  .mock-app-nav {
    height: 32px;
    padding: 0 8px;
    gap: 2px;
  }

  .mock-nav-brand { font-size: 11px; margin-right: 6px; }

  .mock-nav-tab {
    font-size: 10px;
    padding: 3px 6px;
  }

  .mock-app-body {
    padding: 12px 10px 14px;
  }

  .mock-card {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .mock-card-title { font-size: 13px; }
  .mock-card-subtitle { font-size: 11px; }

  .mock-field {
    grid-template-columns: 90px 1fr;
    font-size: 11.5px;
    gap: 4px;
    padding: 7px 0;
  }

  .mock-map-row {
    grid-template-columns: 1fr 14px 1fr 22px;
    font-size: 10.5px;
    gap: 4px;
    min-height: 30px;
    padding: 0 6px;
    border-radius: 8px;
  }

  .mock-token {
    font-size: 9.5px;
    padding: 2px 4px;
  }

  .mock-map-val { font-size: 10.5px; }

  .mock-select {
    height: 34px;
    font-size: 11.5px;
    padding: 0 10px;
  }

  .mock-cta {
    height: 34px;
    font-size: 12px;
  }

  /* ── Mock inbox (approval tour step) ── */
  .mock-inbox-copy {
    min-width: 0;
  }

  .mock-inbox-title { font-size: 12px; }
  .mock-inbox-meta { font-size: 10px; }

  .mock-inbox-check {
    padding: 6px 8px;
  }

  .mock-inbox-check-title { font-size: 11px; }
  .mock-inbox-check-detail { font-size: 10px; }

  .mock-action-row {
    gap: 6px;
  }

  .mock-cta--approve,
  .mock-secondary-btn {
    height: 30px;
    font-size: 11px;
  }

  /* ── Mock contracts list (sign tour step) ── */
  .mock-contract-title { font-size: 12px; }
  .mock-contract-meta { font-size: 10px; }
  .mock-contract-foot { font-size: 10px; flex-wrap: wrap; gap: 4px; }

  /* ── Why it works / Proof section ── */
  .live-proof-copy {
    padding: 0;
  }

  .proof-kicker {
    font-size: 10px;
  }

  .live-proof-copy h2 {
    font-size: 22px;
  }

  .proof-checklist-item {
    font-size: 13px;
    gap: 8px;
  }

  .proof-checklist-item strong {
    font-size: 13px;
  }

  .proof-checklist-item span {
    font-size: 12px;
  }

  /* ── Proof demo app ── */
  .proof-kpi-strip {
    grid-template-columns: 1fr;
  }

  .proof-kpi {
    padding: 10px 8px;
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .proof-kpi:last-child { border-bottom: none; }

  .proof-kpi-number { font-size: 17px; }
  .proof-kpi-label { font-size: 9.5px; }

  .proof-contract-row {
    padding: 8px 10px;
    gap: 8px;
  }

  .proof-contract-name { font-size: 11.5px; }
  .proof-contract-sub { font-size: 10px; }

  .mock-pill {
    font-size: 10px;
    padding: 2px 8px;
    white-space: nowrap;
  }

  .proof-summary-bar {
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .proof-toast {
    font-size: 11px;
    padding: 8px 12px;
  }

  /* ── Bento grid / Features ── */
  .bento-header {
    margin-bottom: 16px;
  }

  .bento-header h2 {
    font-size: 22px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bento-cell--wide { grid-column: span 1; }

  .bento-cell {
    border-radius: 16px;
  }

  .bento-cell-inner {
    padding: 16px 14px;
  }

  .bento-cell--stat .bento-cell-inner {
    padding: 18px 14px;
  }

  .bento-label { font-size: 9px; }

  .bento-cell h3 { font-size: 18px; }

  .bento-pipeline {
    flex-wrap: wrap;
    gap: 6px;
  }

  .bento-pipe-step {
    flex: 1 1 auto;
    min-width: 0;
  }

  .bento-pipe-arrow { display: none; }

  .bento-pipe-text { font-size: 11px; }

  .bento-check { font-size: 12px; }

  .bento-route-row { font-size: 12px; }

  .bento-feed-item { font-size: 12px; padding: 6px 10px; }

  .bento-stat-ring {
    width: 100px;
    height: 100px;
  }

  .bento-stat-num { font-size: 22px; }
  .bento-stat-label { font-size: 11px; }

  .bento-it-strip {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 14px 12px;
    font-size: 12px;
  }

  .bento-it-sep { display: none; }

  /* ── Compare v2 ── */
  .compare-v2 {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .cv2-header--feature { display: none; }
  .cv2-header--them { display: none; }

  .cv2-header--them,
  .cv2-header--us {
    border-left: 0;
    border-right: 0;
  }

  .cv2-header { padding: 14px 14px; }

  .cv2-feature {
    padding: 10px 14px;
    gap: 10px;
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .cv2-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .cv2-feature-icon svg { width: 16px; height: 16px; }

  .cv2-feature-name { font-size: 12.5px; }

  .cv2-cell {
    padding: 8px 14px;
    border-left: 0;
    border-right: 0;
    flex-wrap: wrap;
  }

  .cv2-cell--them { padding-top: 4px; padding-bottom: 4px; }

  .cv2-cell--them::before {
    content: "AwesomeDocs";
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rd-color-94a3b8);
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }

  .cv2-cell--us::before {
    content: "RecruiterDocs";
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rd-color-2563eb);
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }

  .cv2-note { font-size: 11.5px; }

  .cv2-score-strip {
    flex-direction: column;
    gap: 10px;
    padding: 16px 14px;
  }

  .cv2-score-num { font-size: 28px; }
  .cv2-score-of { font-size: 14px; }
  .cv2-score-label { font-size: 10px; }

  .compare-cta { margin-top: 20px; }

  .compare-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Pricing ── */
  .pricing-grid--v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card--featured { transform: none; }

  .pricing-card--v2 {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .pc-amount { font-size: 48px; }
  .pc-currency { font-size: 20px; }

  .pc-title { font-size: 18px; }
  .pc-subtitle { font-size: 13px; }

  .pc-features li {
    font-size: 13px;
    gap: 8px;
  }

  .pc-cta,
  .pc-cta--primary {
    min-height: 44px;
    font-size: 14px;
  }

  .pc-ribbon {
    top: 10px;
    right: -38px;
    font-size: 8px;
  }

  .pc-enterprise {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
  }

  .pc-section-header h2 { font-size: 22px; }
  .pc-section-lede { font-size: 13px; }

  /* ── ROI ── */
  .roi-head h2 { font-size: 22px; }

  .roi-head-note {
    max-width: none;
    font-size: 12px;
  }

  .roi-controls {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
  }

  .roi-field {
    padding: 12px 12px 10px;
    border-radius: 14px;
  }

  .roi-field-head label { font-size: 10px; }
  .roi-value { font-size: 15px; padding: 3px 8px; }

  .roi-result {
    padding: 16px;
    border-radius: 20px;
  }

  .roi-stats-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .roi-stat {
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .roi-stat--before { border-right: 0; }
  .roi-stat-arrow { display: none; }

  .roi-stat-value { font-size: 28px; }
  .roi-stat-savings-num { font-size: 28px; }

  .roi-stat-savings {
    margin-left: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .roi-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .roi-cta {
    width: 100%;
    justify-content: center;
  }

  /* ── Demo form ── */
  .demo-book-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .demo-book-form {
    padding: 20px 16px;
    border-radius: 20px;
  }

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

  .form-submit {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .demo-side-card {
    padding: 14px;
    border-radius: 16px;
  }

  .demo-form-section {
    margin-top: 40px;
  }

  .demo-form-section > .section-sub {
    margin-bottom: 14px;
  }

  .demo-side-kicker { font-size: 10px; }
  .demo-side-card h4 { font-size: 16px; }
  .demo-side-intro { font-size: 13px; }
  .demo-promise-list li { font-size: 13px; }

  .demo-context-summary { font-size: 13px; }
  .form-reassurance { font-size: 12px; }
  .form-footnote { font-size: 11px; }

  /* ── Footer ── */
  .site-footer-row {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer-cols {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer-brand { max-width: none; }
  .site-footer-logo { font-size: 16px; }
  .site-footer-tagline { font-size: 12px; }
  .site-footer-col-title { font-size: 10px; }
  .site-footer-col a { font-size: 13px; }

  .site-footer-meta {
    font-size: 11px;
    text-align: center;
    padding-top: 14px;
  }

  /* ── Sticky CTA ── */
  .sticky-cta {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta-tagline { display: none; }

  .sticky-cta-inner { justify-content: center; }

  .sticky-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 42px;
  }

  /* ── Cookie banners ── */
  .cookie-banner,
  .cookie-panel {
    left: 8px;
    right: 8px;
    width: auto;
    border-radius: 16px;
  }

  .cookie-banner {
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-panel {
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner-actions {
    flex-direction: column;
    gap: 6px;
  }

  .cookie-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- 380px and below (very small phones) ---- */
@media (max-width: 380px) {
  .demo-title {
    font-size: 26px;
  }

  .section h2,
  .section-heading {
    font-size: 20px;
  }

  .metric-number { font-size: 28px; }
  .metric-unit { font-size: 16px; }

  .pc-amount { font-size: 42px; }

  .bento-cell h3 { font-size: 16px; }

  .tour-side h3 { font-size: 20px; }

  .mock-map-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 6px 8px;
  }

  .mock-map-arrow { display: none; }
  .mock-status-icon { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); }
  .mock-map-row { position: relative; }

  .cv2-feature-icon { display: none; }

  .roi-stat-value { font-size: 24px; }
  .roi-stat-savings-num { font-size: 24px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --panel: rgba(15, 23, 42, 0.88);
    --ink: var(--rd-color-eef2ff);
    --muted: var(--rd-color-cbd5e1);
    --muter: var(--rd-color-94a3b8);
    --border: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 20px 48px rgba(2, 6, 23, 0.26);
    --shadow-strong: 0 32px 72px rgba(2, 6, 23, 0.34);
    --shadow-lift: 0 20px 46px rgba(2, 6, 23, 0.24);
  }

  body {
    background:
      radial-gradient(circle at top center, rgba(96, 165, 250, 0.08), transparent 24%),
      linear-gradient(180deg, var(--rd-color-090d16) 0%, var(--rd-color-0d111a) 44%, var(--rd-color-121826) 100%);
  }

  .demo-tour {
    --panel: rgba(255, 255, 255, 0.96);
    --ink: var(--rd-color-0f172a);
    --muted: var(--rd-color-475569);
    --muter: var(--rd-color-64748b);
    --border: rgba(148, 163, 184, 0.22);
    --shadow-soft: 0 20px 48px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 28px 62px rgba(15, 23, 42, 0.12);
  }

  .tour-frame {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: 0 28px 72px rgba(2, 6, 23, 0.32);
  }

  .tour-nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(148, 163, 184, 0.28);
  }

  .tour-nav-step {
    color: var(--rd-color-64748b);
    background: rgba(248, 250, 252, 0.9);
  }

  .tour-nav-step:hover {
    color: var(--rd-color-0f172a);
    background: rgba(37, 99, 235, 0.08);
  }

  .tour-nav-step.active {
    background: rgba(37, 99, 235, 0.08);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
  }

  .tour-step-num {
    background: rgba(15, 23, 42, 0.08);
    color: var(--rd-color-64748b);
  }

  .tour-side {
    border-right-color: rgba(148, 163, 184, 0.22);
    background:
      radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 42%),
      linear-gradient(180deg, rgba(245, 248, 255, 0.98), rgba(255, 255, 255, 0.96));
  }

  .tour-side-note {
    color: var(--rd-color-475569);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  }

  .tour-btn {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(15, 23, 42, 0.14);
    color: var(--rd-color-475569);
  }

  .tour-btn:hover {
    background: rgba(15, 23, 42, 0.06);
    color: var(--rd-color-0f172a);
  }

  .tour-viewport {
    background:
      linear-gradient(180deg, rgba(248, 250, 255, 0.92), rgba(241, 245, 249, 0.84));
  }

  .demo-tour .mock-url-bar {
    color: rgba(226, 232, 240, 0.92);
  }

  .demo-tour .mock-nav-brand {
    color: var(--rd-color-f8fafc);
  }

  .demo-tour .mock-nav-tab {
    color: var(--rd-color-94a3b8);
  }

  .demo-tour .mock-app-body {
    background:
      radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  }

  /* Day-one proof demo in dark mode — keep mock app light */
  .proof-demo-app {
    --panel: rgba(255, 255, 255, 0.96);
    --ink: var(--rd-color-0f172a);
    --muted: var(--rd-color-475569);
    --text: var(--rd-color-0f172a);
    --border: rgba(148, 163, 184, 0.22);
  }

  .proof-demo-app .mock-app-body {
    background:
      radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  }

  .proof-check-icon {
    background: rgba(34, 197, 94, 0.18);
    color: var(--rd-color-4ade80);
  }

  .proof-checklist-item strong {
    color: var(--rd-color-e2e8f0);
  }

  /* Bento grid dark mode */
  .scene--mesh {
    background:
      radial-gradient(ellipse at 20% 0%, rgba(96, 165, 250, 0.08), transparent 50%),
      radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.06), transparent 50%),
      linear-gradient(180deg, var(--rd-color-0c1120) 0%, var(--rd-color-111827) 50%, var(--rd-color-0f172a) 100%);
  }

  .bento-kicker { background: rgba(59, 130, 246, 0.12); color: var(--rd-color-93c5fd); }

  .bento-cell {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
  }

  .bento-cell:hover { border-color: rgba(59, 130, 246, 0.18); box-shadow: 0 20px 48px rgba(2, 6, 23, 0.3); }

  .bento-cell h3 { color: var(--rd-color-e2e8f0); }
  .bento-label { background: rgba(59, 130, 246, 0.1); color: var(--rd-color-93c5fd); }

  .bento-pipe-step { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.06); color: var(--rd-color-64748b); }
  .bento-pipe-step.bento-pipe-active { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); color: var(--rd-color-93c5fd); }
  .bento-pipe-arrow { color: var(--rd-color-475569); }

  .bento-check { color: var(--rd-color-94a3b8); }
  .bento-check.bento-check-done { color: var(--rd-color-e2e8f0); }
  .bento-check-result-num { color: var(--rd-color-4ade80); }
  .bento-check-result-label { color: var(--rd-color-94a3b8); }
  .bento-check-result { border-top-color: rgba(255, 255, 255, 0.06); }

  .bento-route-name { color: var(--rd-color-e2e8f0); }
  .bento-route-role { color: var(--rd-color-64748b); }
  .bento-route-note { color: var(--rd-color-64748b); }

  .bento-feed-text { color: var(--rd-color-e2e8f0); }
  .bento-feed-time { color: var(--rd-color-64748b); }
  .bento-feed-item:first-child { background: rgba(34, 197, 94, 0.06); }

  .bento-stat-num { color: var(--rd-color-93c5fd); }
  .bento-cell--stat-green .bento-stat-num { color: var(--rd-color-4ade80); }
  .bento-stat-label { color: var(--rd-color-94a3b8); }

  .bento-it-strip { background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.06); color: var(--rd-color-94a3b8); }
  .bento-it-label { color: var(--rd-color-93c5fd); }
  .bento-it-item strong { color: var(--rd-color-e2e8f0); }
  .bento-it-sep { background: rgba(255, 255, 255, 0.08); }
  .bento-it-links a { background: rgba(59, 130, 246, 0.08); color: var(--rd-color-93c5fd); }
  .bento-it-links a:hover { background: rgba(59, 130, 246, 0.16); }

  .topbar {
    background: rgba(10,12,20,0.92);
    border-bottom-color: rgba(148, 163, 184, 0.16);
  }

  .rd-brand-name,
  .nav-link,
  .nav-link.current,
  .nav-link-signin {
    color: rgba(248, 250, 252, 0.9);
  }

  .rd-brand-tagline {
    color: rgba(203, 213, 225, 0.7);
  }

  .nav-link:hover,
  .nav-link.current {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--rd-color-ffffff);
  }

  .pill-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--rd-color-e2e8f0);
    box-shadow: none;
  }

  .spb,
  .metrics-strip,
  .scene:not(.scene--dark),
  .proof-point,
  .proof-summary-card,
  .proof-fact-card {
    background: rgba(15, 23, 42, 0.76);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  }

  .spb::before {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0));
  }

  .spb::after {
    background: linear-gradient(270deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0));
  }

  .spb-logo {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(148, 163, 184, 0.16);
    color: rgba(226, 232, 240, 0.82);
  }

  .proof-summary-term,
  .onboarding-track--elapsed .ob-time {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--rd-color-e5e7eb);
  }

  .proof-dayone-item,
  .proof-point {
    background: rgba(15, 23, 42, 0.76);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  }

  .proof-dayone-label {
    background: rgba(37, 99, 235, 0.18);
    color: var(--rd-color-bfdbfe);
  }

  .proof-dayone-item p,
  .proof-point p {
    color: var(--rd-color-dbe7f5);
  }

  .metric-cell:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .scene--blue,
  .compare-scene,
  .roi-scene {
    background:
      radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 24%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(17, 24, 39, 0.92));
  }

  .roi-controls,
  .roi-result {
    background: rgba(15, 23, 42, 0.74);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 22px 52px rgba(2, 6, 23, 0.3);
  }

  .roi-head-note {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(15, 23, 42, 0.4));
    border-color: rgba(96, 165, 250, 0.24);
    color: var(--rd-color-dbe7f5);
  }

  .roi-field {
    background:
      linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(15, 23, 42, 0.5)),
      rgba(15, 23, 42, 0.48);
    border-color: rgba(148, 163, 184, 0.14);
  }

  .roi-field-head label,
  .roi-stat-value,
  .roi-cost-line strong {
    color: var(--rd-color-f8fafc);
  }

  .roi-scale,
  .roi-stat-label,
  .roi-stat-unit,
  .roi-cost-line {
    color: var(--rd-color-cbd5e1);
  }

  .roi-value {
    background: rgba(37, 99, 235, 0.14);
    color: var(--rd-color-93c5fd);
  }

  .roi-range {
    accent-color: var(--rd-color-60a5fa);
  }

  .roi-stat--after .roi-stat-value { color: var(--rd-color-60a5fa); }

  .roi-stat-savings {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
  }

  .roi-bottom {
    border-top-color: rgba(148, 163, 184, 0.1);
  }

  /* Bento grid dark mode */
  .bento-cell {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(148, 163, 184, 0.1);
  }

  .bento-cell:hover {
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.15), 0 8px 20px rgba(2, 6, 23, 0.2);
  }

  .bento-cell--stat {
    background: radial-gradient(ellipse at 50% 40%, rgba(37, 99, 235, 0.1) 0%, rgba(15, 23, 42, 0.6) 70%);
  }

  .bento-cell--stat-green {
    background: radial-gradient(ellipse at 50% 40%, rgba(34, 197, 94, 0.1) 0%, rgba(15, 23, 42, 0.6) 70%);
  }

  .bento-cell h3, .bento-route-name, .bento-feed-text { color: var(--rd-color-f1f5f9); }
  .bento-check.bento-check-done { color: var(--rd-color-e2e8f0); }

  .bento-pipe-step {
    background: rgba(148, 163, 184, 0.08);
    border-color: rgba(148, 163, 184, 0.12);
  }

  .bento-pipe-step.bento-pipe-active {
    background: rgba(37, 99, 235, 0.14);
    border-color: rgba(37, 99, 235, 0.25);
  }

  .bento-ring-track { stroke: rgba(148, 163, 184, 0.15); }

  .bento-it-strip {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(148, 163, 184, 0.1);
  }

  .bento-it-item strong { color: var(--rd-color-f1f5f9); }

  .bento-orb { opacity: 0.15; }

  .scene--mesh {
    background:
      radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
      radial-gradient(circle at 80% 60%, rgba(96, 165, 250, 0.1) 0%, transparent 40%),
      rgba(15, 23, 42, 0.3);
  }

  .demo-book-form .demo-context-details {
    background:
      linear-gradient(180deg, rgba(96, 165, 250, 0.16), rgba(30, 41, 59, 0.58)),
      rgba(15, 23, 42, 0.72);
    border-color: rgba(96, 165, 250, 0.18);
  }

  .demo-book-form .demo-context-summary {
    color: var(--rd-color-f8fafc);
  }

  .demo-book-form .demo-context-copy {
    color: var(--rd-color-cbd5e1);
  }

  .nav-links {
    background: rgba(10,12,20,0.92);
    border-color: rgba(148, 163, 184, 0.16);
  }

  /* Compare v2 dark mode */
  .compare-v2 {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(148, 163, 184, 0.12);
    box-shadow: 0 22px 52px rgba(2, 6, 23, 0.3);
  }

  .cv2-header { border-bottom-color: rgba(148, 163, 184, 0.08); }
  .cv2-header--them { background: rgba(148, 163, 184, 0.04); border-color: rgba(148, 163, 184, 0.08); }
  .cv2-header--us { background: rgba(37, 99, 235, 0.06); }
  .cv2-brand-name { color: var(--rd-color-f1f5f9); }
  .cv2-feature-name { color: var(--rd-color-e2e8f0); }
  .cv2-note { color: var(--rd-color-94a3b8); }
  .cv2-cell--us .cv2-note { color: var(--rd-color-cbd5e1); }
  .cv2-feature, .cv2-cell { border-bottom-color: rgba(148, 163, 184, 0.06); }
  .cv2-cell--them { background: rgba(148, 163, 184, 0.03); border-color: rgba(148, 163, 184, 0.08); }
  .cv2-cell--us { background: rgba(37, 99, 235, 0.04); }
  .cv2-score-strip { background: rgba(15, 23, 42, 0.5); border-top-color: rgba(148, 163, 184, 0.08); }
  .cv2-feature-icon { background: rgba(37, 99, 235, 0.12); }
}

@media (prefers-reduced-motion: reduce) {
  .tour-progress-fill,
  .metric-before,
  .tour-autoplay-dot,
  .spb-marquee {
    transition: none !important;
    animation: none !important;
  }

  .spb {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .spb::-webkit-scrollbar {
    display: none;
  }

  .spb::before,
  .spb::after {
    display: none;
  }

  .how-caption[data-animate-on-scroll] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .how-caption-line {
    max-width: none;
    white-space: normal;
  }

  .how-caption.visible .how-caption-line,
  .how-caption.visible .how-caption-line::after {
    animation: none;
  }

  .how-caption-line::after {
    display: none;
  }

  .spb-track--clone {
    display: none;
  }
}

