/* ── landing.css ───────────────────────────────────────────────
   Landing page for No Lost Orders — A+ design system.
   Extends dashboard tokens from pages.css.
   ────────────────────────────────────────────────────────────── */

/* ── Self-hosted fonts ── */

/* DM Serif Display — normal */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-serif-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* DM Serif Display — italic */
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-serif-display-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Source Sans 3 — variable weight */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/source-sans-3-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════════════════════ */

:root {
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Severity — matches app */
  --severity-critical: #b91c1c;
  --severity-high: #c2410c;
  --severity-medium: #475569;

  /* Layout */
  --lp-max: 1140px;
  --section-pad: 6rem;

  /* Radius system: 8 / 12 / 16 / 24 only */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Single border color */
  --lp-border: rgba(15, 23, 42, 0.08);
  --border-subtle: rgba(15, 23, 42, 0.07);

  /* Two-layer shadows */
  --sh-rest: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.03);
  --sh-lifted: 0 2px 8px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
  --sh-float: 0 4px 12px rgba(15, 23, 42, 0.07), 0 16px 48px rgba(15, 23, 42, 0.05);
  --sh-hero: 0 8px 20px rgba(15, 23, 42, 0.08), 0 24px 64px rgba(15, 23, 42, 0.06);
  --shadow-soft: var(--sh-rest);
  --shadow-lifted: var(--sh-lifted);

  /* Section backgrounds */
  --bg-white: #fefefe;
  --bg-cool: #f7faff;
  --bg-dark: #0f172a;
}


/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  min-height: 100vh;
  background: var(--bg-white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════
   CONTAINER
   ══════════════════════════════════════════════════════════════ */

.lp-container {
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  width: 100%;
}


/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .step-card,
.reveal.visible .category-card,
.reveal.visible .pricing-card {
  opacity: 0;
  transform: translateY(12px);
  animation: stagger-in 0.5s ease forwards;
}

.reveal.visible .step-card:nth-child(1),
.reveal.visible .category-card:nth-child(1),
.reveal.visible .pricing-card:nth-child(1) { animation-delay: 0.08s; }
.reveal.visible .step-card:nth-child(2),
.reveal.visible .category-card:nth-child(2),
.reveal.visible .pricing-card:nth-child(2) { animation-delay: 0.18s; }
.reveal.visible .step-card:nth-child(3),
.reveal.visible .category-card:nth-child(3),
.reveal.visible .pricing-card:nth-child(3) { animation-delay: 0.28s; }

@keyframes stagger-in {
  to { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.lp-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 760;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.lp-nav-brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.lp-nav-brand-wordmark {
  line-height: 1.05;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lp-nav-link {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.lp-nav-link:hover { color: var(--text); }

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.15s ease;
}

.lp-nav-cta:hover { background: var(--accent-hover); }

.lp-nav-cta--pending {
  cursor: default;
  border: 1px solid rgba(37, 99, 235, 0.35);
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT FRAME — the visual system for all UI embeds
   Chrome bar is SEPARATE from the iframe viewport.
   ══════════════════════════════════════════════════════════════ */

.product-frame {
  background: linear-gradient(180deg, #f4f5f7 0%, #ecedf0 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
}

.product-frame--hero {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 8px 20px rgba(15, 23, 42, 0.03);
}

.product-frame--compact {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.product-frame--on-dark {
  background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* Chrome bar — sits above viewport, never overlaps content */
.product-frame-chrome {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: linear-gradient(180deg, #f0f0f2 0%, #e6e6e8 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  gap: 7px;
}

.product-frame-chrome--dark {
  background: linear-gradient(180deg, #2a2a30 0%, #222228 100%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pf-dot--close { background: #ff5f57; }
.pf-dot--min { background: #febc2e; }
.pf-dot--max { background: #28c840; }

.pf-bar {
  flex: 1;
  height: 16px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-left: 10px;
  max-width: 300px;
}

.pf-bar--dark {
  background: rgba(255, 255, 255, 0.08);
}

/* Viewport — clips the iframe with subpixel-safe masking */
.product-frame-viewport {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom-left-radius: calc(var(--r-xl) - 1px);
  border-bottom-right-radius: calc(var(--r-xl) - 1px);
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1px;
  /* Inner stroke hides any remaining sub-pixel bleed */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.product-frame-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.94), inset 0 -1px 0 rgba(255, 255, 255, 0.98);
}

.product-frame-viewport iframe {
  margin: -1px;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.product-frame-caption {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.55;
}

.product-frame-caption strong {
  font-weight: 600;
  color: var(--text);
}

.product-frame-caption--dark {
  color: #9fb1c8;
}

.product-frame-caption--dark strong {
  color: #e2e8f0;
}

.frame-overlay-tag {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #27406b;
  background: rgba(247, 250, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.34);
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════════════
   IFRAME WINDOWS — crop + scale the live previews
   ══════════════════════════════════════════════════════════════ */

.iframe-window {
  position: relative;
  overflow: hidden;
}

.iframe-window iframe {
  position: absolute;
  left: 0;
  border: none;
  pointer-events: none;
  transform-origin: 0 0;
  width: 960px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Hero */
.iframe-window--hero-pro {
  height: 438px;
}

.iframe-window--hero-pro iframe {
  margin: 0;
  top: calc(-82px * 0.75);
  height: 900px;
  transform: scale(0.75);
}

.iframe-window--hero-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(320px 148px at 66% 52%, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0.08) 42%, rgba(96, 165, 250, 0) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.06) 100%);
}

/* Severity */
.iframe-window--severity {
  height: 430px;
}

.iframe-window--severity iframe {
  top: calc(-74px * 0.66);
  height: 900px;
  transform: scale(0.66);
}

/* Blocker */
.iframe-window--blocker {
  height: 368px;
}

.iframe-window--blocker iframe {
  top: calc(-184px * 0.94);
  height: 900px;
  transform: scale(0.94);
}

/* Scanning */
.iframe-window--scanning {
  height: 418px;
}

.iframe-window--scanning iframe {
  top: calc(-92px * 0.8);
  height: 900px;
  transform: scale(0.8);
}

/* Monitoring */
.iframe-window--monitoring {
  height: 384px;
}

.iframe-window--monitoring iframe {
  top: calc(0px * 0.792);
  height: 900px;
  transform: scale(0.792);
}


/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
}

.btn-primary--lg {
  font-size: 1.0625rem;
  padding: 0.9375rem 2rem;
  border-radius: var(--r-md);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary--pending {
  cursor: default;
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.btn-primary--plan {
  width: 100%;
  justify-content: center;
  cursor: default;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border: 1px solid var(--lp-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.25);
  background: #f8fbff;
  transform: translateY(-1px);
  box-shadow: var(--sh-rest);
}

.btn-ghost--plan {
  width: 100%;
  justify-content: center;
  cursor: default;
}


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
  padding: 5.1rem 0 5.2rem;
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}

.hero .lp-container {
  max-width: 1200px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(640px, 1.48fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-inner {
  max-width: 480px;
  padding-top: 0;
  min-height: 474px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 0.48rem;
  max-width: 13.2ch;
}

.hero-payoff {
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #2563eb;
  margin-bottom: 0.78rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: #2d3a4a;
  line-height: 1.6;
  margin-bottom: 1.02rem;
  max-width: 26rem;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.72rem;
  padding-top: 0;
  line-height: 1.3;
}

.hero-cta-block {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.hero-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  box-shadow: none;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.28rem 0.56rem;
  font-size: 0.75rem;
  font-weight: 650;
  color: #475569;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.86);
}

.hero-trust-item svg {
  width: 13px;
  height: 13px;
  color: #64748b;
  flex-shrink: 0;
}

/* Hero proof — product frame area with subtle glow */
.hero-proof {
  position: relative;
  padding-top: 0;
}

.hero-proof::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-proof .product-frame {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════════
   SECTION LAYOUT
   ══════════════════════════════════════════════════════════════ */

.lp-section {
  padding: var(--section-pad) 0;
}

.lp-section--white {
  background: var(--bg-white);
}

.lp-section--cool {
  background: var(--bg-cool);
}

.lp-section--steps {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-section--checks {
  padding-top: 5rem;
  padding-bottom: 4.1rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-section--fit {
  padding-top: 3.25rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.lp-section--dark {
  background: var(--bg-dark);
  color: #e2e8f0;
}

.lp-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.lp-section-label--dark {
  color: #60a5fa;
}

.lp-section-heading {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.12;
}

.lp-section--dark .lp-section-heading {
  color: #f8fafc;
}

.lp-section--dark .lp-section-heading em {
  font-style: italic;
  color: #93c5fd;
}

.lp-section-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 2.5rem;
}


/* ══════════════════════════════════════════════════════════════
   SEVERITY LEGEND
   ══════════════════════════════════════════════════════════════ */

.issues-proof-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(520px, 1.06fr);
  gap: 2rem;
  align-items: center;
}

.lp-section--report {
  padding-bottom: 4.2rem;
  border-bottom: 1px solid #e5e7eb;
}

.lp-section--report .lp-section-heading {
  max-width: 640px;
}

.report-heading-tail {
  white-space: nowrap;
}

.lp-section--report .lp-section-lead {
  margin-bottom: 0.72rem;
  max-width: 640px;
}

.report-lead-note {
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  font-size: 0.89rem;
  font-weight: 530;
  color: #475569;
  margin: 0.75rem 0 0;
  line-height: 1.54;
  max-width: 40ch;
  padding: 0.56rem 0.68rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  background: rgba(241, 245, 249, 0.62);
}

.report-note-icon {
  width: 16px;
  height: 16px;
  color: #64748b;
  flex-shrink: 0;
  margin-top: 0.08rem;
}

.report-note-icon svg {
  width: 100%;
  height: 100%;
}

.severity-legend {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  min-height: 0;
  transform: translateY(-16px);
}

.severity-legend-item {
  background: #fdfefe;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--r-md);
  padding: 1.04rem 1.16rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.severity-legend-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-lifted);
}

.severity-legend-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 750;
  margin-bottom: 0.25rem;
}

.severity-legend-item p {
  margin: 0;
  font-size: 0.875rem;
  color: #5d6b7d;
  line-height: 1.5;
}

.severity-legend-item--critical {
  border-color: rgba(220, 38, 38, 0.2);
  border-left: 3px solid rgba(220, 38, 38, 1);
  background: rgba(220, 38, 38, 0.05);
}

.severity-legend-item--high {
  border-color: rgba(234, 88, 12, 0.2);
  border-left: 3px solid rgba(234, 88, 12, 1);
  background: rgba(234, 88, 12, 0.05);
}

.severity-legend-item--medium {
  border-color: rgba(71, 85, 105, 0.2);
  border-left: 3px solid rgba(71, 85, 105, 1);
  background: rgba(71, 85, 105, 0.05);
}

.severity-label { font-weight: 700; }
.severity-label--critical { color: var(--severity-critical); }
.severity-label--high { color: var(--severity-high); }
.severity-label--medium { color: var(--severity-medium); }

.lp-value-line {
  font-weight: 600;
  color: var(--text);
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════
   BLOCKER NARRATIVE
   ══════════════════════════════════════════════════════════════ */

.blocker-narrative {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 2.5rem;
  align-items: center;
}

.blocker-narrative-text {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
  align-self: center;
}

.blocker-narrative-text p {
  margin-bottom: 0.75rem;
}

.blocker-scenario {
  font-size: 1.125rem;
  color: var(--text);
}

.blocker-contrast {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

.blocker-contrast-item {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0.875rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--lp-border);
}

.blocker-contrast-item--customer {
  border-color: rgba(220, 38, 38, 0.2);
  border-left: 4px solid rgba(220, 38, 38, 1);
  background: rgba(220, 38, 38, 0.05);
}

.blocker-contrast-item--app {
  border-color: rgba(37, 99, 235, 0.2);
  border-left: 4px solid rgba(37, 99, 235, 1);
  background: rgba(37, 99, 235, 0.05);
}

.blocker-contrast-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b8da3;
  margin-bottom: 0.3rem;
}

.blocker-contrast-item strong {
  color: var(--accent);
  font-weight: 700;
}

.blocker-action-arrow {
  display: inline-block;
  font-weight: 700;
  font-size: 1.02em;
  color: #1d4ed8;
  transform: translateY(-0.02em);
}

.blocker-timeline-line {
  margin-top: 1.25rem;
  font-size: 0.925rem;
  color: #556679;
  line-height: 1.7;
}

.blocker-timeline-step--alert { color: var(--severity-critical); }
.blocker-timeline-step--fix { color: var(--accent); font-weight: 700; }


/* ══════════════════════════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════════════════════════ */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.step-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-rest);
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 196px;
  min-height: 196px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lifted);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.42rem;
  line-height: 1.3;
  min-height: 1.38em;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.steps-trust-strip {
  justify-content: center;
  width: fit-content;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}


/* ══════════════════════════════════════════════════════════════
   CATEGORY CARDS
   ══════════════════════════════════════════════════════════════ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.category-card {
  background: var(--bg-cool);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--sh-rest);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lifted);
}

.category-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.category-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.category-micro {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.category-examples-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: auto 0 0.44rem;
}

.category-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  margin-top: 0;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5rem;
  font-size: 0.625rem;
  font-weight: 640;
  line-height: 1.2;
  color: #5b6a7d;
  background: rgba(15, 23, 42, 0.055);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 0.19rem 0.5rem;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.005em;
}

.category-closing {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.48rem;
  margin: 1.15rem auto 0;
  padding: 0.42rem 0.8rem;
  font-size: 0.8125rem;
  color: #3b4e67;
  font-weight: 620;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.68);
  line-height: 1.45;
}

.category-closing-icon {
  display: inline-flex;
  width: 0.9rem;
  height: 0.9rem;
  color: #2563eb;
  flex-shrink: 0;
}

.category-closing-icon svg {
  width: 100%;
  height: 100%;
}


/* ══════════════════════════════════════════════════════════════
   DARK SECTION — Monitoring
   ══════════════════════════════════════════════════════════════ */

.monitoring-subheading {
  font-size: 1.0625rem;
  color: #dbeafe;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 2.15rem;
}

/* Rail timeline — horizontal track with 4 nodes */
.rail-timeline {
  --rail-size: 2px;
  --dot-size: 12px;
  --rail-inset: calc(100% / 8);
  position: relative;
  max-width: 760px;
  margin: 0 auto 0.8rem;
  padding-top: 0;
}

.rail-track {
  position: absolute;
  top: var(--rail-center);
  left: var(--rail-inset);
  right: var(--rail-inset);
  height: var(--rail-size);
  transform: translateY(-50%);
  background: rgba(124, 164, 211, 0.28);
  border-radius: 999px;
  overflow: hidden;
}

.rail-track-fill {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 100%;
}

.rail-track-segment {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.rail-track-segment--brand {
  background: linear-gradient(90deg, #72acec 0%, #69a3e6 100%);
}

.rail-track-segment--neutral {
  background: linear-gradient(90deg, #6e9fd8 0%, #678fc1 100%);
}

.rail-track-segment--alert {
  background: #ef4444;
}

.rail-animate .rail-track-segment {
  transform: scaleX(1);
}

.rail-animate .rail-track-segment:nth-child(2) {
  transition-delay: 0.17s;
}

.rail-animate .rail-track-segment:nth-child(3) {
  transition-delay: 0.34s;
}

.rail-dots {
  --rail-center: 20px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 40px;
  margin-bottom: 0.62rem;
}

.rail-point {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.36rem;
}

.rail-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.rail-node-dot {
  position: absolute;
  left: 50%;
  top: var(--rail-center);
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: background 0.3s ease 0.2s, border-color 0.3s ease 0.2s, box-shadow 0.3s ease 0.2s;
}

.rail-animate .rail-point--change .rail-node-dot {
  background: #72a3db;
  border-color: #72a3db;
  box-shadow: 0 0 8px rgba(114, 163, 219, 0.4);
  transition-delay: 0s;
}

.rail-animate .rail-point--scan .rail-node-dot {
  background: #8ebef1;
  border-color: #8ebef1;
  box-shadow: 0 0 8px rgba(142, 190, 241, 0.42);
  transition-delay: 0.2s;
}

.rail-animate .rail-point--alert .rail-node-dot {
  background: #ef4444;
  border-color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
  transition-delay: 0.4s;
}

.rail-animate .rail-point--fix .rail-node-dot {
  background: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
  transition-delay: 0.6s;
}

/* Pulse once on the alert node after animation */
.rail-animate .rail-point--alert .rail-node-dot {
  animation: rail-pulse 1s ease-out 1.05s 1;
}

@keyframes rail-pulse {
  0% { box-shadow: 0 0 12px rgba(239, 68, 68, 0.45); }
  50% { box-shadow: 0 0 26px rgba(239, 68, 68, 0.72); }
  100% { box-shadow: 0 0 12px rgba(239, 68, 68, 0.45); }
}

.rail-node-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #e7effb;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s ease 0.2s;
}

.rail-animate .rail-node-label {
  color: #f8fafc;
}

/* Monitoring container — grouped tabs */
.monitoring-cinematic {
  position: relative;
  margin-bottom: 1.75rem;
}

.monitoring-cinematic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(760px, 92vw);
  height: 360px;
  transform: translate(-50%, -50%) scale(0.98);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.17) 0%, rgba(96, 165, 250, 0.09) 26%, rgba(15, 23, 42, 0) 72%);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.reveal.visible .monitoring-cinematic::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rail-node-copy {
  font-size: 0.89rem;
  color: #e0e9f7;
  line-height: 1.44;
  max-width: 13ch;
}

.monitoring-shell {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  background: rgba(29, 44, 66, 0.82);
  border: 1px solid rgba(184, 210, 244, 0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 8, 22, 0.3), inset 0 1px 0 rgba(203, 224, 252, 0.08);
}

.monitoring-features {
  padding: 0.18rem 0;
  display: block;
}

.monitoring-feature {
  position: relative;
  padding: 1.12rem 1.28rem 1.08rem;
}

.monitoring-feature + .monitoring-feature {
  border-top: 1px solid rgba(184, 210, 244, 0.048);
}

.monitoring-feature-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: #f4f8ff;
  font-weight: 700;
  font-size: 0.93rem;
  margin-bottom: 0.26rem;
}

.monitoring-feature p {
  margin: 0;
  font-size: 0.875rem;
  color: #dbe6f6;
  line-height: 1.55;
  padding-left: 1.72rem;
}

.monitoring-tab-icon {
  width: 17px;
  height: 17px;
  color: #9bc8ff;
  flex-shrink: 0;
}

.monitoring-punchline {
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  color: #93c5fd;
  text-align: center;
  max-width: 720px;
  margin: 1.05rem auto 0.88rem;
  line-height: 1.5;
}

.monitoring-punchline::before {
  content: none;
}


/* ══════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════ */

.pricing-roi-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.42rem 1.52rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-left: 4px solid rgba(59, 130, 246, 1);
  border-radius: var(--r-md);
  max-width: none;
  box-shadow: var(--sh-lifted), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.pricing-roi-icon {
  width: 22px;
  height: 22px;
  color: #1d4ed8;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.pricing-roi-card p {
  font-size: 0.875rem;
  font-weight: 560;
  color: #1e293b;
  line-height: 1.58;
  margin: 0;
}

.pricing-roi-copy strong {
  display: block;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 760;
  margin-bottom: 0.24rem;
}

/* Free vs Pro plan cards */
.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.pricing-plan {
  background: var(--bg-cool);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-plan--featured {
  background: #fafcff;
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 0 1px var(--accent), var(--sh-lifted);
}

.pricing-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  padding: 0.1875rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 0 2px #fff;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.pricing-plan-promise {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pricing-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.pricing-plan-features li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}

.pricing-plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
}

.pricing-plan-cta {
  margin-top: auto;
  min-height: 4.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pricing-plan-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 650;
  color: #64748b;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--r-sm);
  background: rgba(248, 250, 252, 0.92);
}

.pricing-plan-note {
  margin: 0.56rem 0 0;
  font-size: 0.75rem;
  font-weight: 560;
  color: #64748b;
  text-align: center;
}

/* Variant explainer card */
.pricing-variant-explainer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  background: rgba(248, 250, 252, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--r-md);
  margin: 0 auto 1.2rem;
  max-width: 860px;
}

#pricing {
  padding-top: 5rem;
  border-top: 1px solid var(--lp-border);
}

#pricing .lp-section-lead {
  margin-bottom: 2.5rem;
}

.pricing-variant-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-variant-explainer strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.pricing-variant-explainer p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Tier cards */
.pricing-grid-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  background: #fbfcff;
  border: 1px solid var(--lp-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--sh-rest);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lifted);
}

.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.38), 0 10px 24px rgba(15, 23, 42, 0.04);
  background: #f7fbff;
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  padding: 0.1875rem 0.625rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 0 2px #fff;
}

.pricing-tier {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--faint);
  margin-bottom: 0.375rem;
}

.pricing-card--featured .pricing-tier {
  color: var(--accent);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1.1;
}

.pricing-price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--faint);
  font-weight: 400;
}


/* ══════════════════════════════════════════════════════════════
   FIT CARDS
   ══════════════════════════════════════════════════════════════ */

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
  margin-top: 0.95rem;
}

.fit-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-rest);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 100%;
}

.fit-card h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card ul li {
  font-size: 0.9375rem;
  color: #1f2937;
  font-weight: 560;
  line-height: 1.6;
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
}

.fit-card--good {
  border-color: rgba(22, 163, 74, 0.2);
  border-left: 3px solid rgba(22, 163, 74, 1);
  background: rgba(22, 163, 74, 0.05);
}

.pricing-card:not(.pricing-card--featured) {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 16px rgba(15, 23, 42, 0.03);
}

.fit-card--good ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.fit-card--less {
  border-color: rgba(217, 119, 6, 0.2);
  border-left: 3px solid rgba(217, 119, 6, 1);
  background: rgba(217, 119, 6, 0.05);
  justify-content: flex-start;
}

.fit-card--less ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #b45309;
  font-weight: 600;
}


/* ══════════════════════════════════════════════════════════════
   FAQ — two-column layout with sidebar
   ══════════════════════════════════════════════════════════════ */

.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;
  min-height: 100%;
  height: 100%;
}

.faq-support-card {
  background: var(--bg-cool);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-md);
  padding: 1.25rem;
}

.faq-support-card strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.faq-support-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.faq-support-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.faq-support-link:hover { text-decoration: underline; }

.faq-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
  padding: 1.25rem;
  background: rgba(37, 99, 235, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--r-md);
}

.faq-trust-badge-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.faq-trust-badge strong {
  font-size: 0.8125rem;
  color: var(--text);
}

.faq-trust-badge p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.faq-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.faq-sidebar-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
}

.faq-sidebar-links a:hover {
  color: var(--accent);
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--lp-border);
  border-radius: var(--r-md);
  background: #fff;
  padding: 0 1.5rem;
  box-shadow: var(--sh-rest);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item[open] {
  background: #f3f7ff;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05), 0 8px 20px rgba(37, 99, 235, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  padding: 1.125rem 0;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--faint);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
}

.faq-answer {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 0 1.125rem;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
}

.faq-answer a:hover { text-decoration: underline; }

.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

.lp-section--faq {
  border-bottom: 1px solid var(--lp-border);
}


/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */

.final-cta {
  text-align: center;
  padding: 4.2rem 0 3.05rem;
  background:
    radial-gradient(920px 420px at 50% -18%, rgba(96, 165, 250, 0.24) 0%, rgba(96, 165, 250, 0) 72%),
    linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

.final-cta .lp-section-heading {
  max-width: 660px;
  color: #f8fafc;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.82rem;
  line-height: 1.14;
}

.final-cta-body {
  font-size: 1.02rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.62;
}

.final-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.72rem;
}

.final-cta-button {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  box-shadow: none;
}

.final-cta-reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.final-trust-item {
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.72);
  border-color: rgba(148, 163, 184, 0.28);
}

.final-trust-item svg {
  color: #93c5fd;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.lp-footer {
  background: var(--bg-cool);
  border-top: 1px solid var(--lp-border);
  padding: 2rem 0;
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.lp-footer-links {
  display: flex;
  align-items: center;
}

.lp-footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
}

.lp-footer-links a:hover { color: var(--accent); }

.lp-footer-sep {
  color: var(--lp-border);
  margin: 0 0.75rem;
  font-size: 0.75rem;
}


@media (max-width: 1060px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .hero-inner {
    max-width: 100%;
    min-height: auto;
  }

  .hero-proof {
    padding-top: 0;
  }

  .hero-proof::before {
    display: none;
  }

  .iframe-window--hero-pro {
    height: 396px;
  }

  .iframe-window--hero-pro iframe {
    top: calc(-72px * 0.7);
    transform: scale(0.7);
  }

  .issues-proof-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .severity-legend {
    min-height: auto;
    justify-content: flex-start;
    transform: none;
  }

  .blocker-narrative {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rail-timeline {
    max-width: 100%;
  }

  .rail-node-copy {
    max-width: 13ch;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    position: static;
  }

  .faq-support-card,
  .faq-trust-badge {
    flex: 1;
    min-width: 200px;
  }

  .faq-sidebar-links {
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .iframe-window--severity {
    height: 404px;
  }

  .iframe-window--severity iframe {
    top: calc(-78px * 0.64);
    transform: scale(0.64);
  }

  .pricing-plans {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  :root {
    --section-pad: 3.5rem;
  }

  .lp-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-payoff {
    font-size: 1.03rem;
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-cta-block {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-primary--lg,
  .btn-ghost,
  .hero-cta {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero-trust-strip {
    justify-content: center;
  }

  .lp-section-heading {
    font-size: 1.5rem;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: auto;
  }

  .lp-nav-links {
    gap: 0.75rem;
  }

  .lp-nav-link { display: none; }

  .causal-chain {
    flex-direction: column;
    align-items: stretch;
  }

  .causal-step {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
    min-width: 0;
  }

  .causal-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .monitoring-cinematic::before {
    top: 58%;
    height: 320px;
  }

  .rail-node-copy {
    display: none;
  }

  .monitoring-shell {
    max-width: 100%;
  }

  .faq-sidebar {
    flex-direction: column;
  }

  .faq-support-card,
  .faq-trust-badge {
    min-width: 0;
  }

  .lp-footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .final-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-button {
    width: 100%;
    justify-content: center;
  }

  .blocker-timeline-line {
    text-align: center;
  }

  .product-frame--compact {
    max-width: 100%;
  }

  /* Iframe scaling for small screens */
  .iframe-window--hero-pro {
    height: 282px;
  }

  .iframe-window--hero-pro iframe {
    top: calc(-66px * 0.5);
    transform: scale(0.5);
  }

  .iframe-window--severity {
    height: 248px;
  }

  .iframe-window--severity iframe {
    top: calc(-104px * 0.48);
    transform: scale(0.48);
  }

  .iframe-window--blocker {
    height: 204px;
  }

  .iframe-window--blocker iframe {
    top: calc(-204px * 0.62);
    transform: scale(0.62);
  }

  .iframe-window--scanning {
    height: 224px;
  }

  .iframe-window--scanning iframe {
    top: calc(-96px * 0.45);
    transform: scale(0.45);
  }

  .iframe-window--monitoring {
    height: 206px;
  }

  .iframe-window--monitoring iframe {
    top: calc(0px * 0.41);
    transform: scale(0.41);
  }
}
