/*
Theme Name: Torbex
Theme URI: https://torbex.nl
Author: Torbex
Author URI: https://torbex.nl
Description: Officieel Torbex websiteontwerp — web hosting, gaming servers en webdesign.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: torbex
Tags: dark, custom-colors, one-page, full-width-template
*/

    :root {
      --ink:   #0A0D0B;
      --ink2:  #1C221E;
      --acid:  #C8F53C;
      --lime:  #9ABF1A;
      --off:   #F0F2EC;
      --muted: #5C6860;
      --line:  rgba(200,245,60,0.15);
      --r: 4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--ink);
      color: var(--off);
      font-family: 'Barlow', sans-serif;
      font-weight: 400;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ─── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--acid);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
      mix-blend-mode: difference;
    }
    #cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1.5px solid rgba(200,245,60,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%,-50%);
      transition: all 0.18s ease;
    }
    #cursor.hovering { width: 18px; height: 18px; }
    #cursor-ring.hovering { width: 52px; height: 52px; border-color: rgba(200,245,60,0.9); }

    /* ─── PARTICLE CANVAS ─── */
    #particle-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9997;
    }

    /* ─── NOISE OVERLAY ─── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
      z-index: 9000;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 60px;
      border-bottom: 1px solid var(--line);
      background: rgba(10,13,11,0.92);
      backdrop-filter: blur(20px);
    }
    .nav-left { display: flex; align-items: center; gap: 32px; }
    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      color: var(--off);
      text-decoration: none;
      position: relative;
    }
    .logo span { color: var(--acid); }
    .nav-right { display: flex; align-items: center; gap: 28px; }
    .nav-right a {
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-right a:hover { color: var(--acid); }
    .nav-cta {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      padding: 8px 18px;
      background: var(--acid);
      color: var(--ink);
      border-radius: var(--r);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
      transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.82; color: var(--ink); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 80px 48px 60px;
      position: relative;
      overflow: hidden;
    }

    /* animated grid — very slow and subtle */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,245,60,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,245,60,0.06) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridDrift 60s linear infinite;
      opacity: 0.7;
    }
    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 80px 80px; }
    }

    /* hero scanline */
    .hero-scanline {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
      );
      pointer-events: none;
      z-index: 1;
    }

    /* glowing orb — subtle */
    .hero-orb {
      position: absolute; top: -20%; right: -10%;
      width: 70vw; height: 70vw;
      max-width: 900px; max-height: 900px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,245,60,0.06) 0%, rgba(200,245,60,0.02) 40%, transparent 65%);
      pointer-events: none;
      animation: orbPulse 12s ease-in-out infinite;
    }
    @keyframes orbPulse {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.04); opacity: 0.75; }
    }

    /* second orb lower left */
    .hero-orb2 {
      position: absolute; bottom: -20%; left: -15%;
      width: 50vw; height: 50vw;
      max-width: 600px; max-height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,245,60,0.025) 0%, transparent 65%);
      pointer-events: none;
      animation: orbPulse 16s ease-in-out infinite reverse;
    }

    .hero-label {
      position: relative; z-index: 2;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; color: var(--acid);
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .hero-label::before {
      content: ''; display: block;
      width: 32px; height: 1px; background: var(--acid);
    }

    /* ─── GLITCH TITLE ─── */
    .hero-title {
      position: relative; z-index: 2;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 13vw, 14rem);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: var(--off);
      user-select: none;
    }
    .hero-title .accent { color: var(--acid); }
    .hero-title .outline {
      -webkit-text-stroke: 1.5px rgba(200,245,60,0.35);
      color: transparent;
    }

    /* glitch effect */
    .glitch-word {
      position: relative;
      display: inline-block;
    }
    .glitch-word::before,
    .glitch-word::after {
      content: attr(data-text);
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      opacity: 0;
    }
    .glitch-word::before {
      color: #ff003c;
      clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
      transform: translateX(-3px);
    }
    .glitch-word::after {
      color: #00f0ff;
      clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%);
      transform: translateX(3px);
    }
    .glitch-word.glitching::before { opacity: 1; animation: glitchBefore 0.15s steps(2) forwards; }
    .glitch-word.glitching::after  { opacity: 1; animation: glitchAfter  0.15s steps(2) forwards; }
    @keyframes glitchBefore {
      0%  { clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%); transform: translateX(-4px); }
      33% { clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); transform: translateX(4px);  }
      66% { clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%); transform: translateX(-2px); }
      100%{ clip-path: polygon(0 0,   100% 0,   100% 0,   0 0);   transform: translateX(0);    }
    }
    @keyframes glitchAfter {
      0%  { clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%); transform: translateX(4px);  }
      33% { clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); transform: translateX(-3px); }
      66% { clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%); transform: translateX(2px);  }
      100%{ clip-path: polygon(0 0,   100% 0,   100% 0,   0 0);   transform: translateX(0);    }
    }

    /* ─── TYPING CURSOR ─── */
    .typed-wrapper {
      position: relative; z-index: 2;
      display: inline-block;
    }
    .typed-text { color: var(--acid); }
    .typed-cursor-char {
      display: inline-block;
      width: 3px; height: 0.8em;
      background: var(--acid);
      margin-left: 4px;
      vertical-align: middle;
      animation: caretBlink 0.8s step-end infinite;
    }
    @keyframes caretBlink { 0%,100%{opacity:1} 50%{opacity:0} }

    .hero-bottom {
      position: relative; z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      flex-wrap: wrap; gap: 24px;
    }
    .hero-desc {
      font-size: 1rem; font-weight: 300;
      color: var(--muted);
      max-width: 380px; line-height: 1.65;
    }
    .hero-desc strong { color: var(--off); font-weight: 500; }

    .hero-numbers { display: flex; gap: 40px; }
    .hn-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.6rem; color: var(--acid);
      line-height: 1; letter-spacing: 0.04em;
    }
    .hn-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; color: var(--muted);
      text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
    }

    .hero-scroll {
      display: flex; flex-direction: column;
      align-items: center; gap: 6px;
      color: var(--muted);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--acid), transparent);
      animation: scrollLine 1.8s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      51%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ─── HERO CTA BUTTONS ─── */
    .hero-ctas {
      display: flex; gap: 12px;
      margin-top: 12px;
    }
    .hero-btn-primary {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem; letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 28px;
      background: var(--acid); color: var(--ink);
      border: none; border-radius: var(--r);
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .hero-btn-primary:hover { background: var(--lime); transform: translateY(-2px); }
    .hero-btn-secondary {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem; letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 28px;
      background: transparent; color: var(--off);
      border: 1px solid var(--line);
      border-radius: var(--r);
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, transform 0.1s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .hero-btn-secondary:hover { border-color: rgba(200,245,60,0.5); color: var(--acid); transform: translateY(-2px); }

    /* ─── DIENSTEN ─── */
    #diensten { padding: 120px 48px; }

    .section-header {
      display: flex; align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
      flex-wrap: wrap; gap: 24px;
    }
    .section-header > div:first-child {
      min-width: 0;
      flex: 1 1 auto;
    }
    .section-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--acid);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-eyebrow::before {
      content: ''; display: block;
      width: 24px; height: 1px; background: var(--acid);
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 5vw, 5rem);
      line-height: 0.95; letter-spacing: 0.03em; color: var(--off);
      white-space: nowrap;
    }
    .section-count {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 6rem; color: transparent;
      -webkit-text-stroke: 1px rgba(200,245,60,0.2);
      line-height: 1; letter-spacing: 0.05em; user-select: none;
    }

    .service-rows {
      display: flex; flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 8px; overflow: hidden;
    }
    .service-row {
      display: grid;
      grid-template-columns: 64px 1fr auto;
      align-items: center; gap: 32px;
      padding: 36px 40px;
      border-bottom: 1px solid var(--line);
      background: var(--ink2);
      position: relative; overflow: hidden;
      transition: background 0.3s; cursor: default;
    }
    .service-row:last-child { border-bottom: none; }
    .service-row::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 0;
      background: linear-gradient(90deg, rgba(200,245,60,0.07), transparent);
      transition: width 0.4s ease;
    }
    .service-row:hover { background: #1e2820; }
    .service-row:hover::before { width: 100%; }

    .service-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem; color: var(--acid);
      letter-spacing: 0.06em; position: relative;
    }
    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem; letter-spacing: 0.04em;
      color: var(--off); margin-bottom: 6px;
      transition: color 0.2s;
    }
    .service-row:hover .service-name { color: var(--acid); }
    .service-desc {
      font-size: 0.875rem; font-weight: 300;
      color: var(--muted); max-width: 600px; line-height: 1.6;
    }
    .service-tags-row {
      display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap;
    }
    .stag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; padding: 3px 8px;
      border: 1px solid var(--line);
      border-radius: 3px; color: var(--muted);
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .service-arrow {
      font-size: 1.4rem; color: var(--acid);
      opacity: 0; transform: translateX(-10px);
      transition: opacity 0.3s, transform 0.3s;
      position: relative;
    }
    .service-row:hover .service-arrow { opacity: 1; transform: translateX(0); }

    /* ─── PRICING — ENHANCED ─── */
    #prijzen {
      padding: 120px 48px;
      background: var(--off);
      color: var(--ink);
    }
    #prijzen .section-eyebrow { color: var(--lime); }
    #prijzen .section-eyebrow::before { background: var(--lime); }
    #prijzen .section-title { color: var(--ink); }

    .pricing-toggle {
      display: flex; gap: 2px;
      background: rgba(10,13,11,0.08);
      border-radius: 6px; padding: 3px;
      width: fit-content; margin: 40px 0 56px;
    }
    .ptog {
      padding: 8px 20px; border-radius: 4px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; letter-spacing: 0.08em;
      text-transform: uppercase;
      background: transparent; color: var(--muted);
      border: none; cursor: pointer; transition: all 0.2s;
    }
    .ptog.on { background: var(--ink); color: var(--acid); }

    .pnl { display: none; }
    .pnl.on { display: block; }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(10,13,11,0.08);
      border-radius: 8px; overflow: hidden;
    }

    /* ─── PREMIUM CARD REDESIGN ─── */
    .p-card {
      background: var(--off);
      padding: 44px 36px;
      position: relative;
      transition: background 0.25s, transform 0.25s;
      overflow: hidden;
    }
    .p-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(154,191,26,0.4), transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .p-card:hover { background: #fff; transform: translateY(-4px); }
    .p-card:hover::after { transform: scaleX(1); }

    .p-card.star {
      background: var(--ink);
      color: var(--off);
    }
    .p-card.star::after {
      background: linear-gradient(90deg, transparent, var(--acid), transparent);
    }
    .p-card.star:hover { background: #0e1410; transform: translateY(-4px); }

    /* shine sweep on hover */
    .p-card::before {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
      transition: left 0.5s ease;
    }
    .p-card:hover::before { left: 150%; }

    .p-tier {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 24px;
    }
    .p-card.star .p-tier { color: rgba(200,245,60,0.5); }

    .p-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem; line-height: 1;
      letter-spacing: 0.02em; color: var(--ink);
      margin-bottom: 4px;
    }
    .p-card.star .p-price { color: var(--acid); }

    .p-per {
      font-size: 0.75rem; color: var(--muted);
      margin-bottom: 28px; font-weight: 300;
    }
    .p-card.star .p-per { color: rgba(255,255,255,0.35); }

    .p-divider {
      height: 1px; background: rgba(10,13,11,0.1); margin-bottom: 24px;
    }
    .p-card.star .p-divider { background: rgba(255,255,255,0.1); }

    .p-features {
      list-style: none;
      display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 36px;
    }
    .p-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.875rem; font-weight: 300;
      color: var(--muted); line-height: 1.4;
    }
    .p-card.star .p-features li { color: rgba(255,255,255,0.55); }
    .p-features li::before {
      content: '→'; font-size: 0.75rem;
      color: var(--lime); flex-shrink: 0; margin-top: 1px;
    }
    .p-card.star .p-features li::before { color: var(--acid); }

    .p-btn {
      display: block; width: 100%; text-align: center;
      padding: 13px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem; letter-spacing: 0.1em;
      text-transform: uppercase; border-radius: var(--r);
      text-decoration: none; transition: all 0.2s;
      position: relative; overflow: hidden;
    }
    .p-btn::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,0.08);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .p-btn:hover::after { transform: translateX(0); }
    .p-btn-outline {
      border: 1.5px solid rgba(10,13,11,0.18);
      color: var(--ink); background: transparent;
    }
    .p-btn-outline:hover { background: var(--ink); color: var(--acid); border-color: var(--ink); }
    .p-btn-solid {
      background: var(--acid); color: var(--ink);
      border: 1.5px solid var(--acid);
    }
    .p-btn-solid:hover { background: var(--lime); border-color: var(--lime); }

    .pop-badge {
      position: absolute; top: 20px; right: 20px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--acid); color: var(--ink);
      padding: 3px 9px; border-radius: 100px;
    }

    /* savings ribbon on star card */
    .savings-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--acid);
      background: rgba(200,245,60,0.1);
      border: 1px solid rgba(200,245,60,0.25);
      padding: 3px 10px; border-radius: 100px;
      margin-bottom: 20px;
    }
    .savings-tag::before { content: '★'; font-size: 0.55rem; }

    /* ─── OVER ONS ─── */
    #over-ons {
      padding: 120px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .section-eyebrow-dark {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--acid);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-eyebrow-dark::before {
      content: ''; display: block;
      width: 24px; height: 1px; background: var(--acid);
    }
    .about-bigtext {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 7rem);
      line-height: 0.9; letter-spacing: 0.02em;
      color: var(--off); margin: 24px 0 32px;
    }
    .about-bigtext em {
      font-style: normal; color: transparent;
      -webkit-text-stroke: 1.5px var(--acid);
    }
    .about-body {
      font-size: 1rem; font-weight: 300;
      color: var(--muted); line-height: 1.75; max-width: 440px;
    }
    .about-body + .about-body { margin-top: 16px; }
    .about-right { display: flex; flex-direction: column; gap: 16px; }
    .about-stat-card {
      background: var(--ink2);
      border: 1px solid var(--line);
      border-radius: 8px; padding: 28px 32px;
      display: flex; align-items: center; gap: 24px;
      transition: border-color 0.3s, transform 0.2s;
    }
    .about-stat-card:hover { border-color: rgba(200,245,60,0.4); transform: translateX(6px); }
    .asc-icon {
      width: 48px; height: 48px; border-radius: 8px;
      background: rgba(200,245,60,0.08);
      border: 1px solid var(--line);
      display: flex; align-items: center;
      justify-content: center; font-size: 1.3rem; flex-shrink: 0;
    }
    .asc-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem; color: var(--acid);
      letter-spacing: 0.04em; line-height: 1;
    }
    .asc-label { font-size: 0.8rem; font-weight: 300; color: var(--muted); margin-top: 2px; }

    /* ─── CONTACT ─── */
    #contact {
      padding: 120px 48px;
      background: var(--ink2);
      position: relative; overflow: hidden;
    }
    .contact-bg {
      position: absolute; bottom: -30%; left: -10%;
      width: 60vw; height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,245,60,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .contact-inner {
      position: relative;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .contact-tagline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 4.5vw, 5rem);
      line-height: 0.95; letter-spacing: 0.02em;
      color: var(--off); margin: 20px 0 28px;
    }
    .contact-tagline span { color: var(--acid); }
    .contact-blurb {
      font-size: 0.9rem; font-weight: 300;
      color: var(--muted); line-height: 1.7; margin-bottom: 36px;
    }
    .contact-links { display: flex; flex-direction: column; gap: 12px; }
    .cl-item {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none; color: var(--off);
      font-size: 0.9rem; font-weight: 300;
      padding: 14px 18px;
      border: 1px solid var(--line);
      border-radius: var(--r);
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .cl-item:hover { border-color: rgba(200,245,60,0.4); background: rgba(200,245,60,0.04); transform: translateX(4px); }
    .cl-icon {
      width: 34px; height: 34px;
      background: rgba(200,245,60,0.08);
      border-radius: var(--r);
      display: flex; align-items: center;
      justify-content: center; font-size: 1rem; flex-shrink: 0;
    }
    .cl-label { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
    .cl-value { font-size: 0.875rem; color: var(--off); font-weight: 400; margin-top: 1px; }

    .contact-form {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--line);
      border-radius: 10px; padding: 40px;
    }
    .cf-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.06em; color: var(--off); margin-bottom: 4px; }
    .cf-sub { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 28px; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .cf-group label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
    .cf-group input, .cf-group select, .cf-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      border-radius: var(--r); padding: 11px 14px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.875rem; font-weight: 300;
      color: var(--off); outline: none;
      transition: border-color 0.2s, background 0.2s; resize: vertical;
    }
    .cf-group input::placeholder, .cf-group textarea::placeholder { color: rgba(255,255,255,0.2); }
    .cf-group select option { background: var(--ink2); }
    .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
      border-color: rgba(200,245,60,0.5); background: rgba(200,245,60,0.04);
    }
    .cf-group textarea { min-height: 100px; }
    .cf-submit {
      width: 100%; padding: 14px;
      background: var(--acid); color: var(--ink);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem; letter-spacing: 0.14em;
      text-transform: uppercase; border: none;
      border-radius: var(--r); cursor: pointer;
      margin-top: 8px; transition: background 0.2s, transform 0.1s;
    }
    .cf-submit:hover { background: var(--lime); }
    .cf-submit:active { transform: scale(0.98); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      border-top: 1px solid var(--line);
      padding: 32px 48px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center; gap: 32px;
    }
    .f-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.1em; color: var(--off); text-decoration: none; }
    .f-logo span { color: var(--acid); }
    .f-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
    .f-links a { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .f-links a:hover { color: var(--acid); }
    .f-copy { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: var(--muted); text-align: right; letter-spacing: 0.06em; }

    /* ─── SCROLL PROGRESS BAR ─── */
    #nav-progress {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, var(--acid), var(--lime));
      z-index: 10001;
      transition: width 0.08s linear;
      box-shadow: 0 0 8px rgba(200,245,60,0.5);
    }

    /* ─── UNFOLD: text lines clip open from bottom ─── */
    .line-mask {
      overflow: hidden;
      display: block;
    }
    .line-inner {
      display: block;
      transform: translateY(105%);
      transition: transform 0.9s cubic-bezier(.16,1,.3,1);
    }
    .line-mask.unfolded .line-inner { transform: translateY(0); }

    /* stagger siblings */
    .line-mask:nth-child(1) .line-inner { transition-delay: 0s;    }
    .line-mask:nth-child(2) .line-inner { transition-delay: 0.08s; }
    .line-mask:nth-child(3) .line-inner { transition-delay: 0.16s; }
    .line-mask:nth-child(4) .line-inner { transition-delay: 0.24s; }
    .line-mask:nth-child(5) .line-inner { transition-delay: 0.32s; }

    /* ─── UNFOLD: horizontal rule expands from left ─── */
    .rule-unfold {
      height: 1px;
      background: var(--line);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1s cubic-bezier(.16,1,.3,1);
    }
    .rule-unfold.unfolded { transform: scaleX(1); }

    /* ─── UNFOLD: service rows slide + clip ─── */
    .service-row {
      clip-path: inset(0 0 100% 0);
      transition: clip-path 0.7s cubic-bezier(.16,1,.3,1), background 0.3s;
    }
    .service-row.unfolded { clip-path: inset(0 0 0% 0); }
    .service-row:nth-child(1) { transition-delay: 0s; }
    .service-row:nth-child(2) { transition-delay: 0.1s; }
    .service-row:nth-child(3) { transition-delay: 0.2s; }
    .service-row:nth-child(4) { transition-delay: 0.3s; }

    /* ─── UNFOLD: stat cards wipe in ─── */
    .about-stat-card {
      clip-path: inset(0 100% 0 0);
      transition: clip-path 0.75s cubic-bezier(.16,1,.3,1), border-color 0.3s, transform 0.2s;
    }
    .about-stat-card.unfolded { clip-path: inset(0 0% 0 0); }
    .about-stat-card:nth-child(1) { transition-delay: 0s;    }
    .about-stat-card:nth-child(2) { transition-delay: 0.12s; }
    .about-stat-card:nth-child(3) { transition-delay: 0.24s; }
    .about-stat-card:nth-child(4) { transition-delay: 0.36s; }

    /* ─── UNFOLD: pricing cards drop ─── */
    .p-card {
      transform: translateY(32px);
      opacity: 0;
      transition: transform 0.8s cubic-bezier(.16,1,.3,1), opacity 0.6s ease, background 0.25s;
    }
    .p-card.unfolded { transform: translateY(0); opacity: 1; }
    .p-card:nth-child(1) { transition-delay: 0s;    }
    .p-card:nth-child(2) { transition-delay: 0.14s; }
    .p-card:nth-child(3) { transition-delay: 0.28s; }

    /* ─── UNFOLD: counter numbers ─── */
    .count-up { font-variant-numeric: tabular-nums; }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.delay-1 { transition-delay: 0.1s; }
    .reveal.delay-2 { transition-delay: 0.2s; }
    .reveal.delay-3 { transition-delay: 0.3s; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── EASTER EGG OVERLAY ─── */
    #easter-egg {
      position: fixed; inset: 0;
      background: rgba(10,13,11,0.97);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      font-family: 'JetBrains Mono', monospace;
    }
    #easter-egg.show { opacity: 1; pointer-events: all; }
    .ee-terminal {
      width: min(600px, 90vw);
      border: 1px solid rgba(200,245,60,0.3);
      border-radius: 8px;
      overflow: hidden;
    }
    .ee-topbar {
      background: rgba(200,245,60,0.08);
      border-bottom: 1px solid rgba(200,245,60,0.15);
      padding: 12px 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .ee-dot { width: 10px; height: 10px; border-radius: 50%; }
    .ee-dot:nth-child(1) { background: #ff5f57; }
    .ee-dot:nth-child(2) { background: #ffbd2e; }
    .ee-dot:nth-child(3) { background: var(--acid); }
    .ee-title { margin-left: 8px; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; }
    .ee-body {
      padding: 28px;
      background: rgba(10,13,11,0.9);
    }
    .ee-line {
      font-size: 0.75rem; line-height: 2;
      letter-spacing: 0.06em;
      color: var(--muted);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .ee-line.show { opacity: 1; transform: none; }
    .ee-line .c-green { color: var(--acid); }
    .ee-line .c-white { color: var(--off); }
    .ee-line .c-muted { color: var(--muted); }
    .ee-close {
      margin-top: 28px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem; letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 24px;
      background: transparent;
      border: 1px solid rgba(200,245,60,0.3);
      border-radius: var(--r);
      color: var(--acid);
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .ee-close:hover { background: rgba(200,245,60,0.08); border-color: var(--acid); }

    /* ─── SCROLL ANIMATIONS — varied per element ─── */
    .reveal             { opacity: 0; transform: translateY(40px);    transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1); }
    .reveal-left        { opacity: 0; transform: translateX(-48px);   transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1); }
    .reveal-right       { opacity: 0; transform: translateX(48px);    transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1); }
    .reveal-scale       { opacity: 0; transform: scale(0.93);         transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
    .reveal.delay-1,
    .reveal-left.delay-1,
    .reveal-right.delay-1,
    .reveal-scale.delay-1  { transition-delay: 0.1s; }
    .reveal.delay-2,
    .reveal-left.delay-2,
    .reveal-right.delay-2,
    .reveal-scale.delay-2  { transition-delay: 0.2s; }
    .reveal.delay-3,
    .reveal-left.delay-3,
    .reveal-right.delay-3,
    .reveal-scale.delay-3  { transition-delay: 0.32s; }
    .reveal.delay-4        { transition-delay: 0.44s; }
    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible,
    .reveal-scale.visible  { opacity: 1; transform: none; }

    /* stat cards stagger */
    .about-stat-card.reveal-right:nth-child(1) { transition-delay: 0s;    }
    .about-stat-card.reveal-right:nth-child(2) { transition-delay: 0.1s;  }
    .about-stat-card.reveal-right:nth-child(3) { transition-delay: 0.2s;  }
    .about-stat-card.reveal-right:nth-child(4) { transition-delay: 0.3s;  }

    /* service rows stagger */
    .service-row.reveal:nth-child(1) { transition-delay: 0s;    }
    .service-row.reveal:nth-child(2) { transition-delay: 0.1s;  }
    .service-row.reveal:nth-child(3) { transition-delay: 0.2s;  }
    .service-row.reveal:nth-child(4) { transition-delay: 0.3s;  }

    /* ─── MOBILE HAMBURGER ─── */
    .ham-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px; height: 36px;
      background: none; border: none;
      cursor: pointer; padding: 4px;
    }
    .ham-btn span {
      display: block;
      height: 1.5px;
      background: var(--off);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }
    .ham-btn span:nth-child(3) { width: 60%; }
    .ham-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham-btn.open span:nth-child(2) { opacity: 0; }
    .ham-btn.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

    /* mobile nav drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: rgba(10,13,11,0.97);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--line);
      padding: 0;
      z-index: 9999;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(.16,1,.3,1), padding 0.3s ease;
    }
    .mobile-nav.open {
      max-height: 400px;
      padding: 16px 0 24px;
    }
    .mobile-nav a {
      display: block;
      padding: 14px 28px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.8rem; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
      border-bottom: 1px solid rgba(200,245,60,0.05);
    }
    .mobile-nav a:hover { color: var(--acid); padding-left: 36px; }
    .mobile-nav .mobile-cta {
      margin: 16px 28px 0;
      display: block;
      text-align: center;
      padding: 14px;
      background: var(--acid); color: var(--ink);
      border-radius: var(--r);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem; letter-spacing: 0.12em;
      text-transform: uppercase; font-weight: 600;
      text-decoration: none;
      border-bottom: none;
    }
    .mobile-nav .mobile-cta:hover { opacity: 0.85; padding-left: 14px; }

    /* ─── TABLET (≤ 1024px) ─── */
    @media (max-width: 1024px) {
      .hero-title { font-size: clamp(4rem, 10vw, 9rem); }
      #over-ons { gap: 48px; }
      .contact-inner { gap: 48px; }
    }

    /* ─── MOBILE (≤ 768px) ─── */
    @media (max-width: 768px) {
      /* nav */
      nav { padding: 0 20px; }
      .nav-right { display: none; }
      .nav-status { display: none; }
      .ham-btn { display: flex; }
      .mobile-nav { display: block; }

      /* hero */
      .hero {
        padding: 100px 20px 48px;
        min-height: 100svh;
        justify-content: flex-end;
      }
      .hero-title {
        font-size: clamp(3.8rem, 16vw, 7rem);
        line-height: 0.92;
      }
      .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-top: 32px;
        padding-top: 24px;
      }
      .hero-desc { max-width: 100%; font-size: 0.9rem; }
      .hero-numbers { gap: 28px; }
      .hn-val { font-size: 2rem; }
      .hero-scroll { display: none; }
      .hero-ctas { flex-direction: column; gap: 10px; width: 100%; }
      .hero-btn-primary, .hero-btn-secondary { justify-content: center; width: 100%; padding: 15px; }

      /* sections */
      #diensten, #prijzen, #over-ons, #contact { padding: 72px 20px; }

      /* section header */
      .section-header { margin-bottom: 40px; }
      .section-count { display: none; }
      .section-title { white-space: normal; font-size: clamp(2.2rem, 8vw, 3.5rem); }

      /* services */
      .service-row {
        grid-template-columns: 40px 1fr;
        padding: 24px 20px;
        gap: 16px;
      }
      .service-arrow { display: none; }
      .service-name { font-size: 1.5rem; }
      .service-desc { font-size: 0.82rem; }

      /* pricing */
      .pricing-toggle {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        margin: 28px 0 40px;
      }
      .ptog { padding: 10px 6px; font-size: 0.65rem; }
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 2px;
      }
      .p-card { padding: 32px 24px; }
      .p-card:hover { transform: none; }
      .p-price { font-size: 3.5rem; }

      /* about */
      #over-ons {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 72px 20px;
      }
      .about-bigtext { font-size: clamp(2.5rem, 10vw, 4.5rem); margin: 16px 0 24px; }
      .about-body { max-width: 100%; }
      .about-stat-card { padding: 20px 20px; gap: 16px; }
      .about-stat-card:hover { transform: none; }
      .asc-val { font-size: 1.8rem; }

      /* contact */
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .contact-form { padding: 28px 20px; }
      .cf-row { grid-template-columns: 1fr; }
      .contact-tagline { font-size: clamp(2rem, 8vw, 3rem); }

      /* footer */
      footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 20px;
        gap: 20px;
      }
      .f-links { gap: 16px; }
      .f-copy { text-align: center; }

      /* hide cursor / canvas */
      #cursor, #cursor-ring, #particle-canvas { display: none; }
      body { cursor: auto; }

      /* easter egg */
      .ee-body { padding: 18px; }
      .ee-line { font-size: 0.68rem; }
    }

    /* ─── SMALL PHONES (≤ 390px) ─── */
    @media (max-width: 390px) {
      .hero-title { font-size: clamp(3rem, 18vw, 5rem); }
      .hero-numbers { gap: 16px; }
      .hn-val { font-size: 1.7rem; }
      .pricing-toggle { grid-template-columns: 1fr 1fr; }
    }
    /* ─── LOGO SCROLL SECTION ─── */
    /* ─── GLOBAL ANIMATED GRID (fixed — seamless across sections) ─── */
    #global-grid {
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,245,60,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,245,60,0.06) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridDrift 60s linear infinite;
      opacity: 0.7;
      pointer-events: none;
      z-index: 0;
    }
    /* hero's own grid is now redundant */
    .hero-grid { display: none; }

    #logo-scroll {
      height: 480vh;
      position: relative;
    }
    #logo-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: transparent;
    }
    /* ls-grid replaced by global-grid */
    .ls-grid { display: none; }
    .ls-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,245,60,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,245,60,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }
    /* hero-label that re-appears at the top of this section */
    #ls-hero-label {
      position: absolute;
      top: 48px;
      left: 64px;
      font-family: "JetBrains Mono", monospace;
      font-size: 0.7rem;
      color: var(--acid);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.16,1,.3,1);
      z-index: 4;
    }
    #ls-hero-label::before {
      content: "";
      display: block;
      width: 32px; height: 1px;
      background: var(--acid);
      flex-shrink: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease 0.3s;
    }
    #ls-hero-label.show { opacity: 1; transform: translateY(0); }
    #ls-hero-label.show::before { transform: scaleX(1); }

    /* full layout */
    #ls-layout {
      position: relative;
      width: 100%;
      max-width: 1200px;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 80px;
      z-index: 2;
    }

    /* ── logo lines ── */
    #ls-logo-stack {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ls-line {
      position: relative;
      overflow: visible;
    }
    .ls-line img {
      width: 100%;
      height: auto;
      display: block;
      will-change: transform, opacity, filter;
      /* hidden by default — JS drives the reveal */
      transform: translateX(-120%) rotate(-4deg);
      opacity: 0;
      filter: blur(8px);
    }

    /* ── text panels ── */
    #ls-text-wrap {
      position: relative;
      min-height: 260px;
    }
    .ls-panel {
      position: absolute;
      top: 0; left: 0; right: 0;
      opacity: 0;
      transform: translateX(24px);
      pointer-events: none;
      transition: opacity 0.5s ease 0.2s, transform 0.6s cubic-bezier(.16,1,.3,1) 0.2s;
    }
    .ls-panel.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
      pointer-events: auto;
    }
    /* panel exit: slide out to left */
    .ls-panel.exit {
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      position: absolute;
    }
    .ls-panel-eyebrow {
      font-family: "JetBrains Mono", monospace;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--acid);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .ls-panel-eyebrow::before {
      content: "";
      width: 24px; height: 1px;
      background: var(--acid);
      flex-shrink: 0;
    }
    .ls-panel-heading {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(2.2rem, 3.6vw, 3.8rem);
      line-height: 0.95;
      letter-spacing: 0.03em;
      color: var(--off);
      margin-bottom: 20px;
    }
    .ls-panel-body {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 360px;
    }
    .ls-panel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .ls-panel-tag {
      font-family: "JetBrains Mono", monospace;
      font-size: 0.6rem;
      padding: 4px 10px;
      border: 1px solid var(--line);
      border-radius: 3px;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: border-color 0.25s, color 0.25s;
    }
    /* tags light up when panel is active */
    .ls-panel.active .ls-panel-tag {
      animation: tagPop 0.4s ease forwards;
    }
    .ls-panel.active .ls-panel-tag:nth-child(1) { animation-delay: 0.35s; }
    .ls-panel.active .ls-panel-tag:nth-child(2) { animation-delay: 0.42s; }
    .ls-panel.active .ls-panel-tag:nth-child(3) { animation-delay: 0.49s; }
    .ls-panel.active .ls-panel-tag:nth-child(4) { animation-delay: 0.56s; }
    @keyframes tagPop {
      from { opacity: 0.2; transform: translateY(6px); }
      to   { opacity: 1;   transform: translateY(0); }
    }

    /* progress dots */
    #ls-dots {
      position: absolute;
      right: 48px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 3;
    }
    .ls-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(200,245,60,0.2);
      border: 1px solid rgba(200,245,60,0.35);
      transition: background 0.3s, transform 0.3s, border-color 0.3s, height 0.3s;
    }
    .ls-dot.active {
      background: var(--acid);
      border-color: var(--acid);
      transform: scale(1.6);
      height: 14px;
      border-radius: 3px;
    }

    @media (max-width: 768px) {
      #logo-scroll { height: 400vh; }
      #ls-hero-label { left: 24px; top: 36px; font-size: 0.6rem; }
      #ls-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 24px;
        align-items: start;
        padding-top: 80px;
      }
      #ls-logo-stack { gap: 8px; }
      #ls-dots { display: none; }
      .ls-panel-body { max-width: 100%; }
      #ls-text-wrap { min-height: 200px; }
    }



/* ═══════════════════════════════════════════════════════════════════
   PAGE TEMPLATES
   ═══════════════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--off);
  margin: 16px 0 20px; overflow: hidden;
}
.page-hero-desc {
  font-size: 1.05rem; font-weight: 300;
  color: var(--muted); max-width: 480px; line-height: 1.65;
}
.torbex-content-area { padding: 80px 48px; background: var(--ink2); }
.torbex-content-inner { max-width: 780px; margin: 0 auto; }
.torbex-entry-content {
  font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8;
}
.torbex-entry-content h1,.torbex-entry-content h2,.torbex-entry-content h3 {
  font-family: 'Bebas Neue', sans-serif; color: var(--off);
  letter-spacing: 0.04em; margin: 2em 0 0.5em; line-height: 1;
}
.torbex-entry-content h1 { font-size: clamp(2.5rem,5vw,5rem); }
.torbex-entry-content h2 { font-size: clamp(2rem,4vw,3.5rem); }
.torbex-entry-content h3 { font-size: clamp(1.5rem,3vw,2.5rem); }
.torbex-entry-content p { margin-bottom: 1.5em; }
.torbex-entry-content a { color: var(--acid); text-decoration: none; border-bottom: 1px solid rgba(200,245,60,0.3); }
.torbex-entry-content a:hover { border-color: var(--acid); }
.torbex-entry-content ul,.torbex-entry-content ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.torbex-entry-content li { margin-bottom: 0.5em; }
.torbex-entry-content blockquote {
  border-left: 3px solid var(--acid); padding: 16px 24px;
  margin: 2em 0; background: rgba(200,245,60,0.04);
  font-style: italic; color: var(--off);
}
.torbex-entry-content code {
  font-family: 'JetBrains Mono', monospace; font-size: 0.85em;
  background: rgba(200,245,60,0.08); border: 1px solid var(--line);
  border-radius: 3px; padding: 2px 6px; color: var(--acid);
}
.torbex-entry-content img { max-width: 100%; border-radius: 6px; margin-bottom: 1.5em; }
.torbex-entry-content hr { border: none; border-top: 1px solid var(--line); margin: 2.5em 0; }

/* 404 */
.torbex-404 {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; position: relative;
  overflow: hidden; padding: 120px 48px 80px;
}
.torbex-404-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 40px;
  width: 100%; max-width: 660px;
}
.torbex-404-terminal {
  width: 100%; border: 1px solid rgba(200,245,60,0.25);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 0 60px rgba(200,245,60,0.06);
}
.torbex-404-body { background: rgba(10,13,11,0.95); padding: 28px 28px 20px; }
.torbex-404-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; line-height: 2; letter-spacing: 0.06em;
  color: var(--muted); opacity: 0; transform: translateX(-6px);
  animation: lineIn 0.3s ease forwards;
}
.torbex-404-line:nth-child(1){animation-delay:0.1s}
.torbex-404-line:nth-child(2){animation-delay:0.4s}
.torbex-404-line:nth-child(3){animation-delay:0.9s}
.torbex-404-line:nth-child(4){animation-delay:1.2s}
.torbex-404-line:nth-child(5){animation-delay:1.4s}
.torbex-404-line:nth-child(6){animation-delay:1.7s}
.torbex-404-line:nth-child(7){animation-delay:2.0s}
.torbex-404-line:nth-child(8){animation-delay:2.2s}
@keyframes lineIn { to { opacity:1; transform:translateX(0); } }
.torbex-404-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem,22vw,14rem); line-height: 0.85;
  letter-spacing: 0.04em; color: transparent;
  -webkit-text-stroke: 2px rgba(200,245,60,0.25);
  user-select: none; pointer-events: none;
  animation: fadeUp 0.8s 2.5s cubic-bezier(.16,1,.3,1) both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.torbex-404-links {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 2.8s cubic-bezier(.16,1,.3,1) both;
}
.torbex-404-nav {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s 3.0s cubic-bezier(.16,1,.3,1) both;
}
.torbex-404-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.torbex-404-nav a:hover { color: var(--acid); }
@media (max-width: 768px) {
  .torbex-404 { padding: 100px 24px 60px; }
  .torbex-404-links { flex-direction: column; width: 100%; }
  .page-hero { padding: 100px 24px 48px; }
  .torbex-content-area { padding: 60px 24px; }
}
