
    :root {
      --yellow: #FFE500;
      --black: #080808;
      --red: #FF2D2D;
      --white: #F5F5F0;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Space Mono', monospace;
      min-height: 100vh;
      overflow-x: hidden;
      cursor: crosshair;
    }

    /* Scanline overlay */
    body::after {
      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: 100;
    }

    /* Noise texture */
    body::before {
      content: '';
      position: fixed;
      inset: -50%;
      width: 200%;
      height: 200%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 99;
      opacity: 0.4;
      animation: drift 8s linear infinite;
    }

    @keyframes drift {
      0% { transform: translate(0, 0); }
      100% { transform: translate(-50px, -50px); }
    }

    /* HAZARD STRIPES TOP */
    .hazard-top {
      width: 100%;
      height: 18px;
      background: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0px,
        var(--yellow) 20px,
        var(--black) 20px,
        var(--black) 40px
      );
      animation: stripeShift 2s linear infinite;
    }

    @keyframes stripeShift {
      from { background-position: 0 0; }
      to { background-position: 56px 0; }
    }

    /* TICKER */
    .ticker {
      background: var(--red);
      color: var(--white);
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      padding: 6px 0;
      overflow: hidden;
      white-space: nowrap;
      border-bottom: 2px solid var(--yellow);
    }

    .ticker-inner {
      display: inline-block;
      animation: ticker 18s linear infinite;
    }

    @keyframes ticker {
      from { transform: translateX(100vw); }
      to { transform: translateX(-100%); }
    }

    /* MAIN LAYOUT */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 40px;
      position: relative;
      z-index: 10;
    }

    /* LOGO AREA */
    .logo-area {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 10px;
      animation: fadeSlideIn 0.6s ease both;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 12vw, 160px);
      line-height: 0.9;
      color: var(--yellow);
      letter-spacing: -2px;
      text-shadow: 6px 6px 0 var(--red), 12px 12px 0 rgba(255,45,45,0.3);
      position: relative;
    }

    .logo::before {
      content: 'LUMEN';
      position: absolute;
      top: 4px;
      left: 4px;
      color: var(--red);
      z-index: -1;
    }

    .logo-tag {
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--red);
      text-transform: uppercase;
      border: 1px solid var(--red);
      padding: 4px 8px;
      animation: blink 1.4s step-end infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* UNDER CONSTRUCTION BLOCK */
    .construction-block {
      margin: 40px 0;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0;
      border: 2px solid var(--yellow);
      animation: fadeSlideIn 0.6s 0.2s ease both;
      opacity: 0;
    }

    .construction-side {
      background: var(--yellow);
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 0.3em;
      color: var(--black);
      padding: 20px 10px;
      white-space: nowrap;
    }

    .construction-main {
      padding: 40px;
    }

    .construction-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 80px);
      line-height: 1;
      color: var(--white);
      margin-bottom: 20px;
    }

    .construction-title span {
      color: var(--yellow);
    }

    .construction-body {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(245,245,240,0.6);
      max-width: 500px;
      margin-bottom: 32px;
    }

    /* PROGRESS BAR */
    .progress-label {
      font-size: 10px;
      letter-spacing: 0.3em;
      color: var(--yellow);
      margin-bottom: 8px;
    }

    .progress-track {
      height: 4px;
      background: rgba(255,255,255,0.1);
      position: relative;
      overflow: hidden;
      margin-bottom: 32px;
    }

    .progress-fill {
      height: 100%;
      width: 0%;
      background: var(--yellow);
      animation: fillProgress 3s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      position: relative;
    }

    .progress-fill::after {
      content: '';
      position: absolute;
      right: 0;
      top: -4px;
      width: 2px;
      height: 12px;
      background: var(--white);
      box-shadow: 0 0 8px var(--yellow);
    }

    @keyframes fillProgress {
      to { width: 68%; }
    }

    /* EMAIL FORM */
    .notify-form {
      display: flex;
      gap: 0;
      max-width: 460px;
    }

    .notify-input {
      flex: 1;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      border-right: none;
      color: var(--white);
      font-family: 'Space Mono', monospace;
      font-size: 12px;
      padding: 14px 18px;
      outline: none;
      transition: border-color 0.2s;
    }

    .notify-input::placeholder { color: rgba(255,255,255,0.25); }
    .notify-input:focus { border-color: var(--yellow); }

    .notify-btn {
      background: var(--yellow);
      color: var(--black);
      border: none;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 16px;
      letter-spacing: 0.15em;
      padding: 14px 28px;
      cursor: crosshair;
      transition: background 0.15s, transform 0.1s;
    }

    .notify-btn:hover {
      background: var(--white);
      transform: translate(-2px, -2px);
    }
    .notify-btn:active { transform: translate(0,0); }

    /* STATS ROW */
    .stats {
      display: flex;
      gap: 0;
      margin-top: 60px;
      border-top: 1px solid rgba(255,255,255,0.08);
      animation: fadeSlideIn 0.6s 0.4s ease both;
      opacity: 0;
    }

    .stat {
      flex: 1;
      padding: 32px 0 0;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat:last-child { border-right: none; }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 10px;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
    }

    /* BOTTOM CORNER ELEMENTS */
    .corner-tl, .corner-br {
      position: fixed;
      font-size: 10px;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.15);
      z-index: 10;
    }
    .corner-tl { top: 60px; left: 40px; }
    .corner-br { bottom: 30px; right: 40px; text-align: right; }

    /* GLITCH ANIMATION ON LOGO HOVER */
    .logo:hover {
      animation: glitch 0.3s steps(2) both;
    }

    @keyframes glitch {
      0%   { text-shadow: 6px 6px 0 var(--red), -6px -2px 0 #0ff; }
      25%  { text-shadow: -6px 6px 0 var(--red), 6px -2px 0 #0ff; clip-path: inset(20% 0 30% 0); }
      50%  { text-shadow: 6px -6px 0 #0ff, -6px 2px 0 var(--red); clip-path: inset(50% 0 10% 0); }
      75%  { text-shadow: -2px 6px 0 var(--red), 6px -6px 0 #0ff; clip-path: inset(10% 0 60% 0); }
      100% { text-shadow: 6px 6px 0 var(--red), 12px 12px 0 rgba(255,45,45,0.3); clip-path: none; }
    }

    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* CURSOR DOT */
    .cursor {
      position: fixed;
      width: 8px;
      height: 8px;
      background: var(--yellow);
      border-radius: 50%;
      pointer-events: none;
      z-index: 999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.2s, height 0.2s;
      mix-blend-mode: difference;
    }

    @media (max-width: 600px) {
      .container { padding: 40px 20px; }
      .construction-main { padding: 24px; }
      .notify-form { flex-direction: column; }
      .notify-input { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
      .stats { flex-direction: column; gap: 20px; }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
    }