@font-face {
  font-family: "Geist";
  src: url("../fonts/geist/Geist-Variable.b39676298197.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;

  --bg: #f5f7fb;
  --panel: #ffffff;
  --ink: #020617;
  --muted: #4b5563;
  --muter: #6b7280;

  --accent: #2563eb;
  --accent-soft: #e0edff;
  --accent-2: #0ea5e9;
  --accent-3: #f59e0b;

  --border: #dce5f5;

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

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

  --frame: #141928;
  --frame-header: #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: #f3f5f8;

  --ok-bg: #dcfce7;
  --ok-fg: #15803d;
  --warn-bg: #fef9c3;
  --warn-fg: #a16207;
  --info-bg: #e0f2fe;
  --info-fg: #0284c7;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geist", "SF Pro Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: linear-gradient(180deg, #f3f4ff 0%, #eef2ff 40%, #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: 88px;
}

/* 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: #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;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.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: #fee2e2;
  color: #b91c1c;
}

.highlight-pill--after {
  background: #dcfce7;
  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: #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: #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;
  }

  .rd-brand-tagline {
    display: block;
  }

  .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: #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: #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: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #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, #2563eb, #0ea5e9, #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: #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, #ffffff, #eff6ff);
  border: 1px solid rgba(148, 163, 184, 0.26);
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.hero-flow-arrow {
  font-size: 16px;
  font-weight: 800;
  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: #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: #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: #6b7280;
  font-weight: 500;
}

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

.proof-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  font-weight: 600;
  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: #eef2ff;
  color: #4f46e5;
  font-size: 10.5px;
  font-weight: 700;
}

.hero-product-stage--done {
  background: #dcfce7;
  color: #15803d;
}

.hero-product-stage--active {
  background: #dbeafe;
  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: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.hero-product-timeline-dot--active {
  background: #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: #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: #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: #eff4ff;
  border: 1px solid #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: #6b7280;
}

.hero-visual-row-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.hero-visual-row-body {
  font-size: 12.5px;
  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: #020617;
  color: #f9fafb;
}
.hero-status-pill--info {
  background: #e0edff;
  color: #1d4ed8;
}
.hero-status-pill--success {
  background: #dcfce7;
  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: #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;
}

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

.message-next {
  margin-top: 6px;
  font-weight: 500;
  font-size: 13px;
  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--tour-primary .demo-tour {
  margin-top: 0;
  margin-bottom: 0;
}

.section--tour-primary .how-caption {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
}

.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: #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), #ffffff 24%);
}

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

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

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

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

.scene--lilac::before {
  background: linear-gradient(90deg, #6366f1, #ec4899);
}

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

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

.scene[data-animate-on-scroll] {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 420ms ease-out,
    transform 420ms ease-out;
}

.scene.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

/* PROBLEM STRIP BEFORE / AFTER */
.problem-strip {
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: #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: #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: #fef2f2;
  color: #b91c1c;
}

.problem-label--after {
  background: #ecfdf3;
  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: #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: #374151;
  transition: box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.step:hover {
  background: #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: #eff6ff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  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: #6366f1;
  margin-bottom: 4px;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #111827;
}

.how-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muter);
}

.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-track {
  height: 4px;
  background: rgba(37, 99, 235, 0.09);
}

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

.tour-nav {
  display: flex;
  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-x: auto;
  scrollbar-width: none;
}

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

.tour-nav-step {
  display: flex;
  align-items: 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;
  flex-shrink: 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-nav-step.active .tour-step-num {
  background: var(--accent);
  color: #fff;
}

.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: 584px;
}

.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: #6d28d9;
}

.tour-role-admin {
  background: rgba(245, 158, 11, 0.12);
  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: #fff;
  margin-left: auto;
}

.tour-btn-next:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.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: #ff5f56;
}

.mock-dot-y {
  background: #ffbd2e;
}

.mock-dot-g {
  background: #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: #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: #ef4444;
  color: #fff;
  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 {
  animation-delay: 100ms;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mock-delay-600 {
  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: #fff;
  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: #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); }
}

.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 #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, #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 #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: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

/* WORKFLOW SHOWCASE */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.showcase-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.showcase-card-header {
  padding: 18px 20px 14px;
}

.showcase-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 6px;
}

.showcase-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 5px;
}

.showcase-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.showcase-preview {
  background: var(--frame-content-bg);
  border-top: 1px solid var(--border);
  padding: 14px;
}

/* ---- 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: #eff6ff;
  color: #1d4ed8;
}

.chip--alt,
.feature-chip--alt {
  background: #fef3c7;
  color: #92400e;
}

.chip--success,
.feature-chip--success {
  background: #dcfce7;
  color: #166534;
}

.chip--muted,
.feature-chip--muted {
  background: #e5e7eb;
  color: #374151;
}

.mini-tpl-list { display: flex; flex-direction: column; gap: 6px; }

.mini-tpl-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
}

.mini-tpl-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.mini-tpl-name { font-weight: 600; color: var(--ink); display: block; }
.mini-tpl-meta { font-size: 11px; color: var(--muter); display: block; }

.mini-tpl-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--pill-radius);
  background: var(--ok-bg);
  color: var(--ok-fg);
  flex-shrink: 0;
}

.mini-audit-list { display: flex; flex-direction: column; gap: 7px; }

.mini-audit-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
}

.mini-audit-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.mad-accent { background: var(--accent); }
.mad-ok { background: #16a34a; }
.mad-warn { background: #d97706; }

.mini-audit-event { font-weight: 600; color: var(--ink); display: block; }
.mini-audit-meta { color: var(--muter); font-size: 11px; display: block; }

.mini-bulk-list { display: flex; flex-direction: column; gap: 5px; }

.mini-bulk-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
}

.mini-bulk-name {
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-bulk-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--pill-radius);
  flex-shrink: 0;
}

.mbs-done { background: var(--ok-bg); color: var(--ok-fg); }
.mbs-pending { background: var(--warn-bg); color: var(--warn-fg); }
.mbs-new { background: var(--accent-soft); color: var(--accent); }

/* 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: #0ea5e9;
}

.ir35-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ffffff, #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: #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: #e5e7eb;
  overflow: hidden;
  position: relative;
}

.gauge-segment:last-child {
  background: linear-gradient(90deg, #dbeafe, #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: #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: #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: #f9fafb;
}

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

.role-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #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: #4f46e5;
  stroke-width: 1.6;
  fill: none;
}

/* PRICING */
.pricing-grid {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 0 0,
    rgba(59, 130, 246, 0.35),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  animation: featuredGlow 6s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%,
  60%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}

.pricing-card:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.pricing-badge {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.price {
  margin: 4px 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.price-suffix {
  font-size: 13px;
  font-weight: 600;
  color: var(--muter);
}

.pricing-sub {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muter);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.pricing-card li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.pricing-card li::before {
  content: "–";
  color: var(--accent);
}

.pricing-cta {
  margin-top: auto;
  padding: 9px 0;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    border-color 120ms ease,
    background 120ms ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.pricing-card.featured .pricing-cta {
  border: none;
  background: linear-gradient(90deg, var(--accent), #4f46e5);
  color: #f9fafb;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.pricing-card.featured .pricing-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.45);
}

.pricing-footnote {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  max-width: 700px;
}

.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: #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: #f9fafb;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  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: #eef2ff;
  color: #4f46e5;
  font-size: 16px;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
  background: #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: #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(-1px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.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: #eef2ff;
  border: 1px solid #e0e7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.security-icon svg {
  width: 16px;
  height: 16px;
  stroke: #4f46e5;
  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: #f3f4f6;
  color: #4b5563;
  font-weight: 600;
}

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

.security-chip {
  background: #edf2ff;
  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: #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: #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: #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: #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: #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: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.demo-book-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 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%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--ink);
  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: #fff;
}

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

.form-submit {
  width: 100%;
  height: 44px;
  background: var(--accent);
  color: #fff;
  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: #1d4ed8;
}

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

.form-footnote {
  font-size: 12px;
  color: var(--muter);
  text-align: center;
  margin-top: 10px;
}

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

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

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

.demo-side-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.demo-side-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

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

.demo-promise-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.demo-promise-list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FOOTER */
.site-footer {
  margin-top: 72px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 12.5px;
  color: #6b7280;
}

.site-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-identity {
  text-align: right;
}

.site-footer-meta {
  margin-top: 4px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE
-------------------------------------------------- */
@media (max-width: 1024px) {
  .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;
  }

  .hero {
    gap: 30px;
  }
  .hero-visual {
    margin: 0 auto;
  }
  .hero-product-layout {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    padding-inline: 16px;
  }
  .nav-links {
    left: 16px;
    right: 16px;
  }
  .layout {
    padding-inline: 16px;
  }
}

@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));
  }
  .persona-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .demo-book-grid {
    grid-template-columns: 1fr;
  }
  .form-2col {
    grid-template-columns: 1fr;
  }
}

@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: 24px;
  }

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

  .demo-intro-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-intro-meta-item {
    width: 100%;
  }

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

  .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;
  }

  .tour-nav-step {
    padding: 11px 14px;
    font-size: 12px;
  }
}

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

  .tour-step-name {
    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: #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: #ff5f56; }
.hs-dot-y { background: #ffbd2e; }
.hs-dot-g { background: #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: #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: #93c5fd;
  border-color: rgba(96, 165, 250, 0.18);
}

.hs-nav-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  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: #ef4444;
  color: #fff;
  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: #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: #0f172a;
  margin-bottom: 10px;
}

.hs-count-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.hs-chip-green  { background: #dcfce7; color: #15803d; }
.hs-chip-info   { background: #e0f2fe; color: #0284c7; }
.hs-chip-purple { background: #f3e8ff; color: #7c3aed; }
.hs-chip-blue   { background: var(--accent-soft); color: var(--accent); }

.hs-contract-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  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 #16a34a; }
.hs-row-review { border-left: 3px solid #0284c7; }
.hs-row-sent   { border-left: 3px solid #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: #16a34a; }
.hs-dot-review { background: #0284c7; }
.hs-dot-sent   { background: #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: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hs-row-sep { opacity: 0.35; }

.hs-row-meta {
  display: block;
  font-size: 11px;
  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 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  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 22px;
  margin: 20px 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-trust {
  font-weight: 700;
  color: var(--ink);
}

.spb-sep { color: rgba(148,163,184,0.5); }

.spb-agency-chips {
  display: flex;
  gap: 5px;
}

.spb-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  background: rgba(37,99,235,0.07);
  color: var(--accent);
  border-radius: 999px;
}

.spb-int-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spb-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muter);
}

/* ---- 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-copy {
  max-width: 500px;
}

.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;
}

.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-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);
}

.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: #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;
  }
}

/* ---- 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.7;
}

.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: #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: #fff;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.testimonial-stars {
  font-size: 14px;
  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: #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: #fff;
  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: #fff;
}

.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%, #1d4ed8 100%);
  border-color: transparent;
  color: #fff;
  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: #fff; }
.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); padding: 12px 16px; }
  .metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-groups {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr 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;
  }
  .showcase-grid {
    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: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 24px;
  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 CARDS ──────────────────────────────────────────────────────── */
.compare-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.compare-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-card--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}

.compare-card--featured {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.96));
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06), var(--shadow-soft);
}

.compare-card-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-card--featured .compare-card-label {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.compare-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.compare-point-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.compare-point-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  flex: 0 0 8px;
}

.compare-card-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.compare-proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
}

.compare-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 920px) {
  .compare-card-grid {
    grid-template-columns: 1fr;
  }

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

/* ─── COMPARISON TABLE ───────────────────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color, #e2e8f0);
  margin-top: 32px;
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table thead {
  background: var(--surface-subtle, #f8fafc);
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  vertical-align: middle;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-feature-col {
  font-weight: 600;
  color: var(--text-primary, #0f172a);
  width: 28%;
}

.compare-col { width: 24%; }

/* RecruiterDocs column highlight */
.compare-col--rd {
  background: rgba(37,99,235,.04);
  border-left: 2px solid var(--accent-primary, #2563eb);
  border-right: 2px solid var(--accent-primary, #2563eb);
}
thead .compare-col--rd {
  background: rgba(37,99,235,.08);
}

.compare-col-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  font-size: .9rem;
}

.compare-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--accent-primary, #2563eb);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 2px;
}

.compare-best-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-primary, #2563eb);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(37,99,235,.1);
  padding: 2px 7px;
  border-radius: 10px;
}

/* Cell states */
.compare-yes {
  color: var(--text-primary, #0f172a);
}
.compare-no {
  color: var(--text-tertiary, #94a3b8);
  font-size: .85rem;
}
.compare-partial {
  color: var(--text-secondary, #64748b);
  font-size: .85rem;
}

.compare-check {
  color: #16a34a;
  font-weight: 700;
  margin-right: 6px;
}
.compare-cross {
  color: #dc2626;
  font-weight: 700;
  margin-right: 6px;
}
.compare-partial-icon {
  color: #d97706;
  font-weight: 700;
  margin-right: 6px;
}

.compare-detail {
  display: block;
  font-size: .78rem;
  color: var(--text-secondary, #64748b);
  margin-top: 2px;
  font-weight: 400;
}

/* Zebra rows */
.compare-table tbody tr:nth-child(even) td:not(.compare-col--rd) {
  background: var(--surface-subtle, #f8fafc);
}
.compare-table tbody tr:nth-child(even) .compare-col--rd {
  background: rgba(37,99,235,.07);
}

.compare-table tbody tr:hover td:not(.compare-col--rd) {
  background: rgba(37,99,235,.03);
}

@media (max-width: 700px) {
  .compare-table-wrap { border-radius: var(--radius-md); }
  .compare-feature-col { width: 36%; }
  .compare-col { width: 21%; }
  .compare-detail { display: none; }
}

/* 2026 marketing refresh overrides */
:root {
  --bg: #eef2f8;
  --panel: #ffffff;
  --ink: #07111f;
  --muted: #445066;
  --muter: #6b7486;
  --accent: #2563eb;
  --accent-2: #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);
}

body {
  background:
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.04), transparent 24%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 18%),
    linear-gradient(180deg, #fbfbfa 0%, #f3f4f3 42%, #ecefed 100%);
  letter-spacing: -0.01em;
}

.topbar {
  background: rgba(250, 248, 244, 0.88);
  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: #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: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  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);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}

.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, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  padding: 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(148, 163, 184, 0.1), transparent 26%),
    radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.1), transparent 22%),
    linear-gradient(145deg, #09111f 0%, #101827 56%, #182131 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 72px rgba(2, 6, 23, 0.2);
}

.demo-intro-shell::before {
  content: "";
  position: absolute;
  inset: auto -4% -28% 42%;
  height: 180px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.14), transparent 62%);
  pointer-events: none;
}

.demo-intro-copy {
  max-width: 580px;
  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);
}

.demo-eyebrow-dot {
  background: #7dd3fc;
  box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.1);
}

.demo-title {
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  color: #f8fafc;
  max-width: 9ch;
  margin-bottom: 22px;
}

.demo-title-accent {
  display: inline;
  margin-top: 8px;
  background: linear-gradient(135deg, #dbeafe 0%, #f8fafc 42%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-lede {
  color: rgba(226, 232, 240, 0.74);
  font-size: 17px;
  line-height: 1.64;
  max-width: 44ch;
}

.demo-intro-meta {
  max-width: 560px;
  gap: 10px;
}

.demo-intro-meta-item {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.92);
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
}

.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: #ffffff;
}

.demo-intro-visual {
  position: relative;
  padding-top: 4px;
}

.hero-visual--product {
  position: relative;
  z-index: 1;
}

.hero-product-mock {
  transform: perspective(1600px) rotateY(-4deg) rotateX(1.2deg);
  transform-origin: center left;
  box-shadow: 0 30px 72px rgba(2, 6, 23, 0.24);
}

.hero-product-mock .mock-app {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.hero-product-mock .mock-app-chrome,
.hero-product-mock .mock-app-nav {
  background: rgba(248, 250, 252, 0.96);
}

.hero-product-mock .mock-url-bar,
.hero-product-mock .mock-nav-brand,
.hero-product-mock .mock-nav-tab,
.hero-product-mock .mock-back-link,
.hero-product-mock .mock-page-title {
  color: rgba(15, 23, 42, 0.72);
}

.hero-product-mock .mock-card {
  background: #ffffff;
}

.spb {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.76);
  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), #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), #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, #08101c 0%, #111827 100%);
  color: #e2e8f0;
}

.scene--dark::before {
  background: linear-gradient(90deg, #60a5fa, #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,
.security-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.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;
  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), #ffffff 24%);
}

.compare-card-grid {
  margin-top: 30px;
}

.compare-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  border-color: rgba(148, 163, 184, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

.compare-card--featured {
  background:
    radial-gradient(circle at top right, rgba(148, 163, 184, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
  transform: translateY(-4px);
}

.compare-card--featured:hover {
  transform: translateY(-8px);
}

.compare-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.compare-point-list {
  gap: 12px;
  font-size: 14px;
}

.compare-proof-chip {
  background: rgba(255, 255, 255, 0.82);
}

.pricing-card {
  padding: 20px 20px 22px;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: translateY(-10px);
}

.pricing-cta {
  min-height: 42px;
}

.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: #93c5fd;
}

.scene--dark .security-chip,
.scene--dark .logo-chip {
  background: rgba(255, 255, 255, 0.08);
  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);
}

@media (max-width: 1100px) {
  .topbar {
    background: rgba(250, 248, 244, 0.94);
  }

  .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 {
    padding: 22px;
    border-radius: 26px;
  }

  .demo-title {
    font-size: clamp(48px, 15vw, 72px);
    max-width: none;
  }

  .demo-lede {
    font-size: 16px;
  }

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

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

  .metric-number {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill::after {
    display: none;
  }

  .nav-link,
  .pill,
  .proof-dayone-item,
  .proof-point,
  .proof-fact-card,
  .pricing-card,
  .security-card,
  .compare-card,
  .hero-product-mock {
    transition: none;
    transform: none;
  }
}
