/* Ported from docs/landing-full-preview.html */

/* Landing is full-scale marketing — not the 80% app UI zoom in style.css */
html:has(.landing-page) {
  zoom: 1;
}

.landing-page {
  background: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 88px;
}

    :root {
      --navy: #1F4D8F;
      --light-blue: #06B6D4;
      --text-primary: #0f172a;
      --text-secondary: #475569;
      --bg-light: #f8fafc;
      --bg-slate: #f1f5f9;
      --bg-navy-wash: #eef2f9;
      --section-border: #e8edf4;
      --label-size: 0.6875rem;
      --label-weight: 800;
      --label-tracking: 0.06em;
      --text-body: 1rem;
      --text-body-em: 1.0625rem;
      --text-lead: 1.125rem;
    }
    * { box-sizing: border-box; }
    
    
    
    .landing-section {
      position: relative;
      padding: 72px 20px 80px;
      border-top: none;
    }
    .landing-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(31, 77, 143, 0.14) 35%, rgba(6, 182, 212, 0.22) 65%, transparent 100%);
      pointer-events: none;
    }
    .landing-section--white {
      background: #ffffff;
    }
    .landing-section--muted {
      background: var(--bg-slate);
    }
    .landing-section--solution {
      background: linear-gradient(180deg, var(--bg-slate) 0%, #e8edf5 100%);
    }
    .landing-section--solution::before {
      background: linear-gradient(90deg, transparent 8%, var(--navy) 42%, var(--light-blue) 58%, transparent 92%);
      opacity: 0.22;
    }
    .benefits-stats-section {
      background: linear-gradient(180deg, #ffffff 0%, var(--bg-navy-wash) 10%, var(--bg-navy-wash) 90%, var(--bg-light) 100%);
    }
    .benefits-stats-section::before {
      background: linear-gradient(90deg, transparent 10%, var(--light-blue) 45%, var(--navy) 55%, transparent 90%);
      opacity: 0.24;
    }
    .pricing-section.landing-section {
      padding-bottom: 96px;
      background: #ffffff;
      border-top: 1px solid var(--section-border);
    }
    .pricing-section.landing-section::before {
      background: linear-gradient(90deg, transparent 20%, var(--navy) 50%, transparent 80%);
      opacity: 0.35;
    }
    #contact.landing-section { padding-top: 96px; }
    .integration-description {
      color: var(--text-secondary);
      font-size: 1.0625rem;
      line-height: 1.55;
      margin: 0 0 14px;
    }
    .pricing-features li {
      font-size: 1rem;
      line-height: 1.45;
      color: var(--text-secondary);
    }
    .landing-header {
      background: #ffffff;
      padding: 10px 16px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 8px 12px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      max-width: 100%;
      z-index: 200;
      box-shadow: none;
      box-sizing: border-box;
    }
    .landing-logo-section {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      justify-self: start;
      grid-column: 1;
      min-width: 0;
    }
    .landing-nav-row {
      grid-column: 2;
      justify-self: center;
      min-width: 0;
    }
    .nav-auth {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      justify-self: end;
      grid-column: 3;
      position: relative;
      z-index: 2;
    }
    .landing-logo { height: 72px; width: auto; max-width: none; }
    
    .nav-pill-track {
      display: inline-flex;
      align-items: center;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      border-radius: 999px;
      padding: 5px;
      gap: 3px;
      overflow-x: auto;
      max-width: 100%;
      scrollbar-width: none;
    }
    .nav-pill-track::-webkit-scrollbar {
      display: none;
    }
    .nav-pill-track a {
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-decoration: none;
      white-space: nowrap;
    }
    .nav-pill-track a.is-active {
      background: white;
      color: var(--navy);
      box-shadow: 0 1px 4px rgba(15,23,42,0.08);
    }
    .btn-nav-login, .btn-nav-signup {
      padding: 7px 14px;
      border-radius: 6px;
      font-size: 0.8125rem;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-nav-login { border: 2px solid var(--navy); color: var(--navy); background: white; }
    .btn-nav-signup { background: var(--navy); color: white; border: 2px solid var(--navy); }
    .hero {
      padding: 32px 20px 48px;
      background: #ffffff;
      box-sizing: border-box;
    }
    .hero-inner {
      max-width: 1380px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: center;
    }
    @media (min-width: 900px) {
      .hero {
        padding: 40px 24px 52px;
        min-height: calc(100svh - 108px);
        min-height: calc(100dvh - 108px);
        display: flex;
        align-items: center;
      }
      .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
        gap: 40px 48px;
      }
      .hero-copy { text-align: left; }
      .hero-copy .hero-badge { margin-left: 0; }
      .hero-copy .hero-eyebrow { margin-left: 0; }
      .hero-copy h1 { margin-left: 0; margin-right: 0; max-width: none; }
      .hero-copy .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        text-align: left;
      }
      .hero--problem .hero-copy {
        grid-column: 1;
        position: relative;
        z-index: 2;
      }
      .hero--problem .hero-visual {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
      }
      .hero-stats { justify-content: flex-start; }
      .hero-cta { justify-content: flex-start; }
      .hero-trust { text-align: left; }
      .hero-bridge { text-align: left; }
      .hero-stats-source { text-align: left; }
      .hero-points { text-align: left; }
    }
    .hero-copy { text-align: center; }
    .hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, rgba(31, 77, 143, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
      color: var(--navy);
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 700;
      margin-bottom: 24px;
      border: 2px solid var(--light-blue);
    }
    .hero h1 {
      font-size: clamp(1.625rem, 3.2vw, 2.25rem);
      font-weight: 800;
      margin: 0 0 16px;
      color: #0f172a;
      line-height: 1.25;
      letter-spacing: -0.02em;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero h1 .highlight { color: var(--navy); }
    .hero-subtitle {
      max-width: 760px;
      margin: 0 auto 28px;
      color: var(--text-secondary);
      line-height: 1.55;
      font-size: var(--text-lead);
    }
    .hero-capabilities {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px 16px;
      max-width: 800px;
      margin: 0 auto 32px;
    }
    .hero-capability {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
    }
    .hero-capability-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }
    .hero-capability-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--navy);
      stroke-width: 1.75;
    }
    .hero-capability-label {
      font-family: 'Barlow Condensed', 'Inter', Arial, sans-serif;
      font-size: 1.0625rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--navy);
      line-height: 1.2;
    }
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin: 0 0 22px;
    }
    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 10px 14px;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      background: #f8fafc;
      min-width: 88px;
    }
    .hero-stat strong {
      font-size: 1.125rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
    }
    .hero-stat span {
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .hero-cta {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0 0 24px;
    }
    .btn-hero {
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-primary-hero {
      background: var(--navy);
      color: #fff;
      border: 2px solid var(--navy);
      box-shadow: 0 4px 14px rgba(31, 77, 143, 0.25);
    }
    .btn-secondary-hero {
      background: #fff;
      color: var(--navy);
      border: 2px solid var(--navy);
    }
    .hero--problem {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 72%, #f1f5f9 100%);
      padding-bottom: 56px;
    }
    .hero--problem::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 4%, #cbd5e1 50%, transparent 96%);
    }
    .hero-eyebrow {
      display: inline-block;
      margin: 0 0 12px;
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: #c2410c;
    }
    .hero-stats-duo {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 0 0 8px;
    }
    .hero-stats-trio {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin: 0 0 8px;
    }
    @media (max-width: 720px) {
      .hero-stats-trio {
        grid-template-columns: 1fr;
      }
    }
    .hero-stat-card {
      padding: 14px 12px;
      border: 1px solid #fecaca;
      border-radius: 10px;
      background: #fff;
      text-align: center;
    }
    .hero-stat-card strong {
      display: block;
      font-size: clamp(1.25rem, 2.5vw, 1.5rem);
      font-weight: 800;
      color: #b91c1c;
      line-height: 1.1;
      margin-bottom: 5px;
    }
    .hero-stat-card span {
      display: block;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text-secondary);
      line-height: 1.35;
    }
    .hero-stats-source {
      margin: 0 0 20px;
      font-size: 0.6875rem;
      color: #94a3b8;
      text-align: left;
    }
    .hero-points {
      list-style: none;
      margin: 0 0 22px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: left;
    }
    .hero-points li {
      position: relative;
      padding-left: 18px;
      font-size: var(--text-body);
      line-height: 1.5;
      color: var(--text-secondary);
    }
    .hero-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--navy);
    }
    .hero-bridge {
      margin: 0 0 24px;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid rgba(6, 182, 212, 0.35);
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(31, 77, 143, 0.06));
      text-align: left;
    }
    .hero-bridge-tag {
      display: inline-block;
      margin-bottom: 6px;
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: var(--navy);
    }
    .hero-bridge p {
      margin: 0;
      font-size: var(--text-body-em);
      line-height: 1.5;
      color: #0f172a;
    }
    .hero-outcomes {
      min-width: 0;
      padding: 22px 20px;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      background: #fff;
      box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    }
    .hero-outcomes-title {
      margin: 0 0 14px;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy);
      text-align: center;
    }
    .hero-outcome {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid #f1f5f9;
    }
    .hero-outcome:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .hero-outcome:first-of-type { padding-top: 0; }
    .hero-outcome-icon {
      flex: 0 0 36px;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(31, 77, 143, 0.12), rgba(6, 182, 212, 0.15));
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }
    .hero-outcome-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
    }
    .hero-outcome strong {
      display: block;
      font-size: 0.9375rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 3px;
    }
    .hero-outcome span {
      display: block;
      font-size: 0.8125rem;
      color: var(--text-secondary);
      line-height: 1.45;
    }
    .hero-trust {
      margin: 0;
      font-size: var(--text-body);
      color: var(--text-secondary);
      text-align: center;
    }
    .hero-visual {
      min-width: 0;
      position: relative;
    }
    .hero-visual-aura {
      position: absolute;
      inset: -12% -8% -8%;
      background:
        radial-gradient(ellipse 70% 55% at 30% 40%, rgba(6, 182, 212, 0.22), transparent 65%),
        radial-gradient(ellipse 60% 50% at 75% 65%, rgba(31, 77, 143, 0.18), transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-shot {
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(15, 23, 42, 0.04),
        0 0 80px rgba(6, 182, 212, 0.08);
      line-height: 0;
      position: relative;
      z-index: 1;
    }
    .hero-shot--graphic { line-height: normal; }
    .hero-shot img {
      display: block;
      width: 100%;
      height: auto;
    }
    .hero-graphic {
      position: relative;
      background: linear-gradient(165deg, #0f2744 0%, #163a6f 38%, #1a4478 100%);
      color: #fff;
      font-size: 0.6875rem;
      overflow: hidden;
    }
    .hero-graphic::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.35), transparent 42%),
        radial-gradient(circle at 10% 90%, rgba(249, 115, 22, 0.15), transparent 38%);
      pointer-events: none;
    }
    .hero-graphic-chrome {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: rgba(0, 0, 0, 0.22);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(6px);
    }
    .hero-graphic-dots {
      display: flex;
      gap: 5px;
    }
    .hero-graphic-dots i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      font-style: normal;
    }
    .hero-graphic-dots i:nth-child(1) { background: #f87171; }
    .hero-graphic-dots i:nth-child(2) { background: #fbbf24; }
    .hero-graphic-dots i:nth-child(3) { background: #4ade80; }
    .hero-graphic-title {
      flex: 1;
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
    }
    .hero-graphic-live {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 3px 9px;
      border-radius: 20px;
      background: rgba(74, 222, 128, 0.15);
      border: 1px solid rgba(74, 222, 128, 0.35);
      color: #bbf7d0;
      font-size: 0.5625rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .hero-graphic-live::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 8px #4ade80;
      animation: pulse 1.5s ease-in-out infinite;
    }
    .hero-graphic-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 0;
      min-height: 320px;
    }
    .hero-graphic-rail {
      padding: 12px 8px;
      background: rgba(0, 0, 0, 0.18);
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero-graphic-rail-label {
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      margin-bottom: 2px;
    }
    .hero-graphic-src {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 8px 4px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hero-graphic-src-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.5625rem;
      font-weight: 800;
      color: #fff;
    }
    .hero-graphic-src-icon--id { background: linear-gradient(135deg, #0078d4, #50a0ff); }
    .hero-graphic-src-icon--pay { background: linear-gradient(135deg, #0070ba, #009cde); }
    .hero-graphic-src-icon--mdm { background: linear-gradient(135deg, #5c2d91, #8764b8); }
    .hero-graphic-src span {
      font-size: var(--label-size);
      font-weight: 600;
      color: rgba(255, 255, 255, 0.75);
    }
    .hero-graphic-src--pulse {
      border-color: rgba(6, 182, 212, 0.5);
      box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
    }
    .hero-graphic-main {
      padding: 12px 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .hero-graphic-panels {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 8px;
    }
    .hero-graphic-panel {
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.97);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 10px;
      color: #0f172a;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    .hero-graphic-panel-label {
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 8px;
    }
    .hero-graphic-spark {
      width: 100%;
      height: 56px;
    }
    .hero-graphic-spark-line {
      fill: none;
      stroke: url(#heroSparkGrad);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 220;
      stroke-dashoffset: 220;
      animation: hero-spark-draw 2.2s ease forwards;
    }
    .hero-graphic-spark-fill {
      fill: url(#heroSparkFill);
      opacity: 0;
      animation: hero-fill-in 1s ease 1.2s forwards;
    }
    @keyframes hero-spark-draw {
      to { stroke-dashoffset: 0; }
    }
    @keyframes hero-fill-in {
      to { opacity: 1; }
    }
    .hero-graphic-spark-meta {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-top: 4px;
    }
    .hero-graphic-spark-meta strong {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }
    .hero-graphic-spark-meta span {
      font-size: 0.5625rem;
      font-weight: 700;
      color: #16a34a;
    }
    .hero-graphic-donut {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-graphic-donut svg {
      width: 72px;
      height: 72px;
      flex: 0 0 72px;
      transform: rotate(-90deg);
    }
    .hero-graphic-donut-ring {
      fill: none;
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .hero-graphic-donut-ring--track {
      stroke: #e2e8f0;
    }
    .hero-graphic-donut-legend {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .hero-graphic-donut-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: var(--label-size);
      font-weight: 600;
      color: #475569;
      line-height: 1.25;
    }
    .hero-graphic-donut-item i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      font-style: normal;
      flex: 0 0 6px;
    }
    .hero-graphic-alerts {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .hero-graphic-alert {
      position: relative;
      display: grid;
      grid-template-columns: 4px 1fr auto;
      gap: 8px;
      align-items: center;
      padding: 8px 10px 8px 0;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #0f172a;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .hero-graphic-alert-bar {
      align-self: stretch;
      border-radius: 8px 0 0 8px;
      margin: -8px 0 -8px -0px;
    }
    .hero-graphic-alert-bar--crit { background: linear-gradient(180deg, #ef4444, #dc2626); }
    .hero-graphic-alert-bar--high { background: linear-gradient(180deg, #f97316, #ea580c); }
    .hero-graphic-alert-bar--med { background: linear-gradient(180deg, #eab308, #ca8a04); }
    .hero-graphic-alert-body strong {
      display: block;
      font-size: 0.625rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }
    .hero-graphic-alert-body span {
      display: block;
      font-size: 0.5rem;
      color: #64748b;
      margin-top: 2px;
    }
    .hero-graphic-alert-time {
      font-size: 0.5rem;
      font-weight: 700;
      color: #94a3b8;
      white-space: nowrap;
    }
    .hero-graphic-alert--featured {
      border-color: rgba(6, 182, 212, 0.45);
      box-shadow:
        0 0 0 1px rgba(6, 182, 212, 0.2),
        0 4px 20px rgba(6, 182, 212, 0.2);
      animation: hero-alert-glow 2.5s ease-in-out infinite;
    }
    @keyframes hero-alert-glow {
      0%, 100% { box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.2), 0 4px 16px rgba(6, 182, 212, 0.15); }
      50% { box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.45), 0 4px 24px rgba(6, 182, 212, 0.35); }
    }
    .hero-graphic-toast {
      position: absolute;
      z-index: 5;
      right: 12px;
      bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
      color: #0f172a;
      animation: hero-toast-in 0.8s ease 1.5s both;
    }
    @keyframes hero-toast-in {
      from { opacity: 0; transform: translateY(10px) scale(0.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .hero-graphic-toast-icon {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      background: linear-gradient(135deg, #4a154b, #611f69);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.5625rem;
      font-weight: 900;
    }
    .hero-graphic-toast-text strong {
      display: block;
      font-size: 0.5625rem;
      font-weight: 800;
      color: var(--navy);
    }
    .hero-graphic-toast-text span {
      font-size: 0.5rem;
      color: #64748b;
    }
    .hero-graphic-flow {
      position: absolute;
      z-index: 0;
      right: 8px;
      top: 48px;
      width: 120px;
      height: 80px;
      opacity: 0.35;
      pointer-events: none;
    }
    @media (max-width: 480px) {
      .hero-graphic-layout { grid-template-columns: 64px 1fr; min-height: 280px; }
      .hero-graphic-panels { grid-template-columns: 1fr; }
    }
    .hero-shot-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid #e2e8f0;
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--navy);
      box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
      line-height: normal;
    }
    .hero-shot-badge .live-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
    }
    .hero-shot-caption {
      margin: 0;
      padding: 8px 12px;
      font-size: 0.6875rem;
      color: #94a3b8;
      text-align: center;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      line-height: normal;
    }
    .section-label {
      display: inline-block;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--light-blue);
      margin-bottom: 8px;
    }
    .container { max-width: 1380px; margin: 0 auto; padding: 0 24px; }
    .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 28px;
    }
    .section-header-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--navy) 0%, #2a5fa8 55%, var(--light-blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      box-shadow: 0 6px 20px rgba(31, 77, 143, 0.22);
    }
    .section-header-icon svg {
      width: 26px;
      height: 26px;
      stroke: #fff;
      stroke-width: 2;
    }
    .section-header .section-title {
      margin: 0 0 10px;
    }
    .section-header .section-subtitle {
      margin-bottom: 14px;
    }
    .section-header-rule {
      width: min(120px, 32%);
      height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--navy), var(--light-blue));
      opacity: 0.45;
    }
    .subsection-header {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      text-align: left;
      margin-bottom: 20px;
    }
    .subsection-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(31, 77, 143, 0.1), rgba(6, 182, 212, 0.14));
      border: 1px solid rgba(31, 77, 143, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(31, 77, 143, 0.08);
    }
    .subsection-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--navy);
      stroke-width: 2;
    }
    .subsection-copy {
      flex: 1;
      min-width: 0;
    }
    .subsection-title {
      margin: 0 0 4px;
      font-size: var(--text-body-em);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.3;
    }
    .subsection-sub {
      margin: 0;
      font-size: var(--text-body);
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .subsection-sub--single-line {
      white-space: nowrap;
      font-size: clamp(0.9375rem, 1.05vw, var(--text-body));
    }
    .section-title { text-align: center; font-size: 1.75rem; margin: 0 0 12px; color: var(--navy); }
    .section-subtitle { text-align: center; color: var(--text-secondary); margin: 0 auto 28px; line-height: 1.55; font-size: var(--text-lead); max-width: 780px; }
    .benefits-stats-section .section-title,
    .benefits-stats-section .section-subtitle {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .landing-section--solution .section-title,
    .landing-section--solution .section-subtitle {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .landing-section--solution .section-subtitle {
      margin-bottom: 28px;
    }
    .benefits-stats-section .section-subtitle {
      margin-bottom: 28px;
    }
    .benefits-stats-section .why-sub-block {
      margin-top: 48px;
      padding: 28px 24px 32px;
      background: #ffffff;
      border: 1px solid rgba(232, 237, 244, 0.95);
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(31, 77, 143, 0.03);
    }
    .benefits-stats-section .why-sub-block .subsection-header {
      margin: 0 0 20px;
      padding-top: 0;
      border-top: none;
    }
    .benefits-stats-section #security {
      border-left: 4px solid var(--light-blue);
      background: linear-gradient(135deg, #ffffff 0%, rgba(6, 182, 212, 0.05) 100%);
    }
    #home, #solution, #how-it-works, #benefits, #security, #pricing {
      scroll-margin-top: 120px;
    }
    .solution-block {
      border-radius: 16px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(232, 237, 244, 0.95);
      box-shadow: 0 4px 20px rgba(31, 77, 143, 0.04);
    }
    .solution-block .subsection-header {
      margin: 40px 0 20px;
      padding-top: 28px;
      border-top: 1px solid rgba(232, 237, 244, 0.85);
    }
    .solution-block .threats-grid {
      padding: 20px 16px;
      border-radius: 12px;
      background: var(--bg-light);
      border: 1px solid var(--section-border);
    }
    .solution-block .ticker-wrap {
      padding: 12px 16px 8px;
      border-radius: 12px 12px 0 0;
      background: var(--bg-light);
      border: 1px solid var(--section-border);
      border-bottom: none;
    }
    .solution-block .dash-showcase {
      margin-top: 0;
      padding: 12px 16px 16px;
      border-radius: 0 0 12px 12px;
      background: var(--bg-light);
      border: 1px solid var(--section-border);
      border-top: 1px dashed rgba(31, 77, 143, 0.15);
    }
    .solution-block .insight-pills {
      justify-content: flex-start;
      margin-left: calc(44px + 14px);
      margin-bottom: 14px;
    }
    .platform-unified-break {
      margin: 36px 0 24px;
      padding-top: 28px;
      border-top: 1px solid var(--section-border);
      text-align: center;
    }
    .platform-unified-break-label {
      display: inline-block;
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: var(--navy);
      padding: 6px 14px;
      border-radius: 20px;
      background: rgba(31, 77, 143, 0.08);
      border: 1px solid rgba(31, 77, 143, 0.15);
    }
    .platform-unified-sub {
      margin: 10px auto 0;
      max-width: 520px;
      font-size: var(--text-body);
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .platform-unified-sub--single-line {
      max-width: none;
      white-space: nowrap;
      font-size: clamp(0.9375rem, 1.05vw, var(--text-body));
    }
    .why-stat--embedded {
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }
    .why-pillars {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 1080px;
      margin: 0 auto;
    }
    .why-pillar {
      background: linear-gradient(180deg, var(--navy) 0%, #163a6f 100%);
      border: 1px solid #163a6f;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(31, 77, 143, 0.18);
    }
    .why-pillar-head {
      padding: 0.65rem 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: transparent;
    }
    .why-pillar-head .why-stat--embedded {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      align-items: center;
      column-gap: 0.65rem;
      row-gap: 2px;
      text-align: left;
    }
    .why-pillar-head .why-stat-badge {
      grid-column: 1;
      grid-row: 1 / -1;
      align-self: center;
      width: 38px;
      height: 36px;
      margin: 0;
      border-radius: 4px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .why-pillar-head .why-stat-badge--chart {
      grid-column: 1;
      grid-row: 1 / -1;
      align-self: center;
      width: 38px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-pillar-head .why-stat-value {
      grid-column: 2;
      grid-row: 1;
      font-size: 1.125rem;
      margin-bottom: 0;
      color: #fff;
      line-height: 1.2;
    }
    .why-pillar-head .why-stat-label {
      grid-column: 2;
      grid-row: 2;
      font-size: 0.9375rem;
      line-height: 1.3;
      max-width: none;
      color: rgba(255, 255, 255, 0.82);
    }
    .why-pillar-head .why-stat-badge-num {
      font-size: 1.0625rem;
    }
    .why-pillar-head .why-stat-badge--chart svg {
      width: 18px;
      height: 18px;
    }
    .why-pillar-body {
      padding: 8px;
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 8px;
      background: transparent;
    }
    .why-pillar-body .why-value-copy {
      margin: 0;
      font-size: var(--text-body);
      line-height: 1.5;
      color: var(--text-secondary);
      min-height: calc(1.5em * 3);
    }
    .why-pillar-body .why-value-copy strong {
      font-weight: 700;
      color: var(--text-primary);
    }
    .why-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0.75rem 0.55rem 0.65rem;
      background: linear-gradient(180deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.05) 100%);
      border: 1px solid rgba(125, 211, 252, 0.22);
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .why-stat:hover {
      transform: translateY(-1px);
      border-color: rgba(125, 211, 252, 0.45);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14), 0 0 16px rgba(125, 211, 252, 0.1);
    }
    .why-stat-badge {
      position: relative;
      width: 46px;
      height: 44px;
      margin: 0 0 0.55rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .why-stat-badge-num {
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      color: #fff;
    }
    .why-stat-badge-unit {
      font-size: 0.4375rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.82);
      margin-top: 2px;
      padding: 0 3px;
      line-height: 1.1;
    }
    .why-stat-badge-unit--long {
      font-size: 0.375rem;
      letter-spacing: 0.02em;
    }
    .why-stat-badge--chart svg {
      width: 22px;
      height: 22px;
      display: block;
    }
    .why-stat-value {
      display: block;
      font-size: 1.125rem;
      font-weight: 800;
      line-height: 1.15;
      margin: 0 0 3px;
      letter-spacing: -0.02em;
    }
    .why-stat-highlight { color: #7dd3fc; }
    .why-stat-label { display: block; font-size: 0.8125rem; opacity: 0.88; margin: 0; line-height: 1.3; max-width: 10.5rem; }
    .why-value {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      padding: 0.85rem 0.9rem;
      text-align: left;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
    }
    .why-value:hover {
      background: #f1f5f9;
      border-color: rgba(6, 182, 212, 0.28);
    }
    .why-value-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: rgba(125, 211, 252, 0.1);
      border: 1px solid rgba(125, 211, 252, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-value-icon svg {
      width: 14px;
      height: 14px;
      stroke: #7dd3fc;
      stroke-width: 2;
    }
    .why-value-copy { margin: 0; line-height: 1.45; color: var(--text-secondary); }
    .why-stat-highlight { color: #7dd3fc; }
    .why-pillar-head .why-stat-value { color: #fff; }
    .why-pillar-head .why-stat-label { color: rgba(255, 255, 255, 0.82); }
    #platform, #features, #security, #pricing { /* padding via .landing-section */ }
    .platform-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .platform-item { text-align: center; }
    .platform-item-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(31, 77, 143, 0.1), rgba(6, 182, 212, 0.12));
      border: 1px solid rgba(31, 77, 143, 0.14);
      box-shadow: 0 2px 8px rgba(31, 77, 143, 0.06);
    }
    .platform-item-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--navy);
      stroke-width: 2;
    }
    .platform-item:hover .platform-item-icon svg { stroke: var(--light-blue); }
    .platform-item h4 { margin: 0 0 6px; font-size: var(--text-body-em); font-weight: 700; color: var(--navy); }
    .platform-item p { margin: 0; font-size: var(--text-body); color: var(--text-secondary); line-height: 1.5; }
    .threats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 0;
    }
    .threat-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 12px 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      box-sizing: border-box;
    }
    .threat-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, rgba(31, 77, 143, 0.08), rgba(6, 182, 212, 0.12));
      border: 1px solid rgba(31, 77, 143, 0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      box-shadow: 0 2px 8px rgba(31, 77, 143, 0.06);
    }
    .threat-icon svg { width: 22px; height: 22px; stroke: var(--navy); stroke-width: 2; }
    .threat-name {
      font-size: var(--text-body-em);
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 4px;
      line-height: 1.3;
    }
    .threat-description {
      font-size: var(--text-body);
      color: var(--text-secondary);
      line-height: 1.5;
      margin: 0;
    }
    .threat-card.featured {
      background: linear-gradient(135deg, rgba(31, 77, 143, 0.05), rgba(6, 182, 212, 0.05));
      border: 2px solid var(--light-blue);
      position: relative;
    }
    .featured-badge {
      position: absolute;
      top: 6px;
      right: 6px;
      background: var(--light-blue);
      color: #fff;
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      padding: 2px 6px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: var(--label-tracking);
    }
    .security-trust-strip {
      margin-top: 8px;
    }
    .platform-strip--trust {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 900px;
      margin: 0 auto;
    }
    .placeholder {
      background: #f1f5f9;
      border: 2px dashed #cbd5e1;
      border-radius: 12px;
      padding: 32px 20px;
      text-align: center;
      color: var(--text-secondary);
      font-size: var(--text-body);
      color: var(--text-secondary);
      max-width: 640px;
      margin: 0 auto;
    }
    @media (max-width: 899px) {
      body { padding-top: 0; }
      .landing-section { padding: 56px 16px 64px; }
      .solution-block .subsection-header {
        margin-left: 0;
        margin-right: 0;
      }
      .benefits-stats-section .why-sub-block {
        padding: 22px 16px 26px;
      }
      .subsection-sub--single-line {
        white-space: normal;
        font-size: var(--text-body);
      }
      .pricing-section.landing-section { padding-bottom: 72px; }
      #contact.landing-section { padding-top: 72px; }
      #home, #benefits, #security, #pricing { scroll-margin-top: 176px; }
      .why-pillars { grid-template-columns: 1fr; }
      .landing-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 8px;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
      }
      .landing-logo-section {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        max-width: 100%;
        flex-shrink: 1;
        overflow: hidden;
      }
      .landing-logo-section a {
        display: block;
        max-width: 100%;
        line-height: 0;
      }
      .nav-auth { grid-column: 2; grid-row: 1; justify-self: end; flex-shrink: 0; z-index: 2; }
      .landing-nav-row {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        width: 100%;
      }
      .nav-pill-track {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: 100%;
        gap: 4px;
        padding: 5px;
        border-radius: 14px;
        overflow: visible;
      }
      .nav-pill-track a {
        padding: 8px 6px;
        font-size: 0.8125rem;
        flex: none;
        text-align: center;
        min-width: 0;
        overflow: visible;
      }
      .landing-logo {
        height: 72px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
      }
      .btn-nav-login, .btn-nav-signup {
        padding: 5px 9px;
        font-size: 0.6875rem;
      }
      .hero-capabilities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
        margin-bottom: 28px;
      }
    }
    @media (max-width: 380px) {
      .landing-logo {
        height: 64px;
      }

      .nav-pill-track a {
        font-size: 0.8125rem;
        padding: 6px 3px;
      }
    }
    @media (min-width: 900px) {
      .landing-logo {
        height: 88px;
        max-width: none;
        object-fit: contain;
        object-position: left center;
      }
    }
    @media (max-width: 760px) {
      .platform-strip { grid-template-columns: 1fr 1fr; }
      .threats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .platform-strip--trust { grid-template-columns: 1fr; }
    }
  


/* Proposed How it works + Dashboard (from landing-richness-mocks.html) */
.richness-proposed { border-top: none; }
.richness-proposed .page { max-width: 1380px; margin: 0 auto; padding: 0 16px 24px; }
.richness-proposed .section { margin-top: 0; border: none; border-radius: 0; background: transparent; }
.richness-proposed .section--muted { background: transparent; }
.richness-proposed .section--dashboard { background: transparent; }

    :root {
      --navy: #1F4D8F;
      --light-blue: #06B6D4;
      --text: #0f172a;
      --muted: #475569;
      --border: #e2e8f0;
      --bg: #f8fafc;
    }
    * { box-sizing: border-box; }
    
    .mock-banner {
      position: sticky; top: 0; z-index: 100;
      background: #fef3c7; border-bottom: 2px solid #f59e0b;
      padding: 8px 16px; font-size: 0.8125rem; font-weight: 600; text-align: center;
    }
    .page { max-width: 1380px; margin: 0 auto; padding: 0 16px 48px; }
    .section {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-top: 24px;
      overflow: hidden;
    }
    .section--muted { background: var(--bg); }
    .section-tag {
      display: inline-block;
      background: rgba(31, 77, 143, 0.08);
      color: var(--navy);
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid rgba(31, 77, 143, 0.15);
      margin-bottom: 8px;
    }
    .section-tag--new { background: #059669; margin-left: 4px; }
    .pad { padding: 28px 24px; }
    .hero-badge {
      display: block; width: fit-content; margin: 0 auto 10px;
      background: rgba(6,182,212,0.1); color: var(--navy);
      padding: 5px 12px; border-radius: 20px;
      font-size: 0.75rem; font-weight: 700; border: 1px solid var(--light-blue);
    }
    .hero-title {
      font-size: clamp(1.35rem, 2.5vw, 1.85rem);
      font-weight: 800; line-height: 1.2; margin: 0 0 10px;
      text-align: center; letter-spacing: -0.02em;
    }
    .hero-title .hl { color: var(--navy); }
    .hero-sub {
      font-size: 0.9375rem; color: var(--muted); line-height: 1.5;
      margin: 0 auto 16px; max-width: 580px; text-align: center;
    }
    .btn-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .btn-p { background: var(--navy); color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 600; border: none; font-size: 0.875rem; cursor: pointer; }
    .btn-s { background: #fff; color: var(--navy); padding: 10px 20px; border-radius: 8px; font-weight: 600; border: 2px solid var(--navy); font-size: 0.875rem; cursor: pointer; }

    .section-h { font-size: var(--text-lead); font-weight: 800; margin: 0 0 6px; text-align: center; }
    .section-sub { text-align: center; color: var(--muted); font-size: var(--text-body); max-width: 620px; margin: 0 auto 20px; line-height: 1.5; }

    /* Balanced shots — full image visible, capped height (not cropped, not huge) */
    .shot-frame {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 10px rgba(15,23,42,0.05);
      line-height: 0;
    }
    .shot-frame img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 300px;
    }
    .shot-frame--md img { max-height: 360px; }
    .shot-frame--sm img { max-height: 240px; }
    .shot-frame--lg img { max-height: 420px; }
    .shot-caption {
      font-size: 0.6875rem;
      color: var(--muted);
      padding: 6px 10px;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .shot-duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* Diagonal stacks — natural height, light overlap via margin */
    .shot-stack {
      max-width: 520px;
      margin-top: 8px;
    }
    .shot-stack--triage { max-width: 560px; }
    .shot-card {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 14px rgba(15,23,42,0.08);
      line-height: 0;
    }
    .shot-card img {
      display: block;
      width: 100%;
      height: auto;
    }
    .shot-card--back {
      width: 92%;
      z-index: 1;
      transform: rotate(-0.5deg);
    }
    .shot-stack--connect .shot-card--front {
      width: 68%;
      margin: -88px 0 0 30%;
      z-index: 2;
      transform: rotate(0.4deg);
    }
    .shot-stack--triage .shot-card--back {
      width: 100%;
      transform: rotate(-0.4deg);
    }
    .shot-stack--triage .shot-card--front {
      width: 58%;
      margin: -110px 0 0 36%;
      z-index: 2;
      transform: rotate(0.35deg);
    }

    /* Auto-cycle peek — crossfade main ↔ detail (steps 1 & 3) */
    .shot-peek--auto {
      --peek-cycle: 22s;
      --peek-cycle-half: 11s;
    }
    @keyframes shot-cycle-main {
      0%, 38% { opacity: 1; }
      46%, 86% { opacity: 0; }
      94%, 100% { opacity: 1; }
    }
    @keyframes shot-cycle-detail {
      0%, 38% { opacity: 0; }
      46%, 86% { opacity: 1; }
      94%, 100% { opacity: 0; }
    }
    @keyframes detect-out-flash {
      0%, 100% {
        box-shadow: 0 4px 22px rgba(249,115,22,0.2);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 0 0 5px rgba(249,115,22,0.35), 0 10px 32px rgba(249,115,22,0.45);
        transform: scale(1.06);
      }
    }
    @keyframes detect-mod-flash {
      0%, 100% { background: rgba(6,182,212,0.18); }
      50% { background: rgba(6,182,212,0.32); }
    }
    .shot-peek {
      position: relative;
      width: 100%;
    }
    .shot-peek--auto .shot-peek-main {
      position: relative;
      z-index: 1;
      animation: shot-cycle-main var(--peek-cycle) ease-in-out infinite;
    }
    .shot-peek--auto .shot-peek-detail {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0;
      pointer-events: none;
      animation: shot-cycle-detail var(--peek-cycle) ease-in-out infinite;
    }
    .shot-peek--auto.shot-peek--offset .shot-peek-main,
    .shot-peek--auto.shot-peek--offset .shot-peek-detail,
    .shot-peek--auto.shot-peek--offset .shot-peek-cursor,
    .shot-peek--auto.shot-peek--offset .shot-peek-tap-ring {
      animation-delay: var(--peek-cycle-half);
    }
    /* Simulated click — cursor + target highlight, synced to crossfade */
    @keyframes peek-cursor-cycle {
      0%, 28% { opacity: 0; transform: translate(0, 0) scale(1); }
      30% { opacity: 1; transform: translate(-4px, -4px) scale(1); }
      34% { opacity: 1; transform: translate(-4px, -4px) scale(0.82); }
      36% { opacity: 1; transform: translate(-4px, -4px) scale(1); }
      42%, 100% { opacity: 0; }
    }
    @keyframes peek-cursor-connect {
      0%, 28% { opacity: 0; transform: translate(-5px, -3px) scale(1); }
      30% { opacity: 1; transform: translate(-5px, -3px) scale(1); }
      34% { opacity: 1; transform: translate(-5px, -3px) scale(0.82); }
      36% { opacity: 1; transform: translate(-5px, -3px) scale(1); }
      42%, 100% { opacity: 0; }
    }
    @keyframes peek-tap-ring {
      0%, 31% { opacity: 0; transform: scale(0.96); }
      33%, 37% { opacity: 1; transform: scale(1); }
      41%, 100% { opacity: 0; transform: scale(1.04); }
    }
    @keyframes peek-ripple {
      0%, 33% { opacity: 0; transform: scale(0.4); }
      34% { opacity: 0.75; transform: scale(1); }
      40% { opacity: 0; transform: scale(1.8); }
      100% { opacity: 0; }
    }
    .shot-peek-cursor {
      position: absolute;
      z-index: 16;
      pointer-events: none;
      width: 22px;
      height: 22px;
      opacity: 0;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
      animation: peek-cursor-cycle var(--peek-cycle) ease-in-out infinite;
    }
    .shot-peek-cursor svg {
      display: block;
      width: 22px;
      height: 22px;
    }
    .shot-peek-ripple {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 28px;
      height: 28px;
      margin: -14px 0 0 -14px;
      border-radius: 50%;
      background: rgba(6,182,212,0.35);
      animation: peek-ripple var(--peek-cycle) ease-out infinite;
    }
    .shot-peek-frame {
      position: relative;
      line-height: 0;
    }
    .shot-peek-frame img {
      display: block;
      width: 100%;
      height: auto;
    }
    .shot-peek-cursor--connect {
      top: 13.84%;
      left: 88.59%;
      transform: translate(-5px, -3px);
      animation: peek-cursor-connect var(--peek-cycle) ease-in-out infinite;
    }
    .shot-peek-cursor--connect .shot-peek-ripple {
      top: 2px;
      left: 2px;
      margin: -14px 0 0 -14px;
    }
    .shot-peek-cursor--fraud { top: 36.5%; left: 24%; }
    .shot-peek-cursor--fraud .shot-peek-ripple {
      background: rgba(249,115,22,0.35);
    }
    .shot-peek-tap-ring {
      position: absolute;
      z-index: 14;
      pointer-events: none;
      border-radius: 5px;
      border: 2px solid transparent;
      opacity: 0;
      animation: peek-tap-ring var(--peek-cycle) ease-in-out infinite;
    }
    .shot-peek-tap-ring--fraud {
      top: 33.8%;
      left: 1%;
      width: 98%;
      height: 5.6%;
      border-radius: 4px;
      border-color: rgba(249,115,22,0.55);
      background: rgba(249,115,22,0.06);
    }
    @media (prefers-reduced-motion: reduce) {
      .shot-peek--auto .shot-peek-main,
      .shot-peek--auto .shot-peek-detail { animation: none; }
      .shot-peek--auto .shot-peek-detail { opacity: 0; }
      .shot-peek-cursor,
      .shot-peek-tap-ring { display: none; }
    }
    .detect-h-out--pulse {
      animation: detect-out-flash 2.2s ease-in-out infinite;
    }
    .detect-h-mod--pulse {
      animation: detect-mod-flash 2.2s ease-in-out infinite;
    }

    /* How it works — vertical 1→2→3, number inside each step */
    .flow-steps {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px 24px 8px;
    }
    .flow-block {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 14px;
      align-items: start;
      position: relative;
      padding-bottom: 22px;
    }
    .flow-block:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 17px;
      top: 36px;
      bottom: 0;
      width: 2px;
      background: var(--border);
    }
    .flow-num {
      width: 32px; height: 32px;
      background: var(--navy);
      color: #fff;
      border-radius: 50%;
      font-size: 0.8125rem;
      font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .flow-block-content h4 {
      margin: 0 0 5px;
      font-size: var(--text-body-em);
      font-weight: 700;
    }
    .flow-block-content p {
      margin: 0;
      font-size: var(--text-body);
      color: var(--muted);
      line-height: 1.5;
    }
    .flow-block-copy p {
      margin: 0;
      font-size: var(--text-body);
      color: var(--muted);
      line-height: 1.5;
    }
    .flow-block-split {
      display: grid;
      grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
      gap: 18px;
      align-items: start;
      width: 100%;
    }
    .flow-block-visual {
      width: 100%;
      min-width: 0;
    }
    .flow-block-visual .shot-stack {
      max-width: 100%;
      margin: 0;
    }
    .flow-block-copy .flow-pills {
      margin-top: 12px;
      margin-bottom: 0;
    }

    /* Step 2 — stacked ML ENGINE layout (Option A) */
    @keyframes detect-drop {
      0% { top: 0; opacity: 0; transform: scale(0.6); }
      12% { opacity: 1; transform: scale(1); }
      88% { opacity: 1; }
      100% { top: calc(100% - 6px); opacity: 0; transform: scale(0.8); }
    }
    @keyframes detect-src-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.4); }
      50% { box-shadow: 0 0 0 4px rgba(6,182,212,0); }
    }
    @keyframes detect-engine-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); }
      50% { box-shadow: 0 0 0 4px rgba(6,182,212,0.12); }
    }
    @keyframes detect-sense-bar {
      0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
      50% { transform: scaleY(1); opacity: 0.9; }
    }
    @keyframes detect-out-pulse {
      0%, 100% { border-color: #fed7aa; }
      50% { border-color: #fb923c; }
    }
    .flow-block-visual .detect-engine {
      width: 100%;
      max-width: none;
    }
    .detect-engine {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 16px rgba(15,23,42,0.07);
    }
    .detect-engine-head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .detect-engine-live {
      width: 6px; height: 6px;
      background: #22c55e;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .detect-engine-stack {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 14px;
    }
    .detect-sources-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-bottom: 0;
    }
    .detect-source-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .detect-source-chip {
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--navy);
      background: #fff;
      border: 1px solid rgba(6,182,212,0.35);
      padding: 5px 10px;
      border-radius: 6px;
      width: 100%;
      text-align: center;
      animation: detect-src-glow 2.4s ease-in-out infinite;
    }
    .detect-source-col:nth-child(1) .detect-source-chip { animation-delay: 0s; }
    .detect-source-col:nth-child(2) .detect-source-chip { animation-delay: 0.4s; }
    .detect-source-col:nth-child(3) .detect-source-chip { animation-delay: 0.8s; }
    .detect-drop-lane {
      position: relative;
      width: 2px;
      height: 32px;
      margin: 4px 0;
      background: linear-gradient(180deg, rgba(6,182,212,0.45), rgba(6,182,212,0.08));
      border-radius: 1px;
    }
    .detect-drop-pkt {
      position: absolute;
      left: 50%;
      margin-left: -3px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--light-blue);
      box-shadow: 0 0 8px rgba(6,182,212,0.85);
      animation: detect-drop 1.5s ease-in infinite;
    }
    .detect-source-col:nth-child(1) .detect-drop-pkt { animation-delay: 0s; }
    .detect-source-col:nth-child(2) .detect-drop-pkt { animation-delay: 0.35s; }
    .detect-source-col:nth-child(3) .detect-drop-pkt { animation-delay: 0.7s; }
    .detect-drop-pkt--trail { animation-delay: 0.75s; }
    .detect-source-col:nth-child(2) .detect-drop-pkt--trail { animation-delay: 1.1s; }
    .detect-source-col:nth-child(3) .detect-drop-pkt--trail { animation-delay: 1.45s; }
    .ml-engine-core {
      position: relative;
      aspect-ratio: 1.55 / 1;
      max-height: 200px;
      width: 100%;
      background: linear-gradient(160deg, rgba(31,77,143,0.1), rgba(6,182,212,0.14));
      border: 1px solid rgba(31,77,143,0.24);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 16px 12px 12px;
      margin-bottom: 10px;
      animation: detect-engine-pulse 2.8s ease-in-out infinite;
      overflow: hidden;
    }
    .ml-engine-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 0.95;
      letter-spacing: 0.08em;
    }
    .ml-engine-ml {
      font-size: 2rem;
      font-weight: 800;
      color: var(--navy);
    }
    .ml-engine-engine {
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--light-blue);
      letter-spacing: 0.14em;
    }
    .ml-engine-status {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--navy);
    }
    .ml-engine-status::before {
      content: '';
      width: 6px; height: 6px;
      background: #22c55e;
      border-radius: 50%;
    }
    .ml-engine-sense {
      position: absolute;
      top: 10px; right: 12px;
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 18px;
    }
    .ml-engine-sense span {
      width: 3px;
      height: 14px;
      background: var(--navy);
      border-radius: 1px;
      transform-origin: bottom;
      opacity: 0.5;
      animation: detect-sense-bar 1.2s ease-in-out infinite;
    }
    .ml-engine-sense span:nth-child(2) { animation-delay: 0.12s; }
    .ml-engine-sense span:nth-child(3) { animation-delay: 0.24s; }
    .ml-engine-sense span:nth-child(4) { animation-delay: 0.36s; }
    .ml-engine-sense-label {
      position: absolute;
      top: 10px; left: 12px;
      font-size: 0.4375rem;
      font-weight: 600;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      max-width: 56px;
      line-height: 1.2;
    }
    .ml-engine-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 5px;
      margin-top: 4px;
    }
    .ml-engine-mod {
      font-size: 0.5625rem;
      font-weight: 600;
      color: #94a3b8;
      background: rgba(255,255,255,0.75);
      border: 1px solid var(--border);
      padding: 2px 7px;
      border-radius: 4px;
    }
    .ml-engine-mod--on {
      color: var(--navy);
      background: rgba(6,182,212,0.2);
      border-color: var(--light-blue);
    }
    .ml-engine-rules {
      font-size: 0.5rem;
      color: #cbd5e1;
    }
    .detect-engine-out-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: linear-gradient(90deg, #fff7ed, #fff);
      border: 1px solid #fed7aa;
      border-radius: 8px;
      animation: detect-out-pulse 2s ease-in-out infinite;
    }
    .detect-engine-out-arrow {
      flex-shrink: 0;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--light-blue);
    }
    .detect-engine-out-sev {
      flex-shrink: 0;
      font-size: 0.5625rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #c2410c;
      background: #fff;
      padding: 3px 6px;
      border-radius: 4px;
      border: 1px solid #fdba74;
    }
    .detect-engine-out-text {
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
    }
    .detect-engine-out-src {
      margin-left: auto;
      font-size: 0.5625rem;
      font-weight: 600;
      color: var(--muted);
      flex-shrink: 0;
    }

    /* Step 2 — three design options (pick one) */
    .detect-options-pick {
      font-size: 0.75rem;
      color: var(--muted);
      margin: 10px 0 14px;
      line-height: 1.45;
    }
    .detect-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .detect-option {
      border: 2px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
    }
    .detect-option-label {
      padding: 7px 10px;
      background: linear-gradient(90deg, #fef3c7, #fffbeb);
      border-bottom: 1px solid #fde68a;
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #92400e;
      line-height: 1.35;
    }
    .detect-option .detect-engine {
      border: none;
      border-radius: 0;
      box-shadow: none;
    }
    .detect-option .detect-engine-stack { padding: 10px; }
    .detect-option .ml-engine-ml { font-size: 1.5rem; }
    .detect-option .ml-engine-engine { font-size: 1rem; }
    .detect-option .ml-engine-core {
      max-height: 150px;
      aspect-ratio: 1.35 / 1;
      margin-bottom: 8px;
    }
    .detect-option .detect-source-chip { font-size: 0.5625rem; padding: 4px 6px; }
    .detect-option .detect-drop-lane { height: 24px; }

    /* Option B — horizontal pipe + ML ENGINE logo */
    @keyframes detect-logo-spin {
      to { transform: rotate(360deg); }
    }
    @keyframes detect-logo-pulse {
      0%, 100% { opacity: 0.45; }
      50% { opacity: 1; }
    }
    @keyframes detect-pipe-flow-v {
      0% { top: 8%; opacity: 0; }
      15% { opacity: 1; }
      85% { opacity: 1; }
      100% { top: 88%; opacity: 0; }
    }
    @keyframes detect-conn-shimmer {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }
    .detect-pipe-row {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) auto minmax(0, 1.05fr) auto minmax(0, 0.7fr);
      align-items: center;
      gap: 6px;
      padding: 14px 12px;
    }
    .detect-pipe-sources-wrap {
      display: flex;
      align-items: stretch;
      gap: 5px;
      min-width: 0;
    }
    .detect-pipe-sources {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      flex: 1;
      min-width: 0;
    }
    .detect-pipe-src {
      font-size: 0.5625rem;
      font-weight: 700;
      color: var(--navy);
      background: #fff;
      border: 1px solid rgba(6,182,212,0.3);
      padding: 5px 6px;
      border-radius: 5px;
      text-align: center;
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    }
    .detect-pipe-bundle {
      position: relative;
      width: 3px;
      flex-shrink: 0;
      border-radius: 2px;
      background: linear-gradient(180deg, rgba(6,182,212,0.12), rgba(6,182,212,0.45), rgba(6,182,212,0.12));
    }
    .detect-pipe-flow {
      position: absolute;
      left: 50%;
      margin-left: -2px;
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--light-blue);
      box-shadow: 0 0 6px rgba(6,182,212,0.9);
      animation: detect-pipe-flow-v 1.6s ease-in-out infinite;
    }
    .detect-pipe-bundle .detect-pipe-flow:nth-child(2) { animation-delay: 0.45s; }
    .detect-pipe-bundle .detect-pipe-flow:nth-child(3) { animation-delay: 0.9s; }
    .detect-pipe-conn {
      width: 14px;
      height: 3px;
      border-radius: 2px;
      flex-shrink: 0;
      background: linear-gradient(90deg, rgba(6,182,212,0.15), var(--light-blue), rgba(6,182,212,0.15));
      background-size: 200% 100%;
      animation: detect-conn-shimmer 1.2s linear infinite;
    }
    .detect-pipe-engine {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 6px 4px;
      min-width: 0;
    }
    .ml-engine-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
    }
    .ml-engine-logo-svg {
      width: 76px;
      height: auto;
      display: block;
      filter: drop-shadow(0 3px 10px rgba(31,77,143,0.18));
    }
    .ml-engine-logo-orbit {
      /* Orbit spin uses SVG animateTransform at (40,38) — same center as ML core */
    }
    .ml-engine-logo-node {
      animation: detect-logo-pulse 2s ease-in-out infinite;
    }
    .ml-engine-logo-node:nth-child(2) { animation-delay: 0.35s; }
    .ml-engine-logo-node:nth-child(3) { animation-delay: 0.7s; }
    .detect-pipe-engine .ml-engine-status {
      font-size: 0.4375rem;
      margin-top: 2px;
    }
    .detect-pipe-engine .ml-engine-meta {
      margin-top: 0;
      gap: 4px;
    }
    .detect-pipe-engine .ml-engine-mod {
      font-size: 0.4375rem;
      padding: 2px 6px;
    }
    .detect-pipe-engine .ml-engine-rules {
      font-size: 0.4375rem;
    }
    .detect-pipe-out {
      text-align: center;
      padding: 10px 7px;
      background: linear-gradient(160deg, #fff7ed, #fff);
      border: 1px solid #fed7aa;
      border-radius: 8px;
      line-height: 1.35;
      box-shadow: 0 2px 6px rgba(249,115,22,0.08);
    }
    .detect-pipe-out-icon {
      width: 22px; height: 22px;
      margin: 0 auto 4px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #fdba74;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 800;
      color: #c2410c;
    }
    .detect-pipe-out-tag {
      display: block;
      font-size: 0.4375rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #c2410c;
      margin-bottom: 2px;
      letter-spacing: 0.04em;
    }
    .detect-pipe-out-type {
      display: block;
      font-size: 0.5625rem;
      font-weight: 700;
      color: var(--text);
    }
    .detect-pipe-out-src {
      display: block;
      font-size: 0.4375rem;
      color: var(--muted);
      margin-top: 3px;
    }

    /* Option C — minimal flow line */
    .detect-min-body {
      padding: 12px 10px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .detect-min-sources {
      font-size: 0.625rem;
      font-weight: 600;
      color: var(--navy);
      text-align: center;
      letter-spacing: 0.02em;
    }
    .detect-min-flow {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .detect-min-line {
      flex: 1;
      height: 2px;
      background: var(--border);
      border-radius: 1px;
      position: relative;
      overflow: hidden;
    }
    .detect-min-line::after {
      content: '';
      position: absolute;
      top: 0; left: -40%;
      width: 40%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
      animation: detect-min-shimmer 2s ease-in-out infinite;
    }
    @keyframes detect-min-shimmer {
      0% { left: -40%; }
      100% { left: 100%; }
    }
    .detect-min-badge {
      flex-shrink: 0;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      color: var(--navy);
      background: linear-gradient(135deg, rgba(31,77,143,0.08), rgba(6,182,212,0.12));
      border: 1px solid rgba(31,77,143,0.22);
      padding: 7px 10px;
      border-radius: 8px;
      white-space: nowrap;
    }
    .detect-min-badge em {
      font-style: normal;
      color: var(--light-blue);
      letter-spacing: 0.08em;
    }
    .detect-min-meta {
      font-size: 0.5rem;
      color: #94a3b8;
      text-align: center;
      line-height: 1.45;
    }
    .detect-engine-out-bar--compact {
      padding: 7px 9px;
      gap: 7px;
    }
    .detect-engine-out-bar--compact .detect-engine-out-text { font-size: 0.625rem; }

    /* How it works — horizontal 1 | 2 | 3 */
    .how-steps--horizontal {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      padding: 22px 22px 8px;
    }
    .how-steps--horizontal .flow-block {
      display: flex;
      flex-direction: column;
      grid-template-columns: unset;
      padding-bottom: 0;
      gap: 10px;
      min-width: 0;
      overflow: visible;
    }
    .how-steps--horizontal .flow-block::before { display: none; }
    .how-steps--horizontal .flow-num {
      align-self: center;
    }
    .how-steps--horizontal .flow-block-split {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .how-steps--horizontal .flow-block:nth-child(3) .shot-peek {
      aspect-ratio: 1008 / 859;
      width: 100%;
    }
    .how-steps--horizontal .flow-block:nth-child(3) .shot-peek--auto .shot-peek-main,
    .how-steps--horizontal .flow-block:nth-child(3) .shot-peek--auto .shot-peek-detail {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .how-steps--horizontal .flow-block:nth-child(3) .shot-peek .shot-card {
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .how-steps--horizontal .flow-block:nth-child(3) .shot-peek img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: top center;
    }
    /* Visuals on top */
    .how-steps--horizontal .flow-block-visual {
      order: -1;
    }
    /* Step 2 — same shot-card frame as steps 1 & 3 */
    .shot-card--engine {
      width: 100%;
      line-height: normal;
      overflow: hidden;
    }
    .how-steps--horizontal .shot-card--engine .detect-engine--flow {
      width: 100%;
      border: none;
      border-radius: 0;
      background: #fff;
      box-shadow: none;
      overflow: visible;
    }
    .how-steps--horizontal .shot-card--engine .detect-engine-head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .how-steps--horizontal .shot-card--engine .detect-h-body {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 14px 16px 16px;
      min-height: 150px;
      background: #fff;
    }
    .how-steps--horizontal .detect-h-flow-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      width: max-content;
      margin: 0 auto;
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-sources-label,
    .how-steps--horizontal .detect-engine--flow .detect-h-out-label {
      text-align: center;
      font-size: 0.5rem;
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-src {
      border: 1px solid var(--border);
      border-radius: 4px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(15,23,42,0.05);
      animation: detect-src-glow 2.6s ease-in-out infinite;
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-conn {
      flex: 0 0 28px;
      min-width: 28px;
      align-self: center;
      height: 2px;
      border-radius: 1px;
      position: relative;
      overflow: hidden;
      display: block;
      background: rgba(6,182,212,0.12);
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-conn--in {
      margin-top: 0;
      align-self: center;
      background: linear-gradient(90deg, rgba(6,182,212,0.08), rgba(6,182,212,0.35));
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-conn--in::after {
      background: radial-gradient(ellipse at center, rgba(6,182,212,0.95) 0%, rgba(6,182,212,0.4) 45%, transparent 70%);
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-conn::after {
      display: block;
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      width: 40%;
      height: 4px;
      margin-top: -1px;
      border-radius: 2px;
      background: radial-gradient(ellipse at center, rgba(6,182,212,0.95) 0%, rgba(6,182,212,0.4) 45%, transparent 70%);
      animation: detect-flow-wave 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-conn--out::after {
      display: none;
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-pkt {
      display: none;
    }
    .how-steps--horizontal .detect-engine--flow .detect-h-engine-panel {
      background: none;
      border: none;
      padding: 0;
      gap: 8px;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .how-steps--horizontal .detect-engine--flow .ml-engine-logo {
      position: relative;
      filter: drop-shadow(0 0 18px rgba(6,182,212,0.35));
      line-height: 0;
      margin: 0 auto;
    }
    .how-steps--horizontal .detect-h-sources {
      flex: 0 0 auto;
      width: 68px;
      align-items: stretch;
    }
    .how-steps--horizontal .detect-h-src { font-size: var(--label-size); padding: 5px 8px; }
    .how-steps--horizontal .detect-h-engine {
      flex: 0 0 76px;
      width: 76px;
      min-width: 76px;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    .how-steps--horizontal .detect-h-engine .ml-engine-logo-svg { width: 72px; }
    .how-steps--horizontal .detect-h-processing {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .how-steps--horizontal .detect-h-processing-dots i {
      width: 4px;
      height: 4px;
    }
    .how-steps--horizontal .flow-block-copy h4 {
      font-size: var(--text-body-em);
      text-align: left;
      margin: 0 0 4px;
    }
    .how-steps--horizontal .flow-block-copy p {
      font-size: var(--text-body);
      text-align: left;
      line-height: 1.5;
    }
    .how-steps--horizontal .flow-pills {
      margin-top: 8px;
    }
    .how-steps--horizontal .action-pill {
      font-size: 0.6875rem;
      padding: 5px 8px;
    }
    .how-steps--horizontal .flow-foot {
      grid-column: 1 / -1;
      margin-top: 8px;
      padding-top: 14px;
      font-size: 0.75rem;
    }
    @media (min-width: 901px) and (max-width: 1439px) {
      .landing-section--solution .container {
        max-width: 1380px;
        padding-left: 20px;
        padding-right: 20px;
      }
      .how-steps--horizontal {
        gap: 12px;
        padding: 16px 8px 8px;
      }
      .how-steps--horizontal .flow-block-split {
        gap: 8px;
      }
      .how-steps--horizontal .flow-block-copy h4 {
        font-size: 0.875rem;
      }
      .how-steps--horizontal .flow-block-copy p {
        font-size: 0.8125rem;
        line-height: 1.4;
      }
      .how-steps--horizontal .shot-card--engine .detect-h-body {
        min-height: 160px;
        padding: 14px 12px;
      }
      .how-steps--horizontal .detect-h-engine .ml-engine-logo-svg {
        width: 80px;
      }
    }
    @media (max-width: 900px) {
      .how-steps--horizontal { grid-template-columns: 1fr; }
      .how-steps--horizontal .flow-block { padding-bottom: 22px; }
    }

    /* Detection engine widget — sources left, output right */
    @keyframes detect-flow-wave {
      0% { left: -45%; opacity: 0; }
      12% { opacity: 1; }
      88% { opacity: 1; }
      100% { left: 105%; opacity: 0; }
    }
    @keyframes detect-stream {
      0% { left: -30%; opacity: 0; }
      15% { opacity: 1; }
      85% { opacity: 1; }
      100% { left: 100%; opacity: 0; }
    }
    @keyframes detect-h-flow {
      0% { left: 0; opacity: 0; transform: translateY(-50%) scale(0.6); }
      12% { opacity: 1; transform: translateY(-50%) scale(1); }
      88% { opacity: 1; }
      100% { left: calc(100% - 5px); opacity: 0; transform: translateY(-50%) scale(0.7); }
    }
    @keyframes detect-h-dot {
      0%, 100% { opacity: 0.2; transform: translateY(0); }
      50% { opacity: 1; transform: translateY(-1px); }
    }
    .detect-h-body {
      display: flex;
      align-items: stretch;
      gap: 0;
      padding: 10px 8px;
      min-height: 0;
      background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    }
    .detect-h-sources {
      flex: 0 0 58px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      justify-content: center;
    }
    .detect-h-sources-label,
    .detect-v-sources-label,
    .detect-h-out-label {
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      text-transform: uppercase;
      letter-spacing: var(--label-tracking);
      color: #94a3b8;
    }
    .detect-h-src {
      font-size: var(--label-size);
      font-weight: 700;
      color: var(--navy);
      background: #fff;
      border: 1px solid rgba(6,182,212,0.35);
      padding: 4px 5px;
      border-radius: 4px;
      text-align: center;
      animation: detect-src-glow 2.6s ease-in-out infinite;
    }
    .detect-h-src:nth-child(2) { animation-delay: 0s; }
    .detect-h-src:nth-child(3) { animation-delay: 0.35s; }
    .detect-h-src:nth-child(4) { animation-delay: 0.7s; }
    .detect-h-src:nth-child(5) { animation-delay: 1.05s; }
    .detect-h-conn {
      flex: 1 1 0;
      min-width: 14px;
      align-self: center;
      height: 3px;
      background: linear-gradient(90deg, rgba(6,182,212,0.08), var(--border), rgba(6,182,212,0.08));
      border-radius: 2px;
      position: relative;
      overflow: visible;
    }
    .detect-h-conn::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 2px;
      overflow: hidden;
    }
    .detect-h-conn::after {
      content: '';
      position: absolute;
      top: 0; left: -35%;
      width: 35%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(6,182,212,0.55), transparent);
      animation: detect-min-shimmer 1.6s ease-in-out infinite;
      border-radius: 2px;
    }
    .detect-h-conn--out::after { animation-delay: 0.8s; }
    .detect-h-pkt {
      position: absolute;
      top: 50%;
      left: 0;
      width: 5px; height: 5px;
      margin-top: -2.5px;
      border-radius: 50%;
      background: var(--light-blue);
      box-shadow: 0 0 7px rgba(6,182,212,0.75);
      animation: detect-h-flow 1.7s ease-in-out infinite;
      z-index: 1;
    }
    .detect-h-pkt--delay { animation-delay: 0.85s; }
    .detect-h-engine {
      flex: 0 1 auto;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 4px;
    }
    .detect-h-engine-panel {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 5px 7px 5px;
      width: auto;
      max-width: 100%;
      align-self: center;
      background: linear-gradient(160deg, rgba(31,77,143,0.07), rgba(6,182,212,0.12));
      border: 1px solid rgba(31,77,143,0.16);
      border-radius: 10px;
    }
    .detect-h-engine .ml-engine-logo-svg { width: 64px; }
    .detect-h-engine .ml-engine-logo { line-height: 0; }
    .detect-h-mods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 3px;
      width: auto;
    }
    .detect-h-mod {
      font-size: 0.375rem;
      font-weight: 700;
      padding: 2px 5px;
      border-radius: 4px;
      line-height: 1.2;
      white-space: nowrap;
    }
    .detect-h-mod--active {
      color: var(--navy);
      background: #fff;
      border: 1px solid rgba(6,182,212,0.45);
      box-shadow: 0 0 0 1px rgba(6,182,212,0.08);
    }
    .detect-h-mod--muted {
      color: #94a3b8;
      background: rgba(255,255,255,0.5);
      border: 1px solid var(--border);
    }
    .detect-h-processing {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.375rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #94a3b8;
    }
    .detect-h-processing-dots {
      display: inline-flex;
      gap: 2px;
      align-items: center;
    }
    .detect-h-processing-dots i {
      display: block;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--light-blue);
      font-style: normal;
      animation: detect-h-dot 1.3s ease-in-out infinite;
    }
    .detect-h-processing-dots i:nth-child(2) { animation-delay: 0.22s; }
    .detect-h-processing-dots i:nth-child(3) { animation-delay: 0.44s; }
    .detect-h-out-wrap {
      flex: 0 0 58px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: stretch;
      justify-content: center;
    }
    .detect-h-out {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 8px 5px;
      background: linear-gradient(160deg, #fff7ed, #fff);
      border: 1px solid #fed7aa;
      border-radius: 7px;
      text-align: center;
      animation: detect-out-pulse 2s ease-in-out infinite;
    }
    .detect-h-out-tag {
      font-size: 0.375rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #c2410c;
    }
    .detect-h-out-type {
      font-size: 0.5rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
    }
    .detect-h-out-src {
      font-size: 0.375rem;
      color: var(--muted);
    }

    /* Option V — vertical compact */
    .detect-v-body {
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-width: 200px;
      margin: 0 auto;
    }
    .detect-v-sources {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }
    .detect-v-src {
      font-size: 0.5rem;
      font-weight: 700;
      color: var(--navy);
      background: #fff;
      border: 1px solid rgba(6,182,212,0.35);
      padding: 3px 6px;
      border-radius: 4px;
    }
    .detect-v-drop {
      align-self: center;
      width: 2px;
      height: 14px;
      background: linear-gradient(180deg, rgba(6,182,212,0.5), rgba(6,182,212,0.1));
      border-radius: 1px;
    }
    .detect-v-engine {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }
    .detect-v-engine .ml-engine-logo-svg { width: 44px; }
    .detect-v-engine .ml-engine-status { font-size: 0.375rem; }
    .detect-v-meta {
      font-size: 0.375rem;
      color: #94a3b8;
      text-align: center;
      line-height: 1.35;
      margin: 0;
    }
    .detect-v-out {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px;
      background: linear-gradient(90deg, #fff7ed, #fff);
      border: 1px solid #fed7aa;
      border-radius: 6px;
      animation: detect-out-pulse 2s ease-in-out infinite;
    }
    .detect-v-out-tag {
      flex-shrink: 0;
      font-size: 0.375rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #c2410c;
      background: #fff;
      padding: 2px 4px;
      border-radius: 3px;
      border: 1px solid #fdba74;
    }
    .detect-v-out-text {
      font-size: 0.5rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.2;
    }
    .detect-v-out-src {
      margin-left: auto;
      font-size: 0.375rem;
      color: var(--muted);
      flex-shrink: 0;
    }


    .flow-pills {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }
    .flow-pills .action-pill {
      font-size: 0.6875rem;
      padding: 6px 10px;
      background: #fff;
      border: 1px solid rgba(31,77,143,0.22);
      border-radius: 6px;
      font-weight: 600;
      color: var(--navy);
    }
    .flow-pills .action-pill--auto {
      background: rgba(31,77,143,0.08);
      border-color: rgba(31,77,143,0.35);
    }
    .flow-pills .flow-response-divider {
      color: #cbd5e1;
      font-size: 0.875rem;
      user-select: none;
    }
    .flow-foot {
      margin: 8px 0 0;
      padding: 14px 0 6px;
      border-top: 1px solid var(--border);
      font-size: 0.75rem;
      color: var(--muted);
      text-align: center;
      line-height: 1.45;
    }

    /* Real-time dashboard section */
    .ticker-note {
      font-size: 0.75rem;
      color: var(--muted);
      text-align: center;
      margin: 0 0 12px;
    }
    .ticker-wrap {
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 2px 12px rgba(15,23,42,0.06);
      border: 1px solid var(--border);
    }
    .ticker-label {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 14px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: var(--navy);
    }
    .ticker-label-left { display: flex; align-items: center; gap: 8px; }
    .ticker-label .live {
      width: 8px; height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }
    .ticker-hint { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.625rem; }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
    .ticker-track { height: 168px; overflow: hidden; background: #fff; }
    .ticker-scroll { animation: scroll-up 24s linear infinite; }
    .ticker-scroll.is-paused { animation-play-state: paused; }
    @keyframes scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 9px 14px;
      border: none;
      border-bottom: 1px solid var(--border);
      background: #fff;
      font-size: 0.8125rem;
      color: var(--text);
      text-align: left;
      font-family: inherit;
    }
    .ticker-sev {
      flex: 0 0 52px;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .ticker-copy {
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: var(--text);
    }
    .ticker-copy strong { font-weight: 700; color: var(--navy); }
    .ticker-copy em {
      font-style: normal;
      color: var(--muted);
      font-weight: 500;
    }
    .ticker-src {
      display: inline-block;
      font-size: 0.625rem;
      font-weight: 600;
      color: var(--navy);
      background: #ecfeff;
      border: 1px solid rgba(6,182,212,0.3);
      padding: 1px 6px;
      border-radius: 4px;
      margin-left: 4px;
      vertical-align: baseline;
    }
    .ticker-meta {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 0.6875rem;
      white-space: nowrap;
    }
    .ticker-id { font-variant-numeric: tabular-nums; opacity: 0.85; }
    .ticker-time { color: var(--muted); font-size: 0.75rem; white-space: nowrap; }
    .sev-high { color: #c2410c; }
    .sev-med { color: #0369a1; }
    .sev-crit { color: #b91c1c; }

    .insight-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-start;
      margin: 0 0 18px;
    }
    .insight-pill {
      font-size: var(--label-size);
      font-weight: var(--label-weight);
      letter-spacing: var(--label-tracking);
      text-transform: uppercase;
      color: var(--navy);
      background: #ecfeff;
      border: 1px solid rgba(6,182,212,0.35);
      padding: 6px 12px;
      border-radius: 20px;
    }
    .dash-showcase {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .dash-showcase .shot-frame {
      line-height: 0;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(15,23,42,0.08);
    }
    .dash-showcase .shot-frame img {
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
    }
    .dash-showcase .shot-caption {
      font-size: 0.8125rem;
      padding: 10px 12px;
      line-height: 1.4;
    }

    .action-strip {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px;
    }
    .action-pill {
      padding: 7px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--navy);
    }

    .dash-trio-balanced {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .mock-unchanged-note {
      margin-top: 24px;
      padding: 14px 20px;
      text-align: center;
      font-size: 0.8125rem;
      color: var(--muted);
      background: var(--bg);
      border: 1px dashed var(--border);
      border-radius: 10px;
    }
    .mock-unchanged-note strong { color: var(--text); }

    @media (max-width: 720px) {
      .dash-showcase { grid-template-columns: 1fr; }
      .flow-block-split { grid-template-columns: 1fr; }
      .shot-stack--connect .shot-card--front { margin-top: -72px; margin-left: 24%; width: 72%; }
      .shot-stack--triage .shot-card--front { margin-top: -90px; margin-left: 28%; width: 64%; }
    }

    /* Step 2 output — line sibling of flag, label floats above (same Y as ML) */
    .detect-engine--flow .detect-h-conn--out {
      margin-top: 0;
      align-self: center;
      background: linear-gradient(90deg, rgba(6,182,212,0.35), rgba(249,115,22,0.55));
    }
    .detect-engine--flow .flow-out-flag-wrap {
      position: relative;
      flex: 0 0 auto;
      margin-top: 0;
      align-self: center;
      line-height: normal;
    }
    .detect-engine--flow .flow-out-label {
      position: absolute;
      bottom: calc(100% + 4px);
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #94a3b8;
      white-space: nowrap;
      margin: 0;
    }
    .detect-engine--flow .flow-out-flag {
      width: 72px;
      padding: 8px 6px;
      border: 1px solid #fed7aa;
      border-radius: 10px;
      background: linear-gradient(160deg, #fff7ed, #fff);
      box-shadow: 0 2px 8px rgba(249,115,22,0.12);
      box-sizing: border-box;
      text-align: center;
    }
    .detect-engine--flow .flow-out-flagged {
      display: block;
      font-size: 0.5rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #c2410c;
      margin: 0 0 2px;
    }
    .detect-engine--flow .flow-out-threat {
      display: block;
      font-size: 0.5625rem;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.25;
      margin: 0;
    }
  
  

/* Legacy pricing + contact (from production landing) */
/* Pricing Section - Smaller, Uniform Cards */
  .pricing-section {
    /* padding/border via .landing-section */
  }

  
  .pricing-grid {
    display: grid;
    gap: 18px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Desktop: keep all 5 plans visible without horizontal scrolling */
  .pricing-grid-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  /* Tablet: 3 + 2 */
  @media (max-width: 1200px) {
    .pricing-grid-five {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* Mobile: stack */
  @media (max-width: 760px) {
    .pricing-grid-five {
      grid-template-columns: 1fr;
    }
  }

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 400px;
  }

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }

  .pricing-card.popular {
    border-color: var(--light-blue);
    border-width: 3px;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
  }

  .popular-badge {
    position: static;
    display: inline-block;
    margin: 0 auto 10px;
    background: var(--light-blue);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    z-index: 5;
  }

.pricing-tier {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0 12px;
  }

.pricing-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
  }

.pricing-period {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0 0 24px;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
  }

  .pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.45;
  }

.pricing-features li:before {
    content: "✓";
    color: var(--light-blue);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
  }

  .pricing-cta {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .pricing-cta-primary {
    background: var(--navy);
    color: white;
  }

  .pricing-cta-primary:hover {
    background: #163a6f;
    transform: translateY(-2px);
  }

  .pricing-cta-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--navy);
  }

  .pricing-cta-secondary:hover {
    background: rgba(31, 77, 143, 0.05);
  }

  /* Integrations - More Compact */
  .integrations-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
  }

  .integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

  .integration-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
  }

  .integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-color: var(--light-blue);
  }

  .integration-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .integration-icon {
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .integration-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--light-blue);
    stroke-width: 2;
  }

  .integration-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
  }

  .integration-description {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 14px;
    line-height: 1.55;
  }

  .integration-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .provider-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
  }

  /* Final CTA - More Compact */
  .final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #163a6f 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
  }

  .final-cta-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }

  .final-cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0 0 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-cta-white {
    background: white;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
  }

  .btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  }

  @media (max-width: 760px) {
    .benefits-stats-section .section-subtitle {
      margin: 0 auto 2rem;
    }

    .why-stat {
      padding: 0.7rem 0.5rem 0.6rem;
    }

    .why-stat-value {
      font-size: 1.0625rem;
    }

    .why-pillars {
      grid-template-columns: 1fr;
    }

    .why-value {
      padding: 0.85rem 1rem;
    }
  }

  @media (max-width: 899px) {
    .landing-page {
      padding-top: 168px;
    }

    .landing-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-rows: auto auto;
      column-gap: 10px;
      row-gap: 8px;
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }

    .landing-logo-section {
      grid-column: 1;
      grid-row: 1;
      min-width: 0;
      max-width: 100%;
      flex-shrink: 1;
      overflow: hidden;
    }

    .landing-logo-section a {
      display: block;
      max-width: 100%;
      line-height: 0;
    }

    .nav-auth {
      grid-column: 2;
      grid-row: 1;
      justify-self: end;
      flex-shrink: 0;
      z-index: 2;
    }

    .why-pillars {
      grid-template-columns: 1fr;
      grid-template-rows: none;
    }

    .why-pillar {
      grid-row: auto;
      display: flex;
      flex-direction: column;
    }

    .why-pillar-body {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 8px;
      padding: 8px;
    }

    .why-pillar > .why-value {
      margin: 0;
    }

    .landing-nav-row {
      position: static;
      transform: none;
      max-width: none;
      pointer-events: auto;
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: stretch;
      width: 100%;
    }

    .nav-pill-track {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      width: 100%;
      gap: 4px;
      padding: 5px;
      border-radius: 14px;
      overflow: visible;
    }

    .nav-pill-track a {
      padding: 8px 6px;
      font-size: 0.8125rem;
      flex: none;
      text-align: center;
      min-width: 0;
      overflow: visible;
    }

    .landing-logo {
      height: 72px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: left center;
    }

    .btn-nav-login,
    .btn-nav-signup {
      padding: 5px 9px;
      font-size: 0.6875rem;
    }

    .hero-section {
      padding: 40px 16px 32px;
    }

    .hero-title {
      font-size: clamp(1.5rem, 5vw, 1.875rem);
    }

    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 24px;
    }

    .hero-capabilities {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 12px;
      margin-bottom: 28px;
    }

    .hero-badge {
      font-size: 0.8125rem;
      padding: 6px 12px;
    }

    .hero-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .btn-hero {
      justify-content: center;
      width: 100%;
      box-sizing: border-box;
    }

    .section {
      padding: 40px 16px;
    }

    .threats-grid {
      grid-template-columns: 1fr;
    }

    .pricing-grid,
    .pricing-grid-five {
      grid-template-columns: 1fr !important;
    }

    .pricing-card {
      min-height: 0;
      padding: 20px 16px;
    }

    .pricing-price {
      font-size: 1.75rem;
    }

    .pricing-cta {
      width: 100%;
      box-sizing: border-box;
    }
  }

  @media (max-width: 380px) {
    .landing-logo {
      height: 64px;
    }

    .nav-pill-track a {
      font-size: 0.8125rem;
      padding: 6px 3px;
    }

    .btn-nav-login,
    .btn-nav-signup {
      font-size: 0.75rem;
      padding: 6px 10px;
    }
  }

  @media (min-width: 900px) {
    .landing-header {
      padding: 6px 24px;
      grid-template-columns: 1fr auto 1fr;
      gap: 8px 16px;
    }

    .landing-nav-row {
      justify-self: center;
      width: auto;
      max-width: none;
    }

    .nav-pill-track {
      display: inline-flex;
      width: auto;
      padding: 4px;
      gap: 3px;
    }

    .nav-pill-track a {
      flex: none;
      padding: 6px 12px;
      font-size: 0.9375rem;
      text-align: center;
    }

    .landing-logo {
      height: 68px;
      max-width: none;
      object-fit: contain;
      object-position: left center;
    }

    .landing-page {
      padding-top: 88px;
    }
  }

  @media (min-width: 1440px) {
    .landing-logo {
      height: 76px;
    }

    .nav-pill-track a {
      padding: 6px 14px;
      font-size: 1rem;
    }

    .landing-page {
      padding-top: 96px;
    }
  }

  /* Prevent fixed header from hiding anchored section titles */
  #home, #benefits, #platform, #features, #security, #pricing, #contact {
    scroll-margin-top: 100px;
  }

  @media (max-width: 899px) {
    #home, #benefits, #platform, #features, #security, #pricing, #contact {
      scroll-margin-top: 176px;
    }
  }


  /* Contact form field sizing */
  #contact input, #contact textarea, #contact select {
    width: 100%;
    box-sizing: border-box;
  }