  :root {
    --red: #883CF0;
    --amber: #af62c8;
    --white: #e2e8f0;
    --off: #180f26;
    --dark: #191127;
    --mid: #23133a;
    --line: #3a1c63;
    --glow: 0 0 30px rgba(143, 45, 255, 0.35);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* ── SCANLINE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 9999;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.04) 2px,
      rgba(0,0,0,0.04) 4px
    );
    pointer-events: none;
  }

  /* ── NOISE GRAIN ── */
  body::after {
    content: '';
    position: fixed; inset: 0; z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  /* ── HEADER ── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid var(--line);
    background: #180f26;
    backdrop-filter: blur(12px);
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.12em;
    color: var(--white);
  }
  .logo span { color: var(--red); }

  .live-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 5px 14px;
    border-radius: 2px;
  }
  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--red);
    animation: blink 1.2s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

  nav { display: flex; gap: 30px; }
  nav a {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(245,240,232,0.5); text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--amber); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(150, 45, 255, 0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 80% at 20% 80%, rgba(166, 0, 255, 0.04) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(#962dff12 1px, transparent 1px),
      linear-gradient(90deg, #962dff12 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-text { position: relative; z-index: 2; }

  .eyebrow {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .eyebrow::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--red);
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9vw, 130px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
  }
  h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber);
    display: block;
  }

  .hero-desc {
    max-width: 420px;
    color: rgba(241, 239, 235, 0.808);
    font-size: 14px; line-height: 1.8;
    margin-bottom: 40px;
  }

  .cta-group { display: flex; gap: 16px; align-items: center; }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'DM Mono', monospace;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    border: none; cursor: crosshair;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { background: #883cf0e0; box-shadow: var(--glow); }

  .btn-ghost {
    color: var(--white); background: transparent;
    padding: 14px 32px;
    font-family: 'DM Mono', monospace;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    border: 1px solid #3a1c63; cursor: crosshair;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

  /* ── VIEWER COUNTER ── */
  .hero-side { position: relative; z-index: 2; }

  .monitor {
    border: 1px solid #3a1c63;
    background: var(--mid);
    padding: 30px;
    position: relative;
    overflow: hidden;
  }
  .monitor::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--amber));
    animation: scan-line 3s linear infinite;
  }
  @keyframes scan-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  .monitor-label {
    font-size: 10px; letter-spacing: 0.2em; color: rgba(245, 240, 232, 0.862);
    text-transform: uppercase; margin-bottom: 20px;
    display: flex; justify-content: space-between;
  }

  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }

  .stat-box {
    background: rgba(0,0,0,0.3);
    padding: 16px;
    border: 1px solid var(--line);
    text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px; color: var(--amber);
    display: block; line-height: 1;
  }
  .stat-label {
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(245,240,232,0.4); margin-top: 4px; display: block;
  }

  .waveform {
    display: flex; align-items: flex-end; gap: 3px;
    height: 50px; margin-bottom: 20px;
  }
  .wave-bar {
    flex: 1; background: var(--red); opacity: 0.7;
    border-radius: 1px 1px 0 0;
    animation: wave-anim 0.8s ease-in-out infinite alternate;
  }
  .wave-bar:nth-child(2n) { background: var(--amber); animation-delay: 0.1s; }
  .wave-bar:nth-child(3n) { animation-delay: 0.2s; }
  .wave-bar:nth-child(5n) { animation-delay: 0.35s; }
  @keyframes wave-anim {
    from { height: 20%; }
    to { height: 100%; }
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 80px; }

  .section-tag {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::after {
    content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--red);
  }

  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95; letter-spacing: 0.03em;
    margin-bottom: 50px;
  }

  /* ── PLATFORMS SECTION ── */
  #platforms { background: var(--off); }

  .platforms-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }

  .platform-intro { color: rgba(245,240,232,0.55); line-height: 1.9; }

  .platform-list { display: flex; flex-direction: column; gap: 2px; }

  .platform-item {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 20px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    background: var(--dark);
    cursor: crosshair;
    transition: border-color 0.2s, background 0.2s;
    position: relative; overflow: hidden;
  }
  .platform-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--red); transform: scaleY(0); transition: transform 0.25s;
  }
  .platform-item:hover { border-color: #5e309d; background: #1f1232; }
  .platform-item:hover::before { transform: scaleY(1); }

  .platform-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 28px;
    color: rgba(245,240,232,0.15); width: 40px;
  }
  .platform-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.05em; }
  .platform-tag { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
  .platform-best { font-size: 10px; color: var(--amber); margin-top: 2px; }

  .platform-meter {
    width: 80px; height: 3px; background: rgba(245,240,232,0.1);
    position: relative;
  }
  .platform-fill {
    position: absolute; left: 0; top: 0; height: 100%;
    background: linear-gradient(90deg, var(--red), var(--amber));
    transition: width 1s ease;
  }

  /* ── TECH SECTION ── */
  #tech {
    background: var(--dark);
    position: relative; overflow: hidden;
  }

  .tech-bg {
    position: absolute; right: -200px; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(149, 0, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; }

  .tech-card {
    background: var(--mid);
    padding: 36px 28px;
    border: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    cursor: crosshair;
  }
  .tech-card:hover { transform: translateY(-4px); border-color: #5e309d; }

  .tech-icon {
    font-size: 32px; margin-bottom: 18px; display: block;
    filter: grayscale(0.3);
  }
  .tech-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; letter-spacing: 0.05em; margin-bottom: 12px;
  }
  .tech-card p { font-size: 13px; color: rgba(245,240,232,0.55); line-height: 1.75; }

  .tech-card::after {
    content: attr(data-year);
    position: absolute; bottom: 20px; right: 20px;
    font-family: 'Bebas Neue', sans-serif; font-size: 64px;
    color: rgba(245,240,232,0.03); line-height: 1;
  }

  /* ── SETUP STEPS ── */
  #setup { background: var(--off); }

  .steps-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

  .step-list { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: flex; gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    cursor: crosshair;
    transition: padding-left 0.2s;
  }
  .step:hover { padding-left: 12px; }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; color: rgba(213, 45, 255, 0.2);
    line-height: 1; flex-shrink: 0; width: 60px; text-align: right;
    transition: color 0.2s;
  }
  .step:hover .step-num { color: var(--red); }

  .step-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 0.05em; margin-bottom: 8px;
  }
  .step-content p { font-size: 13px; color: rgba(245,240,232,0.55); line-height: 1.75; }

  .steps-side {
    position: sticky; top: 120px;
  }

  .terminal {
    background: #0f0818;
    border: 1px solid #3a1c63;
    padding: 24px;
    font-size: 12px;
    line-height: 1.8;
  }
  .terminal-bar {
    display: flex; gap: 8px; margin-bottom: 20px;
  }
  .dot-r { width: 12px; height: 12px; border-radius: 50%; background: #FF5F56; }
  .dot-y { width: 12px; height: 12px; border-radius: 50%; background: #FFBD2E; }
  .dot-g { width: 12px; height: 12px; border-radius: 50%; background: #27C93F; }

  .terminal-line { display: flex; gap: 10px; margin-bottom: 4px; }
  .prompt { color: var(--red); }
  .cmd { color: var(--amber); }
  .out { color: rgba(245,240,232,0.5); padding-left: 20px; }
  .cursor-blink {
    display: inline-block; width: 8px; height: 14px;
    background: var(--white); margin-left: 2px;
    animation: blink 1s step-end infinite;
  }

  /* ── FREELANCE ── */
  #freelance { background: var(--dark); }

  .roles-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }

  .role-cards { display: flex; flex-direction: column; gap: 16px; }

  .role-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px;
    border: 1px solid var(--line);
    transition: border-color 0.2s, background 0.2s;
    cursor: crosshair;
  }
  .role-card:hover { border-color: var(--red); background: #1f1232; }

  .role-left { display: flex; align-items: center; gap: 20px; }
  .role-icon { font-size: 26px; }
  .role-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.05em; }
  .role-skill { font-size: 10px; letter-spacing: 0.15em; color: rgba(245,240,232,0.35); text-transform: uppercase; margin-top: 2px; }
  .role-tag {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid;
  }
  .tag-hot { border-color: var(--red); color: var(--red); }
  .tag-up { border-color: var(--amber); color: var(--amber); }
  .tag-new { border-color: rgba(241, 232, 245, 0.3); color: rgba(241, 232, 245, 0.5); }

  .freelance-aside {
    display: flex; flex-direction: column; gap: 20px;
  }

  .aside-box {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--mid);
  }
  .aside-box h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.05em; margin-bottom: 14px; color: var(--amber); }
  .aside-box p { font-size: 12px; color: rgba(245,240,232,0.5); line-height: 1.75; }

  /* ── PRIVACY ── */
  #privacy { background: var(--off); }

  .privacy-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

  .privacy-features { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

  .priv-card {
    padding: 32px 24px;
    background: var(--dark);
    border: 1px solid var(--line);
    position: relative;
    transition: border-color 0.2s;
  }
  .priv-card:hover { border-color: #5e309d; }

  .priv-icon { font-size: 28px; margin-bottom: 14px; display: block; }
  .priv-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.05em; margin-bottom: 8px; }
  .priv-card p { font-size: 12px; color: rgba(245,240,232,0.5); line-height: 1.7; }

  .privacy-text { color: rgba(245,240,232,0.6); line-height: 1.9; }
  .privacy-text p { margin-bottom: 20px; }

  /* ── CTA BANNER ── */
  #cta {
    background: var(--red);
    padding: 80px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: 'STREAM';
    position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif; font-size: 220px;
    color: rgba(255,255,255,0.05); line-height: 1;
    pointer-events: none;
  }

  .cta-text { position: relative; }
  .cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 58px; line-height: 0.95; margin-bottom: 0; color: var(--white); }
  .cta-text em { font-family: 'Playfair Display', serif; font-style: italic; }

  .cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; }
  .btn-white {
    background: var(--white); color: #1A0000;
    padding: 16px 40px;
    font-family: 'DM Mono', monospace;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    border: none; cursor: crosshair;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: opacity 0.2s;
  }
  .btn-white:hover { opacity: 0.85; }
  .cta-sub { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-align: center; }

  /* ── FOOTER ── */
  footer {
    padding: 50px 80px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.1em; }
  .footer-logo span { color: var(--red); }
  .footer-copy { font-size: 11px; color: rgba(245,240,232,0.3); letter-spacing: 0.1em; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(245,240,232,0.4); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--amber); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── TICKER ── */
  .ticker-wrap {
    background: var(--red);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
  }
  .ticker {
    display: flex; gap: 60px;
    white-space: nowrap;
    animation: ticker-run 25s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px; letter-spacing: 0.15em;
    color: rgba(255,255,255,0.85);
  }
  @keyframes ticker-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-sep { color: rgba(255,255,255,0.3); }

  /* ── MOBILE RESPONSIVE ── */
  @media (max-width: 900px) {
    header { padding: 14px 20px; }
    nav { display: none; }
    #hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
    section { padding: 60px 24px; }
    .platforms-layout, .steps-layout, .roles-layout, .privacy-layout { grid-template-columns: 1fr; }
    .privacy-features { grid-template-columns: 1fr; }
    #cta { flex-direction: column; gap: 30px; padding: 60px 24px; }
    footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
    .footer-links { justify-content: center; }
  }