 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #050505;
    --text: #EBEBEB;
    --accent: #10b981;
    --accent-dim: rgba(16,185,129,0.15);
    --accent-border: rgba(16,185,129,0.3);
    --glass: rgba(255,255,255,0.02);
    --border: rgba(255,255,255,0.08);
    --muted: rgba(235,235,235,0.4);
    --ease: cubic-bezier(0.16,1,0.3,1);
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(16,185,129,0.4); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.15s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
  }
  @media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
  }
  body:hover .cursor { opacity: 1; }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent-border); border-radius: 2px; }

  /* MORPHING BLOBS */
  .blob {
    position: fixed; border-radius: 50%; filter: blur(100px);
    pointer-events: none; z-index: 0; opacity: 0.12;
    animation: morph 8s ease-in-out infinite alternate;
  }
  .blob-1 { width: 500px; height: 500px; background: var(--accent); top: -100px; left: -100px; }
  .blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: 20%; right: -100px; animation-delay: -4s; }
  .blob-3 { width: 300px; height: 300px; background: #6366f1; bottom: 10%; left: 20%; animation-delay: -2s; opacity: 0.06; }
  @keyframes morph {
    0% { border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
    100% { border-radius: 60% 40% 40% 60% / 30% 70% 30% 70%; }
  }

  /* NAVBAR */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px; font-weight: 600; letter-spacing: 0.05em;
    text-decoration: none; color: var(--text);
  }
  .logo-icon {
    width: 32px; height: 32px; background: var(--text);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    transition: transform 0.6s var(--ease);
  }
  .logo-icon:hover { transform: rotate(360deg); }
  .logo-icon svg { width: 18px; height: 18px; color: var(--bg); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 14px; color: var(--muted); text-decoration: none;
    position: relative; transition: color 0.3s;
    font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.02em;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.35s var(--ease);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 24px; border-radius: 9999px;
    background: var(--accent); color: var(--bg);
    font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
    border: none; cursor: none; text-decoration: none;
    animation: pulse-glow 3s ease-in-out infinite;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
  }
  .nav-cta:hover { transform: scale(1.04); }
  @keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  }

  /* TICKER */
  .ticker-wrap {
    position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
    overflow: hidden; border-bottom: 1px solid var(--border);
    background: rgba(5,5,5,0.9); backdrop-filter: blur(8px);
    padding: 10px 0;
  }
  .ticker-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
  }
  .ticker-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; letter-spacing: 0.1em;
    color: var(--muted); display: flex; align-items: center; gap: 8px;
  }
  .ticker-badge {
    padding: 2px 8px; border-radius: 9999px; font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em;
  }
  .badge-safe { background: rgba(16,185,129,0.15); color: var(--accent); }
  .badge-mal { background: rgba(239,68,68,0.15); color: #ef4444; }
  .badge-sus { background: rgba(245,158,11,0.15); color: #f59e0b; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* SECTIONS */
  section { position: relative; z-index: 1; }

  /* HERO */
  #hero {
    min-height: 100vh; padding: 160px 48px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; max-width: 1400px; margin: 0 auto;
  }
  .hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Grotesk', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 28px; border: 1px solid var(--border);
    padding: 8px 16px; border-radius: 9999px;
    background: var(--glass); backdrop-filter: blur(12px);
  }
  .pulse-dot {
    width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
    50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
  }
  .hero-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(60px, 7vw, 100px);
    font-weight: 300; line-height: 0.92;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  .hero-body {
    font-size: 17px; color: var(--muted); line-height: 1.65;
    max-width: 460px; margin-bottom: 44px; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    padding: 14px 32px; border-radius: 9999px;
    background: var(--text); color: var(--bg);
    font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
    border: none; cursor: none; letter-spacing: 0.03em;
    box-shadow: 0 0 30px rgba(16,185,129,0.25);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    text-decoration: none;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(16,185,129,0.4); }
  .btn-ghost {
    padding: 14px 32px; border-radius: 9999px;
    background: transparent; color: var(--text);
    font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2); cursor: none; letter-spacing: 0.03em;
    transition: border-color 0.3s, transform 0.3s var(--ease);
    text-decoration: none;
  }
  .btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

  /* HERO STATS */
  .hero-stats {
    display: flex; gap: 48px; margin-top: 60px; padding-top: 48px;
    border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: 'Newsreader', serif; font-size: 40px; font-weight: 600;
    color: var(--text); line-height: 1;
  }
  .stat-label {
    font-family: 'Space Grotesk', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
    margin-top: 6px;
  }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .hero-main-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(16,185,129,0.2), inset 0 0 20px rgba(255,255,255,0.05);
    animation: float-y 8s ease-in-out infinite;
    border: 1px solid var(--accent-border);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
  }

  
  @keyframes float-y {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
  }
  /* Floating cards removed */
  /* .float-card { ... } */

  /* .card-scan { ... } */
  /* .scan-icon { ... } */
  /* .scan-url { ... } */
  /* .scan-sub { ... } */
  /* .score-ring { ... } */
  /* .score-num { ... } */
  /* .score-label { ... } */
  /* .signal-row { ... } */
  /* .signal-name { ... } */
  /* .signal-val { ... } */
  /* .val-good { ... } */
  /* .val-bad { ... } */
  /* .card-mini-1 { ... } */
  /* .card-mini-2 { ... } */
  /* .mini-title { ... } */
  /* .threat-bar { ... } */
  /* .threat-fill { ... } */
  /* .live-count { ... } */


  /* SCANNER SECTION */
  #scanner {
    padding: 100px 48px; text-align: center;
    max-width: 900px; margin: 0 auto;
  }
  .section-label {
    font-family: 'Space Grotesk', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 20px; display: block;
  }
  .section-title {
    font-family: 'Newsreader', serif; font-size: clamp(40px, 5vw, 64px);
    font-weight: 300; letter-spacing: -0.02em; margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px; color: var(--muted); max-width: 520px;
    margin: 0 auto 48px; font-weight: 300; line-height: 1.65;
  }
  .scanner-box {
    background: var(--glass); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 32px;
    padding: 40px; position: relative; overflow: hidden;
  }
  .scanner-box::before {
    content: ''; position: absolute; inset: -1px;
    background: linear-gradient(transparent, var(--accent-border), transparent);
    background-size: 200% 200%;
    animation: shimmer 4s linear infinite;
    border-radius: 32px; z-index: -1;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
  .scanner-row { display: flex; gap: 16px; align-items: center; }
  .url-input {
    flex: 1; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: 16px;
    padding: 18px 24px; font-family: 'Space Grotesk', sans-serif;
    font-size: 14px; color: var(--text); outline: none;
    transition: border-color 0.3s;
  }
  .url-input::placeholder { color: rgba(235,235,235,0.25); }
  .url-input:focus { border-color: var(--accent-border); }
  .scan-btn {
    padding: 18px 36px; border-radius: 16px;
    background: var(--accent); color: var(--bg);
    font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
    border: none; cursor: none; letter-spacing: 0.04em; white-space: nowrap;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    animation: pulse-glow 3s ease-in-out infinite;
  }
  .scan-btn:hover { transform: scale(1.03); }

  /* PROCESS */
  #process { padding: 100px 48px; max-width: 1400px; margin: 0 auto; }
  .process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px;
  }
  .process-card {
    background: var(--glass); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 28px;
    padding: 40px; position: relative; overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s;
    opacity: 0; transform: translateY(30px);
  }
  .process-card.visible { opacity: 1; transform: translateY(0); }
  .process-card:hover { transform: translateY(-6px); border-color: var(--accent-border); }
  .process-card.featured { border-color: var(--accent-border); background: rgba(16,185,129,0.03); }
  .process-num {
    font-family: 'Newsreader', serif; font-size: 72px; font-weight: 200;
    color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 20px;
  }
  .process-name {
    font-family: 'Newsreader', serif; font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
  }
  .process-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

  /* FEATURES */
  #features { padding: 100px 48px; max-width: 1400px; margin: 0 auto; }
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px;
  }
  .feature-card {
    background: var(--glass); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 28px;
    padding: 40px; position: relative; overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s;
    opacity: 0; transform: translateY(30px);
    --mouse-x: 50%; --mouse-y: 50%;
  }
  .feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(16,185,129,0.12), transparent 40%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none; border-radius: 28px;
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-card.visible { opacity: 1; transform: translateY(0); }
  .feature-card:hover { transform: translateY(-6px) scale(1.01); border-color: var(--accent-border); }
  .feature-card.featured { border-color: var(--accent-border); }
  .feat-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(255,255,255,0.05); display: flex;
    align-items: center; justify-content: center; margin-bottom: 24px;
    transition: transform 0.5s var(--ease);
  }
  .feature-card:hover .feat-icon { transform: rotate(15deg) scale(1.1); }
  .feat-icon svg { width: 22px; height: 22px; color: var(--accent); }
  .feat-title {
    font-family: 'Newsreader', serif; font-size: 20px; font-weight: 400;
    margin-bottom: 10px;
  }
  .feat-desc { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

  /* BENCHMARK TABLE */
  #benchmark { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
  .bench-table {
    width: 100%; border-collapse: collapse; margin-top: 64px;
    background: var(--glass); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
  }
  .bench-table thead tr {
    border-bottom: 1px solid var(--border);
  }
  .bench-table th {
    padding: 20px 28px; text-align: left;
    font-family: 'Space Grotesk', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
    font-weight: 500;
  }
  .bench-table td {
    padding: 18px 28px; border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 14px;
  }
  .bench-table tbody tr:last-child td { border-bottom: none; }
  .bench-table tbody tr:hover td { background: rgba(255,255,255,0.01); }
  .td-name { font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
  .td-accent { color: var(--accent); font-family: 'Newsreader', serif; font-size: 18px; font-weight: 400; }
  .td-muted { color: var(--muted); }
  .td-check {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-family: 'Space Grotesk', sans-serif; font-size: 12px;
  }
  .check-dot {
    width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  .nexora-row td { background: rgba(16,185,129,0.03); }

  /* FAQ */
  #faq { padding: 100px 48px; max-width: 900px; margin: 0 auto; text-align: center; }
  .faq-list { margin-top: 64px; text-align: left; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }
  .faq-item.visible { opacity: 1; transform: none; }
  .faq-q {
    padding: 24px 0; display: flex; justify-content: space-between;
    align-items: center; cursor: none;
    font-family: 'Newsreader', serif; font-size: 20px; font-weight: 300;
    transition: color 0.3s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-q .chevron {
    width: 20px; height: 20px; transition: transform 0.4s var(--ease);
    color: var(--muted); flex-shrink: 0;
  }
  .faq-item.open .faq-q { color: var(--accent); }
  .faq-item.open .chevron { transform: rotate(180deg); color: var(--accent); }
  .faq-a {
    overflow: hidden; max-height: 0;
    transition: max-height 0.5s var(--ease), padding 0.3s;
    font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

  /* CTA */
  #cta { padding: 120px 48px; text-align: center; position: relative; }
  .cta-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 300; letter-spacing: -0.03em; line-height: 0.95;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #EBEBEB 0%, #10b981 50%, #EBEBEB 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s linear infinite;
  }
  @keyframes gradient-shift { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
  .cta-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 48px; font-weight: 300; }
  .cta-btn {
    display: inline-block; padding: 18px 48px; border-radius: 9999px;
    background: var(--accent); color: var(--bg);
    font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
    border: none; cursor: none; letter-spacing: 0.05em; text-decoration: none;
    animation: pulse-glow-big 3s ease-in-out infinite;
    transition: transform 0.3s var(--ease);
  }
  .cta-btn:hover { transform: scale(1.05); }
  @keyframes pulse-glow-big {
    0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    50% { box-shadow: 0 0 0 20px rgba(16,185,129,0); }
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border); padding: 80px 48px 40px;
    background: rgba(5,5,5,0.95);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 280px; }
  .footer-col-title {
    font-family: 'Space Grotesk', sans-serif; font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text); margin-bottom: 20px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 14px; color: var(--muted); text-decoration: none;
    transition: color 0.3s; position: relative;
  }
  .footer-col a:hover { color: var(--text); }
  .footer-col a.accent-link { color: var(--accent); }
  .footer-bottom {
    margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border);
    max-width: 1400px; margin-left: auto; margin-right: auto;
    font-family: 'Space Grotesk', sans-serif; font-size: 12px;
    color: var(--muted); text-align: center; letter-spacing: 0.05em;
    margin-top: 40px;
  }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE SYSTEM */
  @media (max-width: 1200px) {
    #hero { gap: 40px; padding: 140px 40px 60px; }
    .hero-title { font-size: clamp(48px, 6vw, 80px); }
  }

  @media (max-width: 992px) {
    #hero { grid-template-columns: 1fr; text-align: center; }
    .hero-left { display: flex; flex-direction: column; align-items: center; }
    .hero-body { margin-left: auto; margin-right: auto; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; width: 100%; }
    .nav-links { display: none; }
    .process-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .process-grid, .features-grid { grid-template-columns: 1fr; }
    #scanner, #process, #features, #benchmark, #faq, #cta { padding: 80px 24px; }
    .section-title { font-size: clamp(32px, 8vw, 48px); }
    .bench-table { display: block; overflow-x: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 480px) {
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-desc { margin-left: auto; margin-right: auto; }
    .scanner-box { padding: 24px 16px; }
    .scanner-row { flex-direction: column; }
    .scan-btn { width: 100%; }
  }

  /* Mobile Menu Styles */
  #menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: none;
    padding: 10px;
    z-index: 101;
  }

  @media (max-width: 992px) {
    #menu-toggle { display: block; }
    .nav-links {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100vh;
      background: var(--bg);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      transform: translateY(-100%);
      transition: transform 0.5s var(--ease);
      display: flex;
    }
    nav.menu-open .nav-links { transform: translateY(0); }
    .nav-cta { display: none; }
  }