  :root {
    --void: #191127;
    --deep: #23133a;
    --panel: #1f1232;
    --border: #3a1c63;
    --glow: #883CF0;
    --glow2: #7c3aed;
    --warn: #ff6b35;
    --safe: #39ff7e;
    --muted: #d6d6d6;
    --text: #e2e8f0;
    --bright: #e8f8ff;
    --accent: #883CF0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--void);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s;
    box-shadow: 0 0 10px var(--glow), 0 0 30px var(--glow);
  }
  #cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    opacity: 0.5;
  }

  /* SCANLINES */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 3px,
      rgba(0,0,0,0.08) 3px,
      rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 9997;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9996;
    opacity: 0.4;
  }

  /* ===================== HEADER ===================== */
  header {
    position: sticky; top: 0; z-index: 100;
    background: #180f26;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }

  .logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--glow);
    text-shadow: 0 0 20px var(--glow);
    display: flex; align-items: center; gap: 12px;
  }
  .logo-dot {
    width: 8px; height: 8px;
    background: var(--glow);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--glow);
  }
  @keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
  }

  nav { display: flex; gap: 32px; }
  nav a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s, text-shadow 0.2s;
  }
  nav a:hover { color: var(--glow); text-shadow: 0 0 10px var(--glow); }

  .header-status {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--safe);
    display: flex; align-items: center; gap: 8px;
    text-shadow: 0 0 8px var(--safe);
  }
  .status-led {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--safe);
    box-shadow: 0 0 6px var(--safe);
    animation: blink 2s step-end infinite;
  }
  @keyframes blink { 50% { opacity: 0; } }

  /* ===================== HERO ===================== */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
    gap: 60px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(170, 0, 255, 0.04) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 20% 80%, rgba(149, 0, 255, 0.06) 0%, transparent 50%),
      linear-gradient(180deg, var(--void) 0%, var(--deep) 100%);
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(128, 0, 255, 0.083) 1px, transparent 1px),
      linear-gradient(90deg, rgba(217, 0, 255, 0.082) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--glow);
    box-shadow: 0 0 6px var(--glow);
  }

  .hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--bright);
    margin-bottom: 24px;
  }
  .hero-title span {
    display: block;
    color: var(--glow);
    text-shadow: 0 0 40px rgba(132, 0, 255, 0.5), 0 0 80px rgba(140, 0, 255, 0.2);
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0.85;
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 32px;
    background: var(--glow);
    color: var(--void);
    border: none;
    cursor: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--glow), 0 0 60px #be52e50f;
    transform: translateY(-2px);
  }

  .btn-ghost {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 32px;
    background: transparent;
    color: var(--glow);
    border: 1px solid var(--glow);
    cursor: none;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover {
    background: #23133a79;
    box-shadow: inset 0 0 20px rgba(157, 0, 255, 0.1), 0 0 20px rgba(174, 0, 255, 0.2);
  }

  /* HERO VISUAL: Animated Network */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #network-canvas {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    border: 1px solid #3a1c63;
    background: #873cf035;
    position: relative;
  }

  .canvas-label {
    position: absolute;
    bottom: -30px;
    right: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* ===================== STATS BAR ===================== */
  .stats-bar {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: linear-gradient(to right, var(--border) 1px, transparent 1px);
  }

  .stat-item {
    padding: 20px 40px;
    background: var(--panel);
    position: relative;
  }
  .stat-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
  }
  .stat-item:last-child::after { display: none; }

  .stat-num {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--glow);
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
    display: block;
  }
  .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ===================== SECTIONS ===================== */
  section { padding: 100px 80px; }

  .section-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--glow2);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--glow2);
    opacity: 0.4;
  }

  .section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .section-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    max-width: 640px;
    opacity: 0.8;
    margin-bottom: 60px;
  }

  /* ===================== PAM PILLARS ===================== */
  .pillars-section { background: var(--deep); }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .pillar-card {
    background: var(--panel);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: transform 0.3s;
  }
  .pillar-card:hover { transform: translateY(-4px); z-index: 1; }
  .pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--glow), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .pillar-card:hover::before { opacity: 1; }

  .pillar-icon {
    width: 52px; height: 52px;
    background: #291a3e;
    border: 1px solid #3a1c63;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }

  .pillar-num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    color: #883CF0;
    letter-spacing: 0.1em;
  }

  .pillar-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }

  .pillar-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text);
    opacity: 0.75;
  }

  /* ===================== INTERACTIVE THREAT MATRIX ===================== */
  .threat-section { background: var(--void); }

  .threat-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 40px;
    background: var(--border);
    width: fit-content;
  }

  .threat-tab {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--panel);
    color: var(--muted);
    border: none;
    cursor: none;
    transition: all 0.2s;
  }
  .threat-tab.active {
    background: #2a1647;
    color: var(--glow);
    box-shadow: inset 0 -2px 0 var(--glow);
  }
  .threat-tab:hover:not(.active) { color: var(--text); background: rgba(255, 255, 255, 0.03); }

  .threat-panels { position: relative; }

  .threat-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    animation: fadeIn 0.3s ease;
  }
  .threat-panel.active { display: grid; }

  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  .threat-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--bright);
    margin-bottom: 16px;
  }
  .threat-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 24px;
  }

  .threat-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .metric-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .metric-label-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .metric-label-row span:first-child { color: var(--text); }
  .metric-label-row span:last-child { color: var(--glow); }

  .metric-bar-bg {
    height: 6px;
    background: rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
  }
  .metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--glow2), var(--glow));
    box-shadow: 0 0 8px var(--glow);
    transition: width 0.8s cubic-bezier(0.23,1,0.32,1);
    width: 0%;
  }

  .threat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid;
    margin-right: 12px;
    margin-bottom: 12px;
  }
  .badge-high { color: var(--accent); border-color: var(--accent); background: #cb56f90a; }
  .badge-medium { color: var(--warn); border-color: var(--warn); background: rgba(198, 53, 255, 0.06); }
  .badge-low { color: var(--safe); border-color: var(--safe); background: rgba(57,255,126,0.06); }

  /* ===================== PAM FEATURES ACCORDION ===================== */
  .features-section { background: var(--deep); }

  .features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .accordion { display: flex; flex-direction: column; gap: 2px; }

  .acc-item {
    background: var(--panel);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .acc-item.open { border-color: #3a1c63; }

  .acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: none;
    transition: background 0.2s;
  }
  .acc-header:hover { background: #2a1647; }

  .acc-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 12px;
    transition: color 0.2s;
  }
  .acc-item.open .acc-title { color: var(--glow); }

  .acc-icon { font-size: 1rem; }

  .acc-toggle {
    width: 20px; height: 20px;
    border: 1px solid var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .acc-item.open .acc-toggle {
    border-color: var(--glow);
    color: var(--glow);
    background: #291a3e;
  }

  .acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1);
  }
  .acc-item.open .acc-body { max-height: 300px; }

  .acc-content {
    padding: 0 24px 24px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.8;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: -1px;
  }

  /* FEATURE VISUAL */
  .feature-visual {
    position: sticky;
    top: 80px;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fv-header {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--glow);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    display: flex; justify-content: space-between;
  }

  .fv-terminal {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
    color: var(--text);
    flex: 1;
  }
  .fv-terminal .cmd { color: var(--glow); }
  .fv-terminal .ok { color: var(--safe); }
  .fv-terminal .warn { color: var(--warn); }
  .fv-terminal .err { color: var(--accent); }
  .fv-terminal .dim { opacity: 0.4; }

  #terminal-cursor {
    display: inline-block;
    width: 8px; height: 13px;
    background: var(--glow);
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
  }

  /* ===================== ZERO TRUST ===================== */
  .zero-trust-section { background: var(--void); }

  .zt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 60px;
  }

  .zt-step {
    background: var(--panel);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
  }

  .zt-step::after {
    content: attr(data-step);
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: #cb56f90a;
    line-height: 1;
  }

  .zt-step-num {
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--glow2);
    margin-bottom: 16px;
  }

  .zt-step-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .zt-step-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text);
    opacity: 0.7;
  }

  /* ===================== MARKET CHART ===================== */
  .market-section { background: var(--deep); }

  .market-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .chart-container {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 32px;
  }
  .chart-title-bar {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--glow);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between;
  }

  .bar-chart { display: flex; flex-direction: column; gap: 16px; }

  .bar-year {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .bar-y-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    width: 36px;
    flex-shrink: 0;
    text-align: right;
  }
  .bar-track {
    flex: 1;
    height: 28px;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
  }
  .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3a1c63, #684895);
    box-shadow: 0 0 12px #be52e50f;
    transition: width 1.2s cubic-bezier(0.23,1,0.32,1);
    width: 0%;
    display: flex; align-items: center; justify-content: flex-end; padding-right: 10px;
  }
  .bar-val {
    font-family: 'Orbitron', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--void);
    white-space: nowrap;
  }

  .market-highlights { display: flex; flex-direction: column; gap: 24px; }

  .highlight-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-left: 3px solid var(--glow);
    padding: 24px 28px;
  }
  .highlight-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: var(--bright);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .highlight-card p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text);
    opacity: 0.75;
  }

  /* ===================== IDENTITY TYPES ===================== */
  .identity-section { background: var(--void); }

  .identity-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 60px;
    background: var(--border);
  }

  .identity-col {
    background: var(--panel);
    padding: 48px 40px;
  }

  .identity-vs {
    background: var(--deep);
    display: flex; align-items: center; justify-content: center;
    padding: 0 24px;
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: rgba(166, 0, 255, 0.3);
    writing-mode: vertical-rl;
  }

  .id-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #1f1232;
    border: 1px solid #3a1c63;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--glow);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .id-col-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--bright);
    margin-bottom: 20px;
  }

  .id-col-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 28px;
  }

  .id-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .id-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.8;
  }
  .id-item::before {
    content: '▸';
    color: var(--glow);
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ===================== ABOUT ===================== */
  .about-section { background: var(--deep); }

  .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

  .about-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--bright);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .about-text p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 16px;
  }

  .about-credentials {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
  }
  .cred-item {
    background: var(--panel);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.85;
  }
  .cred-item::before {
    content: '//';
    font-family: 'Share Tech Mono', monospace;
    color: var(--glow2);
    opacity: 0.5;
    flex-shrink: 0;
  }

  /* ===================== CONTACT ===================== */
  .contact-section { background: var(--void); }

  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

  .contact-info { display: flex; flex-direction: column; gap: 24px; }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .contact-item:hover {
    border-color: #5e309d;
    background: #23133a;
  }
  .contact-item-icon {
    width: 40px; height: 40px;
    background: #23133a;
    border: 1px solid #5e309d;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-item-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .contact-item-value {
    font-size: 0.88rem;
    color: var(--bright);
  }

  /* CONTACT FORM */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }

  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .form-input, .form-textarea {
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--bright);
    padding: 12px 16px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: #5e309d;
    box-shadow: 0 0 0 1px rgba(162, 0, 255, 0.1);
  }
  .form-textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 32px;
    background: var(--glow);
    color: var(--void);
    border: none;
    cursor: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.2s;
    align-self: flex-start;
  }
  .form-submit:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--glow);
    transform: translateY(-2px);
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: var(--panel);
    border-top: 1px solid var(--border);
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--glow);
    text-shadow: 0 0 10px rgba(128, 0, 255, 0.4);
  }
  .footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--muted);
  }

  /* ===================== SCROLL ANIMATIONS ===================== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 60px 32px; }
    .hero-visual { display: none; }
    section { padding: 60px 32px; }
    .stats-bar, .pillars-grid { grid-template-columns: 1fr 1fr; padding: 0; }
    .features-layout, .market-layout, .about-layout, .contact-layout, .identity-compare { grid-template-columns: 1fr; }
    .identity-vs { display: none; }
    .zt-grid { grid-template-columns: 1fr 1fr; }
    header { padding: 0 24px; }
    nav { display: none; }
    footer { flex-direction: column; gap: 12px; padding: 32px; }
  }