  :root {
   --bg: #050a0f;
    --surface: #23133a;
    --surface2: #1f1232;
    --acid: #883CF0;
    --acid2: #7b5cff;
    --warn: #af62c8;
    --gold: #a78bfa;
    --text: #e0f0ff;
    --muted: #d6d6d6;
    --border: #3a1c63;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: #191127;
    color: var(--text);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--acid);
    border-radius: 50%;
    position: absolute; transform: translate(-50%,-50%);
    transition: width .2s, height .2s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--acid);
    border-radius: 50%;
    position: absolute; transform: translate(-50%,-50%);
    transition: all .15s ease;
    opacity: 0.6;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 1; }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.4;
  }

  /* GRID BACKGROUND */
  body::after {
    content: '';
    position: fixed; inset: 0;
    background-image:
      linear-gradient(#3e256510 1px, transparent 1px),
      linear-gradient(90deg, #3e25650f 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, #180f26, transparent);
    backdrop-filter: blur(4px);
  }
  .logo {
    
    font-size: 22px; font-weight: 800;
    color: var(--acid);
    letter-spacing: -0.5px;
    text-decoration: none;
  }
  .logo span { color: var(--text); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--acid); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--acid);
    color: var(--acid);
    padding: 10px 24px;
    font-family: 'Space Mono', monospace;
    font-size: 12px; letter-spacing: 2px;
    cursor: none;
    transition: all .2s;
    text-transform: uppercase;
  }
  .nav-cta:hover { background: var(--acid); color: var(--bg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 60px 80px;
    position: relative; z-index: 1;
    overflow: hidden;
  }
  .hero-content { max-width: 700px; position: relative; z-index: 2; }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--acid); margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 40px; height: 1px; background: var(--acid);
  }
  .hero h1 {
    
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 800; line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 32px;
  }
  .hero h1 .accent { color: var(--acid); display: block; }
  .hero h1 .accent2 { color: var(--warn); display: block; }
  .hero-desc {
    font-size: 14px; line-height: 1.9;
    color: var(--muted); max-width: 480px;
    margin-bottom: 48px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--acid);
    color: var(--bg);
    border: none; padding: 16px 36px;
     font-size: 14px; font-weight: 700;
    cursor: none; letter-spacing: 1px;
    transition: all .2s; position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: white; opacity: 0; transition: opacity .2s;
  }
  .btn-primary:hover::after { opacity: 0.15; }
  .btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid #3a1c63;
    padding: 16px 36px;
    font-family: 'Space Mono', monospace; font-size: 12px;
    cursor: none; letter-spacing: 1px;
    transition: all .2s;
  }
  .btn-ghost:hover { border-color: var(--acid); color: var(--acid); }

  /* HERO ORBS */
  .hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(80px);
  }
  .orb1 { width: 600px; height: 600px; background: #a200ff0d; top: -100px; right: -100px; }
  .orb2 { width: 400px; height: 400px; background: #be3bff0f; bottom: 0; right: 300px; }
  .orb3 { width: 300px; height: 300px; background: #8000ff12; top: 200px; right: 200px; }

  /* THREAT TICKER */
  .ticker-wrap {
    position: relative; z-index: 1;
    background: var(--surface); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0; overflow: hidden;
  }
  .ticker-label {
    position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
    background: var(--warn);
    color: var(--bg); font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 0 20px; display: flex; align-items: center;
  }
  .ticker-track {
    display: flex; gap: 80px;
    animation: ticker 30s linear infinite;
    padding-left: 140px; width: max-content;
  }
  .ticker-item {
    font-size: 11px; color: var(--muted); white-space: nowrap;
    letter-spacing: 1px;
  }
  .ticker-item strong { color: var(--acid); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* STATS STRIP */
  .stats-strip {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
  }
  .stat-cell {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: background .3s;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: var(--surface); }
  .stat-cell::before {
    content: attr(data-index);
    position: absolute; top: 16px; right: 20px;
    font-size: 10px; color: var(--muted); letter-spacing: 2px;
  }
  .stat-num {
    
    font-size: 52px; font-weight: 800;
    color: var(--acid); line-height: 1;
    margin-bottom: 8px;
  }
  .stat-num.warn { color: var(--warn); }
  .stat-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; line-height: 1.6; }

  /* SECTION */
  section { position: relative; z-index: 1; }
  .section-header {
    padding: 80px 60px 48px;
    display: flex; align-items: flex-end; justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .section-label {
    font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--acid); margin-bottom: 12px;
  }
  .section-title {
    
    font-size: clamp(32px, 4vw, 56px); font-weight: 800;
    letter-spacing: -2px; line-height: 1;
  }
  .section-sub { font-size: 12px; color: var(--muted); max-width: 300px; text-align: right; line-height: 1.7; }

  /* RISK ASSESSMENT TOOL */
  .risk-tool {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .risk-form {
    padding: 60px;
    border-right: 1px solid var(--border);
  }
  .risk-title {
     font-size: 24px; font-weight: 700;
    margin-bottom: 8px;
  }
  .risk-sub { font-size: 11px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
  .form-group { margin-bottom: 28px; }
  .form-label {
    display: block; font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
  }
  .form-select, .form-range {
    width: 100%; background: var(--surface2);
    border: 1px solid var(--border); color: var(--text);
    padding: 12px 16px; font-family: 'Space Mono', monospace; font-size: 12px;
    appearance: none; cursor: none;
  }
  .form-select:focus, .form-range:focus { outline: none; border-color: var(--acid); }
  .form-select option { background: var(--surface2); }
  .range-wrap { position: relative; }
  .form-range {
    padding: 0; height: 4px; cursor: none;
    accent-color: var(--acid);
  }
  .range-val {
    position: absolute; right: 0; top: -28px;
    font-size: 18px;  font-weight: 700;
    color: var(--acid);
  }
  .toggle-group { display: flex; gap: 8px; flex-wrap: wrap; }
  .toggle-btn {
    padding: 8px 16px; background: transparent;
    border: 1px solid var(--border); color: var(--muted);
    font-family: 'Space Mono', monospace; font-size: 11px;
    cursor: none; transition: all .2s;
  }
  .toggle-btn.active { background: var(--acid); color: var(--bg); border-color: var(--acid); }
  .calc-btn {
    width: 100%; margin-top: 16px;
    background: var(--surface2); border: 1px solid var(--acid);
    color: var(--acid); padding: 16px;
     font-size: 14px; font-weight: 700;
    letter-spacing: 2px; cursor: none; transition: all .3s;
  }
  .calc-btn:hover { background: var(--acid); color: var(--bg); }

  /* RISK RESULT */
  .risk-result {
    padding: 60px; display: flex; flex-direction: column; justify-content: center;
    background: var(--surface);
  }
  .risk-score-wrap { margin-bottom: 48px; }
  .risk-score-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
  .risk-score {
     font-size: 100px; font-weight: 800;
    line-height: 1; color: var(--acid);
    transition: color .5s, opacity .5s;
  }
  .risk-score.high { color: var(--warn); }
  .risk-score.medium { color: var(--gold); }
  .risk-level { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
  .risk-bars { display: flex; flex-direction: column; gap: 14px; }
  .risk-bar-row { display: flex; align-items: center; gap: 16px; }
  .risk-bar-label { font-size: 10px; color: var(--muted); width: 130px; letter-spacing: 1px; }
  .risk-bar-track {
    flex: 1; height: 4px; background: var(--surface2); overflow: hidden;
  }
  .risk-bar-fill {
    height: 100%; background: var(--acid);
    transition: width 1s cubic-bezier(.16,1,.3,1);
  }
  .risk-bar-fill.warn { background: var(--warn); }
  .risk-bar-fill.gold { background: var(--gold); }
  .risk-bar-pct { font-size: 11px; color: var(--text); width: 36px; text-align: right; }
  .risk-cta { margin-top: 40px; }
  .risk-cta-text { font-size: 11px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

  /* COVERAGE CARDS */
  .coverage-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
  }
  .coverage-card {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .3s; position: relative; overflow: hidden;
    cursor: none;
  }
  .coverage-card:nth-child(3n) { border-right: none; }
  .coverage-card:hover { background: var(--surface); }
  .coverage-card:hover .card-arrow { opacity: 1; transform: translate(4px,-4px); }
  .card-icon { font-size: 28px; margin-bottom: 24px; display: block; }
  .card-name {
     font-size: 20px; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.5px;
  }
  .card-desc { font-size: 11px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
  .card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .card-tag {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 10px; border: 1px solid var(--border); color: var(--muted);
  }
  .card-arrow {
    position: absolute; top: 24px; right: 24px;
    font-size: 18px; color: var(--acid);
    opacity: 0; transition: all .3s; display: block;
  }
  .coverage-card.featured {
    background: var(--surface2);
    border-color:#5e309d;
  }
  .coverage-card.featured .card-name { color: var(--acid); }
  .featured-badge {
    position: absolute; top: 0; right: 0;
    background: var(--acid); color: var(--bg);
    font-size: 9px; letter-spacing: 2px; padding: 5px 12px;
  }

  /* PLANS */
  .plans-section { padding: 0; }
  .plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
  }
  .plan-card {
    padding: 56px 48px;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: background .3s;
  }
  .plan-card:last-child { border-right: none; }
  .plan-card.popular { background: var(--surface2); }
  .popular-badge {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--acid); color: var(--bg);
    text-align: center; padding: 8px;
    font-size: 10px; letter-spacing: 3px; font-weight: 700;
  }
  .plan-name {
     font-size: 13px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 24px;
  }
  .plan-card.popular .plan-name { color: var(--acid); margin-top: 40px; }
  .plan-price {
     font-size: 56px; font-weight: 800;
    line-height: 1; letter-spacing: -2px; margin-bottom: 6px;
  }
  .plan-period { font-size: 11px; color: var(--muted); margin-bottom: 40px; }
  .plan-features { list-style: none; margin-bottom: 40px; }
  .plan-features li {
    font-size: 12px; color: var(--muted); padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
  }
  .plan-features li::before { content: '→'; color: var(--acid); }
  .plan-features li.dim::before { content: '×'; color: var(--surface2); }
  .plan-features li.dim { color: #c1b5c766; }
  .plan-btn {
    width: 100%; padding: 14px;
    background: transparent; border: 1px solid var(--border);
    color: var(--muted); 
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    cursor: none; transition: all .2s;
  }
  .plan-card.popular .plan-btn {
    background: var(--acid); color: var(--bg); border-color: var(--acid);
  }
  .plan-btn:hover { border-color: var(--acid); color: var(--acid); }
  .plan-card.popular .plan-btn:hover { opacity: 0.9; color: var(--bg); }

  /* CLAIM TIMELINE */
  .claim-section {
    display: grid; grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
  }
  .claim-info { padding: 80px 60px; border-right: 1px solid var(--border); }
  .claim-visual { padding: 80px 60px; }
  .timeline { margin-top: 48px; position: relative; }
  .timeline::before {
    content: ''; position: absolute;
    left: 17px; top: 0; bottom: 0;
    width: 1px; background: var(--border);
  }
  .tl-item {
    display: flex; gap: 28px; margin-bottom: 40px;
    position: relative;
  }
  .tl-dot {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg); display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0; position: relative; z-index: 1;
    transition: border-color .3s, background .3s;
  }
  .tl-item.active .tl-dot { border-color: var(--acid); background: #291a3e4b; }

  .tl-step { font-size: 9px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
  .tl-title {  font-size: 16px; font-weight: 700; margin-bottom: 6px; }
  .tl-desc { font-size: 11px; color: var(--muted); line-height: 1.8; }
  .tl-time { font-size: 10px; color: var(--acid); margin-top: 6px; }

  /* FAQ */
  .faq-section { border-top: 1px solid var(--border); }
  .faq-wrap { padding: 60px; max-width: 900px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none; color: var(--text);
     font-size: 16px; font-weight: 600;
    text-align: left; padding: 28px 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: none; transition: color .2s;
    gap: 20px;
  }
  .faq-q:hover { color: var(--acid); }
  .faq-icon {
    font-size: 22px; color: var(--muted); flex-shrink: 0;
    transition: transform .3s, color .3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--acid); }
  .faq-a {
    max-height: 0; overflow: hidden;
    font-size: 13px; color: var(--muted); line-height: 1.9;
    transition: max-height .4s ease, padding .4s;
  }
  .faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }

  /* FOOTER */
  footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 60px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .footer-brand .logo { font-size: 28px; margin-bottom: 16px; display: block; }
  .footer-brand p { font-size: 11px; color: var(--muted); line-height: 1.8; max-width: 260px; }
  .footer-col h4 {  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
  .footer-col a { display: block; font-size: 11px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
  .footer-col a:hover { color: var(--acid); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 60px;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; z-index: 1;
  }
  .footer-bottom p { font-size: 10px; color: var(--muted); letter-spacing: 1px; }

  /* PULSE ANIMATION */
  @keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }
  .pulse { animation: pulse 2s ease-in-out infinite; }

  /* FADE IN */
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(24px); }
    to { opacity:1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp .8s ease both; }
  .fade-up:nth-child(2) { animation-delay: .1s; }
  .fade-up:nth-child(3) { animation-delay: .2s; }
  .fade-up:nth-child(4) { animation-delay: .3s; }

  /* GLITCH */
  @keyframes glitch {
    0%,100%{clip-path:inset(0 0 100% 0);transform:translate(0)}
    5%{clip-path:inset(10% 0 60% 0);transform:translate(-4px,2px)}
    10%{clip-path:inset(50% 0 20% 0);transform:translate(4px,-2px)}
    15%{clip-path:inset(0 0 100% 0);transform:translate(0)}
  }
  .hero h1::after {
    content: attr(data-text);
    position: absolute; left: 0; top: 0; color: var(--warn);
    animation: glitch 6s steps(1) infinite;
    pointer-events: none;
  }
  .hero h1 { position: relative; }

  @media(max-width:900px){
    nav{padding:20px 24px}
    .nav-links{display:none}
    .hero{padding:100px 24px 60px}
    .stats-strip{grid-template-columns:1fr 1fr}
    .stat-cell{border-bottom:1px solid var(--border)}
    .risk-tool,.claim-section{grid-template-columns:1fr}
    .coverage-grid{grid-template-columns:1fr 1fr}
    .plans-grid{grid-template-columns:1fr}
    .plan-card{border-right:none;border-bottom:1px solid var(--border)}
    footer{grid-template-columns:1fr 1fr;padding:40px 24px}
    .faq-wrap,.risk-form,.risk-result,.claim-info,.claim-visual{padding:40px 24px}
    .section-header{padding:60px 24px 40px;flex-direction:column;gap:16px}
    .section-sub{text-align:left}
    .coverage-card:nth-child(2n){border-right:none}
    .coverage-card{padding:32px 24px}
    .footer-bottom{padding:24px;flex-direction:column;gap:8px}
  }