  :root {
    --bg: #191127;
    --surface: #1f1232;
    --card: #23133a;
    --border: #3a1c63;
    --accent: #883CF0;
    --accent2: #b29dce;
    --accent3: #7c5cfc;
    --text: #e8edf5;
    --muted: #d6d6d6;
    --grid: rgba(170, 0, 255, 0.04);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
  }
  body:hover .cursor { opacity: 1; }

  /* Grid background */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
  }

  /* Glowing orbs */
  .orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    animation: drift 20s ease-in-out infinite alternate;
  }
  .orb-1 { width: 600px; height: 600px; background: var(--accent3); top: -200px; left: -200px; animation-delay: 0s; }
  .orb-2 { width: 400px; height: 400px; background: var(--accent); top: 60%; right: -100px; animation-delay: -7s; }
  .orb-3 { width: 300px; height: 300px; background: var(--accent2); bottom: 0; left: 40%; animation-delay: -14s; }

  @keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
  }

  /* Nav */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    border-bottom: 1px solid var(--border);
    background: #180f26;
    backdrop-filter: blur(12px);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 28px; height: 28px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .logo-icon::before {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    cursor: none;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--accent); color: #000; }

  /* Sections */
  section { position: relative; z-index: 1; }

  /* Hero */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid #5e309d;
    padding: 0.35rem 0.8rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease forwards;
    opacity: 0;
    max-width: 900px;
  }

  .hero-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }

  .hero-sub {
    max-width: 550px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s 0.3s ease forwards;
    opacity: 0;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeUp 0.8s 0.45s ease forwards;
    opacity: 0;
  }

  .btn-primary {
    background: var(--accent);
    color: #000;
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    cursor: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(0); }

  .btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    cursor: none;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--text); color: var(--text); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Live threat ticker */
  .threat-ticker {
    position: absolute;
    bottom: 3rem;
    left: 0; right: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    overflow: hidden;
    animation: fadeUp 0.8s 0.6s ease forwards;
    opacity: 0;
  }
  .ticker-track {
    display: flex;
    gap: 4rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    flex-shrink: 0;
  }
  .ticker-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .ticker-dot.red { background: var(--accent2); box-shadow: 0 0 8px var(--accent2); }
  .ticker-dot.cyan { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
  .ticker-dot.purple { background: var(--accent3); box-shadow: 0 0 8px var(--accent3); }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ITP Live Radar Section */
  #radar {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .section-title span { color: var(--accent); }

  .section-body {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.9;
    margin-bottom: 2rem;
  }

  /* Radar animation */
  .radar-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin: auto;
  }

  .radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #3a1c63;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }

  .radar-sweep {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    top: 0; left: 0;
  }
  .radar-sweep::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 50%; height: 50%;
    background: conic-gradient(from 0deg, transparent 280deg, rgba(119, 0, 255, 0.4) 360deg);
    transform-origin: 0% 100%;
    animation: sweep 3s linear infinite;
  }
  @keyframes sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .radar-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
  }

  .radar-cross {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(170, 0, 255, 0.1);
  }
  .radar-cross-v {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 1px;
    background: rgba(162, 0, 255, 0.1);
  }

  .radar-blip {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: blip 3s ease-in-out infinite;
  }
  .blip-red { background: var(--accent2); box-shadow: 0 0 12px var(--accent2); }
  .blip-cyan { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
  .blip-purple { background: var(--accent3); box-shadow: 0 0 12px var(--accent3); }

  @keyframes blip {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.6); }
  }

  /* Threat cards */
  .threat-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .threat-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: none;
  }
  .threat-card:hover {
    border-color: #5e309d;
    transform: translateX(4px);
  }

  .threat-sev {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    flex-shrink: 0;
  }
  .sev-high { background: rgba(171, 61, 255, 0.2); color: var(--accent2); border: 1px solid rgba(181, 61, 255, 0.3); }
  .sev-med { background: rgba(242, 0, 255, 0.15); color: #f200ff; border: 1px solid rgba(225, 0, 255, 0.3); }
  .sev-low { background: rgba(123, 0, 255, 0.1); color: var(--accent); border: 1px solid rgba(149, 0, 255, 0.2); }

  .threat-info { flex: 1; }
  .threat-name { font-size: 0.78rem; color: var(--text); margin-bottom: 0.2rem; }
  .threat-desc { font-size: 0.68rem; color: var(--muted); }
  .threat-time { font-size: 0.65rem; color: var(--muted); flex-shrink: 0; }

  /* PAM Pillars — horizontal scroll cards */
  #pillars {
    padding: 6rem 3rem;
    overflow: hidden;
  }

  .pillars-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .cards-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent3) transparent;
  }
  .cards-scroll::-webkit-scrollbar { height: 2px; }
  .cards-scroll::-webkit-scrollbar-track { background: transparent; }
  .cards-scroll::-webkit-scrollbar-thumb { background: var(--accent3); }

  .pillar-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
  }
  .pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-accent, var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .pillar-card:hover::before { transform: scaleX(1); }
  .pillar-card:hover { border-color: #5e309d; transform: translateY(-4px); }

  .pillar-num {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .pillar-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
  .pillar-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 0.03em;
  }
  .pillar-body {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.8;
  }

  /* Interactive Attack Matrix */
  #matrix {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, transparent, rgba(124,92,252,0.05), transparent);
  }

  .matrix-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .attack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto 3rem;
  }

  .attack-cell {
    background: var(--card);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .attack-cell:hover,
  .attack-cell.active {
    background: var(--cell-color, var(--accent3));
    z-index: 2;
  }
  .attack-cell:hover .cell-title,
  .attack-cell.active .cell-title { color: #fff; }

  .cell-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
  .cell-title {
    font-size: 0.68rem;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
  }

  .matrix-detail {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    min-height: 120px;
    transition: all 0.3s;
  }
  .detail-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--accent);
  }
  .detail-body { font-size: 0.78rem; color: var(--muted); line-height: 1.8; }

  /* Access Timeline */
  #timeline {
    padding: 6rem 3rem;
  }

  .timeline-track {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .timeline-line {
    position: absolute;
    left: 28px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent), var(--accent3), var(--accent2));
  }

  .timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .timeline-item.visible { opacity: 1; transform: translateX(0); }

  .timeline-dot {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid var(--dot-color, var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--bg);
    position: relative;
    z-index: 1;
    transition: all 0.2s;
  }

  .timeline-content {
    flex: 1;
    padding-top: 0.8rem;
  }
  .tl-time {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
  }
  .tl-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }
  .tl-body { font-size: 0.75rem; color: var(--muted); line-height: 1.7; }

  /* Stats bar */
  #stats {
    padding: 4rem 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--surface);
  }

  .stat-item {
    text-align: center;
    padding: 1.5rem;
  }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* About section */
  #about {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }
  .about-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(175, 92, 252, 0.1), transparent);
    pointer-events: none;
  }
  .about-name {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }
  .about-role {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .about-bio {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
  }
  .about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .badge {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border);
    color: var(--muted);
  }

  .cert-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  .cert-box {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1rem;
    text-align: center;
  }
  .cert-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
  .cert-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

  /* Contact */
  #contact {
    padding: 6rem 3rem;
    background: var(--surface);
    text-align: center;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 3rem auto 0;
  }

  .contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: block;
    cursor: none;
  }
  .contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
  }
  .contact-icon { font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
  .contact-type {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
  }
  .contact-val { font-size: 0.8rem; color: var(--muted); }

  /* Footer */
  footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--muted);
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Live badge */
  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent2);
    border: 1px solid #3a1c63;
    padding: 0.3rem 0.7rem;
    background: #23133a;
  }
  .live-dot {
    width: 5px; height: 5px;
    background: var(--accent2);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent2); }
    50% { opacity: 0.6; box-shadow: 0 0 8px 4px rgba(255,61,107,0.2); }
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; height: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent3); }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    #hero { padding: 7rem 1.5rem 4rem; }
    #radar { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
    #about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2rem; }
    #pillars, #matrix, #timeline, #contact { padding: 4rem 1.5rem; }
    #stats { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
    .attack-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; max-width: 300px; }
    .nav-links { display: none; }
    .pillars-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }