  :root {
    --ink: #191127;
    --paper: #f0ede6;
    --acid: #883CF0;
    --ember: #7b5cff;
    --steel: #d6d6d6;
    --ghost: rgba(170, 0, 255, 0.08);
    --mid: #271a2e;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Mono', monospace;
    background: var(--ink);
    color: var(--paper);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  #cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--acid);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, width 0.2s, height 0.2s;
    mix-blend-mode: exclusion;
  }
  #cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--acid);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    mix-blend-mode: exclusion;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid #3a1c63;
    background: #180f26;
    backdrop-filter: blur(20px);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-logo .dot {
    width: 8px; height: 8px;
    background: var(--acid);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links a {
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--acid); }

  .nav-cta {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--acid);
    color: var(--ink);
    padding: 0.6rem 1.4rem;
    border: none;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #883cf0e0; transform: translateY(-1px); }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(157, 0, 255, 0.04) 0%, transparent 70%),
      radial-gradient(ellipse 30% 80% at 15% 80%, rgba(184, 32, 255, 0.06) 0%, transparent 60%);
  }

  .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(157, 0, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(195, 0, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  }

  .hero-left { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--acid);
    border: 1px solid #3a1c63;
    padding: 0.35rem 0.8rem;
    margin-bottom: 2rem;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--acid);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
  }

  h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--acid);
  }

  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--steel);
    max-width: 420px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--acid);
    color: var(--ink);
    padding: 0.9rem 2rem;
    border: none;
    cursor: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover::after { transform: translateX(4px); }
  .btn-primary:hover { background: #883cf0e0; }

  .btn-ghost {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    color: var(--paper);
    padding: 0.9rem 2rem;
    border: 1px solid #3a1c63;
    cursor: none;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--paper); }

  /* HERO RIGHT — Threat Visualization */
  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .threat-globe {
    position: relative;
    width: 460px;
    height: 460px;
  }

  .globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: spinRing linear infinite;
  }

  .ring-1 {
    width: 460px; height: 460px;
    border-color: #451c63;
    animation-duration: 40s;
  }
  .ring-2 {
    width: 340px; height: 340px;
    border-color: #451c63;
    animation-duration: 25s;
    animation-direction: reverse;
  }
  .ring-3 {
    width: 220px; height: 220px;
    border-color: #451c63;
    animation-duration: 15s;
  }

  @keyframes spinRing {
    from { transform: translate(-50%, -50%) rotate(0deg) rotateX(75deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) rotateX(75deg); }
  }

  .globe-core {
    position: absolute;
    width: 120px; height: 120px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 40% 35%, rgba(136, 0, 255, 0.4), rgba(187, 0, 255, 0.05) 70%);
    border-radius: 50%;
    border: 1px solid #451c63;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .globe-core-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 20px rgba(200, 0, 255, 0.8));
  }

  .threat-node {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    cursor: none;
    transition: transform 0.2s;
  }

  .threat-node::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.4;
    animation: nodeRipple 2s ease-out infinite;
  }

  @keyframes nodeRipple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
  }

  .threat-node:hover { transform: scale(1.5); }

  .node-label {
    position: absolute;
    top: -24px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--paper);
    background: rgba(10,10,15,0.9);
    padding: 2px 6px;
  }
  .threat-node:hover .node-label { opacity: 1; }

  .threat-line {
    position: absolute;
    top: 50%; left: 50%;
    transform-origin: 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(174, 0, 255, 0.6), transparent);
    animation: lineFlash 3s ease-in-out infinite;
  }

  @keyframes lineFlash {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.6; }
  }

  /* TICKER */
  .ticker {
    background: var(--ember);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
  }

  .ticker-inner {
    display: flex;
    gap: 4rem;
    animation: tickerMove 25s linear infinite;
    white-space: nowrap;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--paper);
  }

  @keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .ticker-item::before {
    content: '⚡';
    font-size: 0.75rem;
  }

  /* STATS BAR */
  .stats-bar {
    padding: 3rem;
    border-bottom: 1px solid #3a1c63;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat {
    border-left: 2px solid #3a1c63;
    padding-left: 1.5rem;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--acid);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .stat-unit {
    font-size: 0.75rem;
    color: var(--steel);
    margin-top: 0.3rem;
    letter-spacing: 0.06em;
  }

  /* SECTION SHARED */
  section { padding: 6rem 3rem; }

  .section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--acid);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  .section-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--acid);
  }

  /* IDENTITY TYPES — INTERACTIVE GRID */
  #identities {
    background: linear-gradient(180deg, var(--ink) 0%, #160d1a 100%);
  }

  .identities-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #23133a;
    border: 1px solid #3a1c63;
  }

  .identity-card {
    background: var(--ink);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background 0.3s;
  }

  .identity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--acid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .identity-card:hover::before { transform: scaleX(1); }
  .identity-card:hover { background: rgba(166, 0, 255, 0.03); }

  .card-icon {
    width: 48px; height: 48px;
    border: 1px solid #3a1c63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s, background 0.2s;
  }

  .identity-card:hover .card-icon {
    border-color: var(--acid);
    background: #2a1647;
  }

  .card-label {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .card-desc {
    font-size: 0.78rem;
    color: var(--steel);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .tag {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1px solid #3a1c63;
    color: var(--steel);
    transition: all 0.2s;
  }

  .identity-card:hover .tag {
    border-color: #5e309d;
    color: var(--paper);
  }

  /* THREAT FEED — Interactive */
  #threat-feed {
    background: #191127;
    position: relative;
    overflow: hidden;
  }

  #threat-feed::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at right, rgba(177, 32, 255, 0.04), transparent 70%);
  }

  .feed-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }

  .feed-left { position: relative; z-index: 2; }

  .feed-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
  }

  .feed-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #3a1c63;
    cursor: none;
    transition: padding-left 0.2s;
    position: relative;
  }

  .feed-item.active { 
    padding-left: 0.5rem;
    border-bottom-color: #3a1c63;
  }

  .feed-indicator {
    width: 3px;
    background: rgba(236, 230, 240, 0.15);
    flex-shrink: 0;
    border-radius: 2px;
    transition: background 0.2s;
    align-self: stretch;
  }

  .feed-item.active .feed-indicator { background: var(--acid); }

  .feed-num {
    font-size: 0.65rem;
    color: var(--steel);
    flex-shrink: 0;
    padding-top: 0.1rem;
    width: 28px;
    font-variant-numeric: tabular-nums;
  }

  .feed-content { flex: 1; }

  .feed-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
  }

  .feed-item.active .feed-title { color: var(--acid); }

  .feed-body {
    font-size: 0.75rem;
    color: var(--steel);
    line-height: 1.5;
  }

  .severity {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .severity.critical { background: #291a3e; color: var(--ember); border: 1px solid #5e309d; }
  .severity.high { background: #291a3e; color: #b700ff; border: 1px solid #5e309d; }
  .severity.medium { background: #291a3e; color: var(--acid); border: 1px solid #5e309d; }

  /* RISK PANEL */
  .risk-panel {
    background: #1f1232;
    border: 1px solid #3a1c63;
    padding: 2rem;
    position: relative;
    z-index: 2;
  }

  .risk-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3a1c63;
  }

  .risk-panel-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .live-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ember);
  }

  .live-dot {
    width: 6px; height: 6px;
    background: var(--ember);
    border-radius: 50%;
    animation: pulse 1s infinite;
  }

  .risk-meters { display: flex; flex-direction: column; gap: 1.2rem; }

  .meter-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .meter-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--steel);
  }

  .meter-label span:last-child { color: var(--paper); }

  .meter-bar {
    height: 4px;
    background: #2a1647;
    position: relative;
    overflow: hidden;
  }

  .meter-fill {
    height: 100%;
    background: var(--acid);
    position: relative;
    animation: meterLoad 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
    transform-origin: left;
    transform: scaleX(0);
  }

  .meter-fill.ember { background: var(--ember); }

  @keyframes meterLoad {
    to { transform: scaleX(1); }
  }

  .action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .action-btn {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 0.7rem 0.8rem;
    border: 1px solid #3a1c63;
    background: transparent;
    color: var(--paper);
    cursor: none;
    text-align: left;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .action-btn:hover {
    border-color: var(--acid);
    color: var(--acid);
    background: #2a1647;
  }

  /* CAPABILITIES */
  #capabilities {
    background: var(--ink);
  }

  .cap-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .cap-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }

  .cap-tab {
    padding: 1.5rem 0;
    border-bottom: 1px solid #3a1c63;
    cursor: none;
    position: relative;
    overflow: hidden;
  }

  .cap-tab::before {
    content: '';
    position: absolute;
    left: -2px; top: 0; bottom: 0;
    width: 2px;
    background: var(--acid);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
  }

  .cap-tab.active::before { transform: scaleY(1); }
  .cap-tab.active { padding-left: 1.2rem; }

  .cap-tab-head {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--steel);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cap-tab.active .cap-tab-head { color: var(--paper); }

  .cap-tab-body {
    font-size: 0.78rem;
    color: var(--steel);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.2s;
  }

  .cap-tab.active .cap-tab-body {
    max-height: 200px;
    margin-top: 0.8rem;
  }

  .cap-visual {
    position: relative;
    height: 440px;
    border: 1px solid #3a1c63;
    overflow: hidden;
    background: #191127;
  }

  .cap-vis-content {
    display: none;
    width: 100%; height: 100%;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }

  .cap-vis-content.visible { display: flex; }

  /* Terminal style for vis */
  .terminal-line {
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: termFade 0.3s ease forwards;
    opacity: 0;
  }

  @keyframes termFade {
    to { opacity: 1; }
  }

  .term-prompt { color: var(--acid); }
  .term-cmd { color: var(--paper); }
  .term-out { color: var(--steel); }
  .term-ok { color: #4ade80; }
  .term-warn { color: #fbbf24; }
  .term-err { color: var(--ember); }

  .vis-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100px;
    padding-top: 1rem;
  }

  .vis-bar {
    flex: 1;
    background: rgba(162, 0, 255, 0.124);
    border-top: 2px solid var(--acid);
    position: relative;
    animation: barGrow 0.5s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
  }

  @keyframes barGrow { to { transform: scaleY(1); } }

  /* PRICING / PLANS */
  #plans {
    background: #191127;
    border-top: 1px solid #3a1c63;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #23133a;
    margin-top: 3rem;
  }

  .plan-card {
    background: var(--ink);
    padding: 2.5rem;
    position: relative;
    cursor: none;
    transition: background 0.2s;
  }

  .plan-card.featured {
    background: #1f1232;
  }

  .plan-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    background: var(--acid);
    color: var(--ink);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
  }

  .plan-name {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 0.8rem;
  }

  .plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .plan-price sup {
    font-size: 1rem;
    vertical-align: super;
    font-weight: 400;
    color: var(--steel);
  }

  .plan-period {
    font-size: 0.72rem;
    color: var(--steel);
    margin-bottom: 2rem;
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .plan-features li {
    font-size: 0.76rem;
    color: var(--steel);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .plan-features li::before {
    content: '—';
    color: var(--acid);
    flex-shrink: 0;
  }

  .plan-btn {
    width: 100%;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem;
    cursor: none;
    transition: all 0.2s;
    border: 1px solid #3a1c63;
    background: transparent;
    color: var(--paper);
  }

  .plan-card.featured .plan-btn {
    background: var(--acid);
    color: var(--ink);
    border-color: var(--acid);
  }

  .plan-btn:hover { opacity: 0.8; }

  /* CTA SECTION */
  #cta {
    background: var(--acid);
    color: var(--ink);
    text-align: center;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
  }

  #cta::before {
    content: 'SECURE';
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 20vw;
    font-weight: 800;
    opacity: 0.05;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: -0.05em;
  }

  #cta .section-eyebrow { color: rgba(14, 10, 15, 0.5); }

  #cta .section-title { color: var(--ink); }

  #cta .section-title em { color: var(--ember); }

  .cta-sub {
    font-size: 0.85rem;
    color: rgba(13, 10, 15, 0.65);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .btn-dark {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--acid);
    padding: 0.9rem 2rem;
    border: none;
    cursor: none;
    transition: all 0.2s;
  }
  .btn-dark:hover { background: #3a1c63; }

  .btn-outline-dark {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink);
    padding: 0.9rem 2rem;
    border: 2px solid #3a1c63;
    cursor: none;
    transition: all 0.2s;
  }

  /* FOOTER */
  footer {
    background: #180f26;
    padding: 3rem;
    border-top: 1px solid #3a1c63;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
  }

  .footer-links a { color: var(--steel); text-decoration: none; }
  .footer-links a:hover { color: var(--paper); }

  .footer-copy { font-size: 0.68rem; color: var(--steel); }

  /* SCROLL FADE */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Stagger */
  .reveal:nth-child(2) { transition-delay: 0.1s; }
  .reveal:nth-child(3) { transition-delay: 0.2s; }
  .reveal:nth-child(4) { transition-delay: 0.3s; }