  :root {
    --bg: #191127;
    --surface: #23133a;
    --surface2: #1f1232;
    --border: #3a1c63;
    --accent: #883CF0;
    --accent2: #7c3aed;
    --accent3: #7b5cff;
    --text: #e8f0ff;
    --muted: #d6d6d6;
    --grid: #a200ff16;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.08s ease, background 0.2s;
  }
  
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.18s ease;
  }

  /* GRID BG */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: #180f26;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo .logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    cursor: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
  }
  .nav-cta:hover {
    background: var(--accent);
    color: var(--bg);
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 48px 80px;
    overflow: hidden;
    z-index: 1;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .orb1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(153, 0, 255, 0.12) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .orb2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123,92,255,0.15) 0%, transparent 70%);
    bottom: -50px; right: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
  }
  .orb3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(183, 60, 255, 0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: orbPulse 6s ease-in-out infinite;
  }

  @keyframes orbFloat {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(30px, 20px); }
  }
  @keyframes orbPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.2); }
  }

  .hero-badge {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid #3a1c63;
    padding: 8px 18px;
    border-radius: 2px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease 0.2s both;
    background: #23133a;
  }

  .hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1;
    text-align: center;
    letter-spacing: -2px;
    max-width: 900px;
    animation: fadeUp 0.6s ease 0.35s both;
  }

  .hero-title .accent-word {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-title .strike-word {
    position: relative;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: var(--accent2);
    text-decoration-thickness: 3px;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--muted);
    text-align: center;
    max-width: 560px;
    margin-top: 24px;
    line-height: 1.7;
    animation: fadeUp 0.6s ease 0.5s both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    animation: fadeUp 0.6s ease 0.65s both;
  }

  .btn-primary {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 4px;
    cursor: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .btn-primary:hover::after { opacity: 0.1; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(149, 0, 255, 0.3); }

  .btn-ghost {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .btn-ghost:hover {
    border-color: #5e309d;
    color: var(--accent);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    animation: fadeUp 0.6s ease 0.8s both;
  }

  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--text);
    letter-spacing: -1px;
  }
  .stat-num span { color: var(--accent); }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* TERMINAL STRIP */
  .terminal-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 48px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .terminal-content {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    white-space: nowrap;
    display: inline-block;
    animation: scroll 30s linear infinite;
  }
  .terminal-content span { margin: 0 40px; opacity: 0.5; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTIONS */
  section {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -1px;
    line-height: 1.1;
  }

  /* HOW IT WORKS - INTERACTIVE */
  .steps-container {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .steps-list {
    border-right: 1px solid var(--border);
  }

  .step-item {
    padding: 32px 36px;
    border-bottom: 1px solid var(--border);
    cursor: none;
    transition: background 0.2s;
    position: relative;
  }
  .step-item:last-child { border-bottom: none; }
  .step-item.active {
    background: #2a1647;
  }
  .step-item:hover:not(.active) {
    background: #1f1232;
  }

  .step-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
  }
  .step-item.active::before { transform: scaleY(1); }

  .step-num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  .step-visual {
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface2);
    min-height: 400px;
  }

  .visual-panel {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease;
  }
  .visual-panel.active { display: block; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .vis-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    width: 100%;
  }

  .vis-title {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .vis-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }

  .access-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .access-row:last-child { border-bottom: none; }
  .access-avatar {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Syne', sans-serif;
    flex-shrink: 0;
  }
  .av-blue { background: #7b5cff33; color: var(--accent); }
  .av-purple { background: #7b5cff33; color: var(--accent3); }
  .av-red { background: #7b5cff33; color: var(--accent2); }
  .access-info { flex: 1; }
  .access-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
  .access-role { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted); }
  .access-status {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
  }
  .status-granted { background: #1f12323d; color: var(--accent); border: 1px solid #3a1c63; }
  .status-pending { background: #cb56f90a; color: #883CF0; border: 1px solid #5e309d; }
  .status-denied { background: rgba(255,60,110,0.1); color: var(--accent2); border: 1px solid rgba(255,60,110,0.2); }

  .log-line {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 12px;
  }
  .log-time { color: var(--muted); flex-shrink: 0; }
  .log-msg { color: var(--text); }
  .log-ok { color: #00ff88; }
  .log-warn { color: #ffb400; }
  .log-err { color: var(--accent2); }

  .metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .metric-box {
    background: #1f12323d;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
  }
  .metric-val {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--accent);
    letter-spacing: -1px;
  }
  .metric-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 4px;
  }

  /* BAR CHART */
  .bar-chart { margin-top: 12px; }
  .bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .bar-label { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted); width: 80px; flex-shrink: 0; }
  .bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
  .bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
    transform-origin: left;
    animation: barGrow 1s ease 0.2s both;
  }
  @keyframes barGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
  .bar-val { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--text); width: 32px; text-align: right; }

  /* FEATURES GRID */
  .features-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--surface);
    padding: 40px 36px;
    transition: background 0.2s;
    cursor: none;
    position: relative;
    overflow: hidden;
  }
  .feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f12323d, transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feature-card:hover { background: var(--surface2); }
  .feature-card:hover::after { opacity: 1; }

  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
  }
  .fi-blue { background: #1f12323d; border: 1px solid rgba(0,200,255,0.2); }
  .fi-purple { background: rgba(123,92,255,0.1); border: 1px solid rgba(123,92,255,0.2); }
  .fi-red { background: rgba(255,60,110,0.1); border: 1px solid rgba(255,60,110,0.2); }
  .fi-green { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.2); }
  .fi-orange { background: rgba(255,180,0,0.1); border: 1px solid rgba(255,180,0,0.2); }
  .fi-teal { background: rgba(0,200,160,0.1); border: 1px solid rgba(0,200,160,0.2); }

  .feature-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* PRICING */
  .pricing-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    cursor: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  }
  .pricing-card.featured {
    border-color: #5e309d;
    background: linear-gradient(160deg, #1f12323d 0%, var(--surface) 60%);
  }
  .pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 0 0 6px 6px;
  }

  .plan-name {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .plan-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 4px;
  }
  .plan-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; font-weight: 600; }
  .plan-price span { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
  .plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 32px; line-height: 1.5; }

  .plan-features { list-style: none; margin-bottom: 36px; }
  .plan-features li {
    font-size: 14px;
    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(--accent);
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
  }
  .plan-features li.na { opacity: 0.35; }
  .plan-features li.na::before { content: '—'; color: var(--muted); }

  .plan-btn {
    width: 100%;
    padding: 14px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: none;
    transition: all 0.2s;
  }
  .plan-btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
  }
  .plan-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .plan-btn-filled {
    background: var(--accent);
    border: none;
    color: var(--bg);
    font-weight: 700;
  }
  .plan-btn-filled:hover {
    box-shadow: 0 8px 30px rgba(166, 0, 255, 0.35);
    transform: translateY(-1px);
  }

  /* RISK MONITOR - INTERACTIVE */
  .risk-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
    margin-top: 72px;
  }

  .risk-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #00ff88;
    letter-spacing: 2px;
  }
  .live-dot {
    width: 8px; height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite;
  }
  @keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); }
  }

  .risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .risk-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 20px;
  }
  .risk-card-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .risk-val {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
  }
  .rv-blue { color: var(--accent); }
  .rv-green { color: #00ff88; }
  .rv-yellow { color: #ffb400; }
  .rv-red { color: var(--accent2); }
  .risk-change {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    margin-top: 4px;
  }
  .rc-up { color: #00ff88; }
  .rc-down { color: var(--accent2); }

  /* SPARK LINE */
  .spark { display: inline-block; vertical-align: middle; margin-left: 4px; }

  /* ACTIVITY FEED */
  .activity-feed {
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .activity-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    animation: slideIn 0.3s ease;
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .activity-icon {
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .ai-ok { background: rgba(0,255,136,0.1); }
  .ai-warn { background: rgba(255,180,0,0.1); }
  .ai-err { background: rgba(255,60,110,0.1); }

  .activity-text {
    flex: 1;
  }
  .activity-msg {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .activity-time {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
  }

  /* CTA SECTION */
  .cta-section {
    text-align: center;
    padding: 120px 48px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta-bg {
    background: linear-gradient(135deg, var(--surface2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 80px;
    position: relative;
    overflow: hidden;
  }
  .cta-bg::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(circle, rgba(179, 0, 255, 0.12) 0%, transparent 70%);
  }

  .cta-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -2px;
    margin-bottom: 20px;
    position: relative;
  }

  .cta-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
  }

  .cta-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
  }
  .cta-input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    cursor: none;
  }
  .cta-input::placeholder { color: var(--muted); }
  .cta-input:focus { border-color: #3a1c63; }
  .cta-submit {
    padding: 14px 28px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .cta-submit:hover {
    box-shadow: 0 8px 30px rgba(136, 0, 255, 0.3);
    transform: translateY(-1px);
  }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
  }

  .footer-links {
    display: flex;
    gap: 32px;
  }
  .footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

  /* TOAST */
  .toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--surface);
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 8px;
    padding: 16px 24px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #00ff88;
    z-index: 2;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .toast.show {
    transform: translateY(0);
    opacity: 1;
  }