  :root {
    --bg: #191127;
    --surface: #23133a;
    --surface2: #1f1232;
    --accent: #883cf0;
    --accent2: #7c3aed;
    --accent3: #b29dce;
    --text: #c8dde8;
    --dim: #d6d6d6;
    --glow: 0 0 20px rgba(136, 0, 255, 0.35);
    --glow2: 0 0 20px rgba(180, 60, 255, 0.35);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'IBM Plex Mono', monospace;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* Scanlines overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.08) 2px,
      rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 9999;
  }

  /* ─── MATRIX CANVAS ─── */
  #matrix-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: #180f26;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #3a1c63;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-shadow: var(--glow);
  }

  .nav-logo span { color: var(--accent2); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }

  nav a {
    color: var(--dim);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s, text-shadow 0.2s;
  }

  nav a:hover {
    color: var(--accent);
    text-shadow: var(--glow);
  }

  .nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--accent3);
  }

  .pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent3);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  /* ─── MAIN WRAPPER ─── */
  main {
    position: relative;
    z-index: 1;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 10vw 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(128, 0, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(179, 0, 255, 0.055) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--accent2);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent2);
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    color: #fff;
    max-width: 14ch;
    margin-bottom: 1.5rem;
  }

  h1 .highlight {
    color: var(--accent);
    text-shadow: var(--glow);
    position: relative;
  }

  h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: var(--glow);
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--dim);
    max-width: 55ch;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--bg);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { box-shadow: var(--glow); }

  .btn-ghost {
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #5e309d;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.25s;
  }

  .btn-ghost:hover {
    border-color: var(--accent);
    background: #873cf038;
    box-shadow: var(--glow);
  }

  /* hero floating terminal */
  .hero-terminal {
    position: absolute;
    right: 8vw;
    top: 50%;
    transform: translateY(-50%);
    width: min(440px, 40vw);
    background: var(--surface);
    border: 1px solid #3a1c63;
    box-shadow: var(--glow), inset 0 0 60px rgba(166, 0, 255, 0.02);
    animation: floatY 6s ease-in-out infinite;
  }

  @keyframes floatY {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-14px); }
  }

  .terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: var(--surface2);
    border-bottom: 1px solid #3a1c63;
  }

  .tb-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }

  .tb-dot.red { background: #ff3c6e; }
  .tb-dot.yellow { background: #ffd060; }
  .tb-dot.green { background: #7fff6e; }

  .terminal-title {
    font-size: 0.68rem;
    color: var(--dim);
    margin-left: auto;
    letter-spacing: 0.08em;
  }

  .terminal-body {
    padding: 1.2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    line-height: 1.9;
    color: #e6ebee;
    min-height: 220px;
  }

  .t-line { display: block; }
  .t-prompt { color: var(--accent3); }
  .t-cmd { color: #fff; }
  .t-out { color: var(--dim); }
  .t-ok { color: var(--accent3); }
  .t-warn { color: var(--accent2); }
  .t-info { color: var(--accent); }
  .t-cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--accent);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
  }

  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  /* ─── SECTION COMMON ─── */
  section {
    position: relative;
    z-index: 1;
    padding: 6rem 10vw;
  }

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 0.75rem;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
  }

  .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 3rem;
  }

  /* ─── THREAT CAROUSEL ─── */
  #threats {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }

  .threat-track-wrap {
    overflow: hidden;
    position: relative;
  }

  .threat-track-wrap::before,
  .threat-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
  }
  .threat-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface), transparent);
  }
  .threat-track-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--surface), transparent);
  }

  .threat-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 28s linear infinite;
    width: max-content;
  }

  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .threat-track:hover { animation-play-state: paused; }

  .threat-card {
    flex: 0 0 260px;
    background: var(--surface2);
    border: 1px solid #3a1c63;
    padding: 1.5rem;
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }

  .threat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent2), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .threat-card:hover {
    border-color: var(--accent2);
    box-shadow: var(--glow2);
    transform: translateY(-4px);
  }

  .threat-card:hover::before { transform: scaleX(1); }

  .threat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    filter: grayscale(0.3);
  }

  .threat-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .threat-desc {
    font-size: 0.72rem;
    color: var(--dim);
    line-height: 1.6;
  }

  .threat-level {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .level-bar {
    flex: 1;
    height: 3px;
    background: #282035;
    border-radius: 2px;
    overflow: hidden;
  }

  .level-fill {
    height: 100%;
    background: var(--accent2);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(203, 60, 255, 0.5);
  }

  .level-label {
    font-size: 0.62rem;
    color: var(--accent2);
    letter-spacing: 0.08em;
  }

  /* ─── PAM PILLARS ─── */
  #pillars {
    background: var(--bg);
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: #23133a;
    border: 1px solid #3a1c63;
  }

  .pillar-card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.3s;
  }

  .pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(0deg, #412769, transparent);
    transition: height 0.4s;
  }

  .pillar-card:hover { background: var(--surface); }
  .pillar-card:hover::after { height: 100%; }

  .pillar-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 3rem;
    color: rgba(164, 112, 212, 0.06);
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }

  .pillar-icon-wrap {
    width: 48px; height: 48px;
    border: 1px solid #3a1c63;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: border-color 0.25s, box-shadow 0.25s;
  }

  .pillar-card:hover .pillar-icon-wrap {
    border-color: var(--accent);
    box-shadow: var(--glow);
  }

  .pillar-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.75rem;
  }

  .pillar-text {
    font-size: 0.75rem;
    line-height: 1.75;
    color: var(--dim);
  }

  /* ─── JIT DEMO ─── */
  #jit-demo {
    background: var(--surface);
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }

  .jit-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
  }

  .jit-visual {
    position: relative;
  }

  .jit-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid #3a1c63;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jit-ring::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px dashed #282035;
    animation: spin 20s linear infinite;
  }

  .jit-ring::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent);
    animation: spin 3s linear infinite;
    box-shadow: 0 0 15px rgba(144, 0, 255, 0.3);
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .jit-center {
    text-align: center;
    z-index: 1;
  }

  .jit-timer {
    font-family: 'Share Tech Mono', monospace;
    font-size: 3rem;
    color: var(--accent);
    text-shadow: var(--glow);
    line-height: 1;
    transition: color 0.5s;
  }

  .jit-timer.expiring { color: var(--accent2); text-shadow: var(--glow2); }

  .jit-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--dim);
    text-transform: uppercase;
    margin-top: 0.5rem;
  }

  .jit-orbit-item {
    position: absolute;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--dim);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .jit-orbit-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
  }

  .jit-orbit-dot.inactive {
    background: var(--dim);
    box-shadow: none;
  }

  .jit-orbit-item:nth-child(1) { top: -10%; left: 50%; transform: translateX(-50%); }
  .jit-orbit-item:nth-child(2) { right: -5%; top: 35%; }
  .jit-orbit-item:nth-child(3) { bottom: -10%; left: 50%; transform: translateX(-50%); }
  .jit-orbit-item:nth-child(4) { left: -10%; top: 35%; }

  .jit-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
  }

  .jit-content p {
    font-size: 0.8rem;
    line-height: 1.85;
    color: var(--dim);
    margin-bottom: 1.5rem;
  }

  .jit-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .jit-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid #3a1c63;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .jit-step.active, .jit-step:hover {
    border-color: var(--accent);
    background: #1f1232;
  }

  .step-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    flex-shrink: 0;
    padding-top: 2px;
  }

  .step-text {
    font-size: 0.73rem;
    line-height: 1.6;
    color: var(--text);
  }

  .step-text strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
  }

  /* ─── BREACH IMPACT ─── */
  #impact {
    background: var(--bg);
  }

  .impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  @media (max-width: 900px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .impact-card {
    background: var(--surface2);
    border: 1px solid #3a1c63;
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: default;
  }

  .impact-card:hover {
    border-color: var(--accent2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow2);
  }

  .impact-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent2);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .impact-card:hover::before { transform: scaleX(1); }

  .impact-emoji { font-size: 2rem; margin-bottom: 0.75rem; }

  .impact-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .impact-text {
    font-size: 0.68rem;
    line-height: 1.65;
    color: var(--dim);
  }

  /* ─── RBAC SIMULATOR ─── */
  #rbac {
    background: var(--surface);
    border-top: 1px solid #3a1c63;
  }

  .rbac-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }

  .rbac-panel {
    background: var(--bg);
    border: 1px solid #3a1c63;
    padding: 1.5rem;
  }

  .rbac-panel-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #3a1c63;
  }

  .role-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 1px solid #3a1c63;
    color: var(--dim);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .role-btn:hover, .role-btn.selected {
    border-color: var(--accent);
    color: #fff;
    background: #1f1232;
  }

  .role-badge {
    padding: 0.1rem 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
    margin-left: auto;
  }

  .badge-high { background: rgba(255,60,110,0.2); color: var(--accent2); border: 1px solid rgba(255,60,110,0.3); }
  .badge-med { background: rgba(255,208,96,0.15); color: #ffd060; border: 1px solid rgba(255,208,96,0.25); }
  .badge-low { background: rgba(127,255,110,0.12); color: var(--accent3); border: 1px solid rgba(127,255,110,0.2); }

  .access-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid #3a1c63;
    font-size: 0.73rem;
    transition: all 0.3s;
  }

  .access-resource { color: var(--text); }
  .access-status { font-size: 0.65rem; letter-spacing: 0.08em; }
  .access-granted { color: var(--accent3); }
  .access-denied { color: var(--accent2); }
  .access-restricted { color: #ffd060; }

  /* ─── SOLUTION PATH ─── */
  #solution {
    background: var(--bg);
    overflow: hidden;
  }

  .timeline {
    position: relative;
    margin-top: 3rem;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent), #1f1232);
  }

  .tl-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 60px;
    cursor: pointer;
  }

  .tl-node {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--surface2);
    border: 1px solid #3a1c63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  }

  .tl-item:hover .tl-node, .tl-item.active .tl-node {
    background: var(--accent);
    color: var(--bg);
    box-shadow: var(--glow);
  }

  .tl-content {
    background: var(--surface);
    border: 1px solid #3a1c63;
    padding: 1.25rem 1.5rem;
    flex: 1;
    transition: border-color 0.3s;
  }

  .tl-item:hover .tl-content, .tl-item.active .tl-content {
    border-color: #3a1c63;
  }

  .tl-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.4rem;
  }

  .tl-text {
    font-size: 0.73rem;
    line-height: 1.7;
    color: var(--dim);
  }

  /* ─── STATS STRIP ─── */
  #stats {
    background: var(--surface2);
    padding: 4rem 10vw;
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }

  .stats-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: var(--glow);
    line-height: 1;
  }

  .stat-unit {
    font-size: 1.5rem;
    color: var(--dim);
  }

  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--dim);
    text-transform: uppercase;
    margin-top: 0.4rem;
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 3rem 10vw;
    border-top: 1px solid #3a1c63;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    position: relative;
    z-index: 1;
  }

  .footer-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent);
    text-shadow: var(--glow);
  }

  .footer-copy {
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.1em;
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 0.65rem;
    color: var(--dim);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--accent); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-terminal { display: none; }
    h1 { max-width: 100%; }
    .jit-layout { grid-template-columns: 1fr; }
    .rbac-layout { grid-template-columns: 1fr; }
    nav ul { display: none; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  }