* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; color: #1a1a2e; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

  /* ── Nav ───────────────────────────────────────────────── */
  nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid #e5e7eb; z-index: 100; }
  .nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { font-size: 18px; font-weight: 800; color: #6366f1; letter-spacing: -0.5px; text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 8px; }
  .nav-links a { font-size: 14px; color: #6b7280; text-decoration: none; font-weight: 500; transition: color .15s; padding: 6px 10px; }
  .nav-links a:hover { color: #1a1a2e; }
  .nav-btn { padding: 8px 18px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all .15s; }
  .nav-btn-ghost { color: #374151; }
  .nav-btn-primary { background: #6366f1; color: #fff !important; }
  .nav-btn-primary:hover { background: #4f46e5; }

  /* ── Hero (split layout) ────────────────────────────────── */
  .hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #f0f0ff 0%, #e8f4f8 50%, #f0fdf4 100%); position: relative; overflow: hidden; padding: 80px 24px 40px; }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
  @media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
  .hero-copy { }
  .hero-copy h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
  .hero-copy h1 .gradient { color: #0f766e; }
  .hero-copy p { font-size: 17px; color: #6b7280; max-width: 480px; margin-bottom: 28px; line-height: 1.6; }
  @media (max-width: 960px) { .hero-copy p { margin: 0 auto 28px; } }
  .hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
  .btn-lg { padding: 14px 32px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all .15s; display: inline-block; }
  .btn-primary { background: #6366f1; color: #fff; }
  .btn-primary:hover { background: #4f46e5; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(99,102,241,.3); }
  .btn-outline { border: 2px solid #d1d5db; color: #374151; background: #fff; }
  .btn-outline:hover { border-color: #6366f1; color: #6366f1; }
  .hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
  @media (max-width: 960px) { .hero-stats { justify-content: center; } }
  .hero-stat { text-align: left; }
  @media (max-width: 960px) { .hero-stat { text-align: center; } }
  .hero-stat .num { font-size: 28px; font-weight: 800; color: #6366f1; line-height: 1; }
  .hero-stat .label { font-size: 12px; color: #6b7280; margin-top: 4px; }

  /* ── Product preview ─────────────────────────────────────── */
  .hero-demo { position: relative; }
  .hero-demo::before,
  .hero-demo::after { content: ''; position: absolute; border-radius: 999px; pointer-events: none; z-index: 0; }
  .hero-demo::before { width: 240px; height: 240px; right: -34px; top: -30px; background: radial-gradient(circle, rgba(99,102,241,.16), rgba(99,102,241,0) 68%); }
  .hero-demo::after { width: 220px; height: 220px; left: -26px; bottom: -24px; background: radial-gradient(circle, rgba(6,182,212,.14), rgba(6,182,212,0) 70%); }
  .hero-preview { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 80px rgba(0,0,0,.12); text-align: left; border: 1px solid #e5e7eb; }
  .preview-bar { background: #f9fafb; padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #e5e7eb; }
  .preview-bar-dots { display: flex; gap: 6px; }
  .preview-dot { width: 10px; height: 10px; border-radius: 50%; }
  .preview-dot.r { background: #f85149; }
  .preview-dot.y { background: #d29922; }
  .preview-dot.g { background: #3fb950; }
  .preview-url { font-size: 11px; color: #9ca3af; background: #fff; border: 1px solid #e5e7eb; border-radius: 6px; padding: 4px 12px; flex: 1; }
  .preview-body { padding: 16px; position: relative; z-index: 1; background:
      linear-gradient(180deg, rgba(99,102,241,.04), rgba(99,102,241,0) 28%),
      linear-gradient(90deg, rgba(229,231,235,.6) 1px, transparent 1px),
      linear-gradient(rgba(229,231,235,.45) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    background-position: 0 0, 0 0, 0 0;
  }

  /* Report header */
  .rpt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
  .rpt-domain { font-size: 15px; font-weight: 700; color: #1a1a2e; }
  .rpt-sub { font-size: 11px; color: #9ca3af; margin-top: 3px; }
  .rpt-meta { font-size: 11px; color: #9ca3af; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .rpt-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 600; }
  .rpt-badge-done { background: #dcfce7; color: #16a34a; }
  .rpt-badge-time { background: #f3f4f6; color: #6b7280; }
  .rpt-badge-run { background: #eef2ff; color: #6366f1; }

  .rpt-grid { display: grid; gap: 12px; }
  .rpt-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .rpt-kpi { background: rgba(255,255,255,.88); border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; backdrop-filter: blur(6px); }
  .rpt-kpi-num { font-size: 20px; font-weight: 800; color: #1f2937; line-height: 1; }
  .rpt-kpi-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; margin-top: 5px; }

  .rpt-lanes { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
  .rpt-panel { background: rgba(255,255,255,.9); border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; backdrop-filter: blur(8px); }
  .rpt-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .rpt-panel-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; }
  .rpt-panel-chip { padding: 3px 7px; border-radius: 999px; background: #eef2ff; color: #6366f1; font-size: 10px; font-weight: 700; }

  .rpt-timeline { display: grid; gap: 10px; }
  .rpt-tl-row { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; }
  .rpt-tl-dot { width: 10px; height: 10px; border-radius: 50%; position: relative; }
  .rpt-tl-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; opacity: .22; }
  .rpt-tl-dot.disco { background: #6366f1; }
  .rpt-tl-dot.disco::after { background: #6366f1; }
  .rpt-tl-dot.risk { background: #ea580c; }
  .rpt-tl-dot.risk::after { background: #ea580c; }
  .rpt-tl-dot.secret { background: #16a34a; }
  .rpt-tl-dot.secret::after { background: #16a34a; }
  .rpt-tl-main { min-width: 0; }
  .rpt-tl-title { font-size: 12px; font-weight: 600; color: #1f2937; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rpt-tl-sub { font-size: 10px; color: #9ca3af; margin-top: 2px; }
  .rpt-tl-score { font-size: 10px; font-weight: 700; color: #6366f1; background: #eef2ff; padding: 4px 7px; border-radius: 999px; }

  .rpt-assets { display: grid; gap: 8px; }
  .rpt-asset { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 10px; border-radius: 10px; background: #f9fafb; border: 1px solid #eef2f7; }
  .rpt-asset-main { min-width: 0; }
  .rpt-asset-name { font-size: 11px; font-weight: 700; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rpt-asset-meta { font-size: 10px; color: #9ca3af; margin-top: 2px; }
  .rpt-asset-pill { font-size: 10px; font-weight: 700; border-radius: 999px; padding: 4px 7px; }
  .rpt-asset-pill.hot { background: #fff7ed; color: #c2410c; }
  .rpt-asset-pill.watch { background: #fffbeb; color: #b45309; }
  .rpt-asset-pill.clean { background: #f0fdf4; color: #15803d; }

  .rpt-more { text-align: center; padding: 8px 6px 2px; font-size: 11px; color: #6366f1; font-weight: 600; }
  @media (max-width: 700px) {
    .rpt-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rpt-lanes { grid-template-columns: 1fr; }
  }

  /* Animate in */
  .rpt-fadein { opacity: 0; transform: translateY(10px); }
  .rpt-fadein.show { opacity: 1; transform: translateY(0); transition: all .5s ease; }

  /* ── Sections ─────────────────────────────────────────── */
  section { padding: 80px 24px; }
  .container { max-width: 1140px; margin: 0 auto; }
  .section-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #6366f1; background: #eef2ff; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
  .section-title { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
  .section-sub { font-size: 16px; color: #6b7280; max-width: 560px; line-height: 1.6; }
  .section-header { text-align: center; margin-bottom: 48px; }
  .section-header .section-sub { margin: 0 auto; }

  /* ── Scroll reveal ─────────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── Features ─────────────────────────────────────────── */
  .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
  .feature-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px; transition: all .25s; cursor: default; }
  .feature-card:hover { border-color: #c7d2fe; box-shadow: 0 8px 30px rgba(99,102,241,.1); transform: translateY(-4px); }
  .feature-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; transition: transform .25s; }
  .feature-card:hover .feature-icon { transform: scale(1.15); }
  .fi-blue { background: #eef2ff; }
  .fi-cyan { background: #ecfeff; }
  .fi-green { background: #f0fdf4; }
  .fi-amber { background: #fffbeb; }
  .feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .feature-card p { font-size: 14px; color: #6b7280; line-height: 1.5; }

  /* ── How it Works ─────────────────────────────────────── */
  .steps { background: #f9fafb; overflow: hidden; }
  .flow-board { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 320px minmax(0, 1fr); gap: 22px; align-items: center; }
  .flow-col { display: grid; gap: 18px; position: relative; z-index: 1; }
  .flow-card { border: 1px solid #e5e7eb; border-radius: 18px; padding: 20px; box-shadow: 0 14px 40px rgba(15,23,42,.05); position: relative; overflow: hidden; min-width: 0; }
  .flow-card.kickoff { background: #f8fdfd; border-color: #d5f5f6; }
  .flow-card.detect { background: #f8f9ff; border-color: #dde4ff; }
  .flow-card.prioritize { background: #fffbf2; border-color: #f7e7bf; }
  .flow-card.alert { background: #fff8f2; border-color: #f6dec8; }
  .flow-kicker { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; margin-bottom: 8px; }
  .flow-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.03em; }
  .flow-card p { font-size: 14px; line-height: 1.55; color: #6b7280; }
  .flow-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
  .flow-pill { padding: 6px 10px; border-radius: 999px; background: #f8fafc; border: 1px solid #dbe3ef; font-size: 11px; font-weight: 700; color: #475569; }
  .flow-center { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; min-width: 0; }
  .flow-stage { position: relative; width: 360px; height: 360px; display: flex; align-items: center; justify-content: center; }
  .flow-core { width: 212px; height: 212px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; background:
      radial-gradient(circle at 50% 50%, rgba(255,255,255,.96) 0, rgba(255,255,255,.88) 52%, rgba(255,255,255,.58) 72%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(99,102,241,.14);
    box-shadow: 0 20px 70px rgba(99,102,241,.13);
    z-index: 2;
  }
  .flow-core::before,
  .flow-core::after { content: ''; position: absolute; border-radius: 50%; inset: 18px; border: 1px solid rgba(99,102,241,.18); animation: orbit-pulse 8s ease-in-out infinite; }
  .flow-core::after { inset: -18px; border-color: rgba(15,118,110,.16); animation-delay: -3s; }
  .flow-core-grid { position: absolute; inset: -46px; border-radius: 50%; border: 1px dashed rgba(99,102,241,.12); }
  .flow-core-label { text-align: center; position: relative; z-index: 1; }
  .flow-core-label strong { display: block; font-size: 22px; letter-spacing: -.04em; }
  .flow-core-label span { display: block; margin-top: 6px; font-size: 12px; color: #6b7280; }
  .flow-pulse { position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; border: 1px solid rgba(37,99,235,.22); animation: flow-circle 3.4s ease-out infinite; pointer-events: none; }
  .flow-pulse.teal { border-color: rgba(15,118,110,.24); animation-delay: -1.1s; }
  .flow-pulse.soft { border-color: rgba(99,102,241,.18); animation-delay: -2.2s; }
  .flow-line { position: absolute; top: 50%; width: 124px; height: 2px; transform: translateY(-50%); overflow: hidden; z-index: 1; }
  .flow-line.left { left: 0; }
  .flow-line.right { right: 0; }
  .flow-line::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(99,102,241,0), rgba(99,102,241,.28), rgba(99,102,241,0)); }
  .flow-line::after { content: ''; position: absolute; top: 50%; width: 54px; height: 2px; transform: translateY(-50%); background: linear-gradient(90deg, rgba(15,118,110,0), rgba(15,118,110,.88), rgba(37,99,235,0)); animation: flow-move 2.6s linear infinite; }
  .flow-line.right::after { animation-direction: reverse; }
  .flow-arrow { position: absolute; top: 50%; width: 10px; height: 10px; border-top: 2px solid rgba(15,118,110,.72); border-right: 2px solid rgba(15,118,110,.72); transform: translateY(-50%) rotate(45deg); }
  .flow-line.left .flow-arrow { right: 2px; }
  .flow-line.right .flow-arrow { left: 2px; transform: translateY(-50%) rotate(225deg); }
  .flow-note { margin-top: 16px; text-align: center; font-size: 13px; color: #64748b; }
  @keyframes flow-move { 0% { left: -18%; } 100% { left: 100%; } }
  @keyframes orbit-pulse { 0%,100% { transform: scale(.98); opacity: .5; } 50% { transform: scale(1.03); opacity: .95; } }
  @keyframes flow-circle { 0% { transform: scale(.8); opacity: .65; } 100% { transform: scale(14); opacity: 0; } }
  @media (max-width: 1100px) {
    .flow-board { grid-template-columns: 1fr; }
    .flow-center { order: -1; height: 360px; }
    .flow-stage { width: 340px; height: 340px; }
  }
  @media (max-width: 720px) {
    .flow-center { height: 300px; }
    .flow-stage { width: 280px; height: 280px; }
    .flow-core { width: 184px; height: 184px; }
    .flow-core-grid { inset: -42px; }
    .flow-line { display: none; }
  }

  /* ── Pricing ──────────────────────────────────────────── */
  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
  .pricing-3 { grid-template-columns: 1fr 1fr 1fr; max-width: 1060px; }
  @media (max-width: 900px) { .pricing-3 { grid-template-columns: 1fr; } }
  @media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }
  .price-card { border: 2px solid #e5e7eb; border-radius: 16px; padding: 36px; background: #fff; transition: transform .2s, box-shadow .2s; }
  .price-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
  .price-card.featured { border-color: #6366f1; position: relative; }
  .price-card.featured::before { content: 'POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #6366f1; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 20px; }
  .price-card .plan-name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #6b7280; margin-bottom: 8px; }
  .price-card .price { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
  .price-card .price span { font-size: 16px; font-weight: 500; color: #9ca3af; }
  .price-card .price-desc { font-size: 14px; color: #9ca3af; margin-bottom: 24px; }
  .price-card ul { list-style: none; margin-bottom: 28px; }
  .price-card li { padding: 6px 0; font-size: 14px; display: flex; align-items: start; gap: 10px; }
  .price-card li::before { content: '\2713'; color: #6366f1; font-weight: 700; flex-shrink: 0; }
  .price-card .btn-lg { width: 100%; text-align: center; }

  /* ── Footer ───────────────────────────────────────────── */
  .site-footer { border-top: 1px solid #e5e7eb; padding: 34px 24px 24px; background: #fff; }
  .site-footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
  .site-footer-brand { max-width: 520px; }
  .site-footer-logo { display: inline-block; font-size: 18px; font-weight: 800; color: #111827; text-decoration: none; letter-spacing: -0.03em; margin-bottom: 10px; }
  .site-footer-brand p { color: #6b7280; font-size: 14px; line-height: 1.7; }
  .site-footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
  .site-footer-column { display: grid; gap: 10px; min-width: 160px; }
  .site-footer-heading { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #9ca3af; }
  .site-footer-column a { color: #374151; text-decoration: none; font-size: 14px; font-weight: 500; }
  .site-footer-column a:hover { color: #111827; }
  .site-footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid #f1f5f9; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #9ca3af; font-size: 13px; }
  @media (max-width: 760px) {
    .site-footer-inner { flex-direction: column; }
    .site-footer-links { gap: 28px; }
    .site-footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  /* ── Legal pages ──────────────────────────────────────── */
  .legal-page { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 24%); color: #111827; }
  .legal-shell { padding: 102px 24px 52px; }
  .legal-container { max-width: 860px; margin: 0 auto; background: rgba(255,255,255,.92); border: 1px solid #e5e7eb; border-radius: 24px; box-shadow: 0 24px 70px rgba(15,23,42,.06); padding: 34px 36px; }
  .legal-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: #eef2ff; color: #4f46e5; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
  .legal-container h1 { font-size: clamp(34px, 4vw, 48px); line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 12px; }
  .legal-lead { font-size: 17px; line-height: 1.72; color: #475569; margin-bottom: 18px; max-width: 720px; }
  .legal-section { padding: 16px 0 0; margin-top: 16px; border-top: 1px solid #eef2f7; }
  .legal-section h2 { font-size: 19px; letter-spacing: -0.02em; margin-bottom: 8px; }
  .legal-section p { color: #475569; font-size: 15px; line-height: 1.72; margin-bottom: 8px; }
  .legal-section p:last-child { margin-bottom: 0; }
  .legal-footer { background: transparent; }
  @media (max-width: 720px) {
    .legal-shell { padding: 92px 20px 40px; }
    .legal-container { padding: 24px 20px; border-radius: 18px; }
  }

  /* ── Hero background field ─────────────────────────────── */
  .hero-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  .hero-field::before { content: ''; position: absolute; inset: 0; background:
      radial-gradient(circle at 18% 24%, rgba(99,102,241,.16), transparent 26%),
      radial-gradient(circle at 80% 18%, rgba(6,182,212,.14), transparent 24%),
      radial-gradient(circle at 72% 78%, rgba(34,197,94,.12), transparent 22%);
  }
  .hero-field::after { content: ''; position: absolute; inset: 0; background-image:
      linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 88%);
  }
  .signal-ring { position: absolute; border: 1px solid rgba(99,102,241,.18); border-radius: 50%; animation: pulse-ring 9s ease-in-out infinite; }
  .signal-ring.cyan { border-color: rgba(6,182,212,.18); }
  .signal-ring.green { border-color: rgba(34,197,94,.18); }
  @keyframes pulse-ring { 0%,100% { transform: scale(.94); opacity: .35; } 50% { transform: scale(1.03); opacity: .7; } }
