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

    body {
      width: 100%;
      min-height: 100vh;
      background: #080d14;
      font-family: 'Exo 2', sans-serif;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .content { flex: 1; }

    /* Grid scanline overlay */
    body::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,232,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,232,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      z-index: 0;
    }

    /* Radial glow center-left */
    body::after {
      content: '';
      position: absolute;
      left: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse, rgba(0,212,232,0.08) 0%, transparent 65%);
      z-index: 0;
    }

    /* Right-side gold accent glow */
    .glow-gold {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(245,200,66,0.07) 0%, transparent 65%);
      z-index: 0;
    }

    /* Waveform background graphic */
    .waveform {
      position: absolute;
      bottom: 250px;
      left: 0;
      right: 0;
      height: 180px;
      z-index: 0;
      opacity: 0.15;
    }

    .content {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 67px 72px 44px;
    }

    /* Top bar */
    .top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
      border: 1.5px solid #00d4e8;
    }

    .logo-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #00d4e8;
      text-shadow: 0 0 12px rgba(0,212,232,0.4);
    }

    .network-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(13,22,34,0.8);
      border: 1px solid #1e3050;
      border-radius: 6px;
      padding: 10px 20px;
    }

    .network-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #00d4e8;
      box-shadow: 0 0 8px rgba(0,212,232,0.8);
      animation: pulse 2s infinite;
    }

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

    .network-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.72rem;
      color: #6a85a8;
      letter-spacing: 0.1em;
    }

    .network-text span {
      color: #00d4e8;
    }

    /* Center headline */
    .headline-block {
      margin-top: 125px;
      margin-bottom: 36px;
    }

    .eyebrow {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: #f5c842;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .headline {
      font-family: 'Orbitron', sans-serif;
      font-size: 3.2rem;
      font-weight: 900;
      color: #e8f0fe;
      letter-spacing: 0.03em;
      line-height: 1.1;
      text-shadow: 0 0 40px rgba(0,212,232,0.15);
    }

    .headline .accent {
      color: #00d4e8;
      text-shadow: 0 0 30px rgba(0,212,232,0.6);
    }

    .subline {
      margin-top: 18px;
      font-size: 1.05rem;
      color: #6a85a8;
      font-weight: 300;
      letter-spacing: 0.04em;
      line-height: 1.5;
    }

    /* Bottom pill tags */
    .tags {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .tag {
      padding: 8px 20px;
      border-radius: 4px;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .tag-cyan {
      background: rgba(0,212,232,0.1);
      border: 1px solid rgba(0,212,232,0.4);
      color: #00d4e8;
    }

    .tag-gold {
      background: rgba(245,200,66,0.1);
      border: 1px solid rgba(245,200,66,0.4);
      color: #f5c842;
    }

    .tag-muted {
      background: rgba(30,48,80,0.4);
      border: 1px solid #1e3050;
      color: #6a85a8;
    }

    .divider {
      width: 2px;
      height: 18px;
      background: #1e3050;
    }

    .domain {
      position: absolute;
      right: 72px;
      bottom: -90px;
      margin-left: 0;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.72rem;
      color: #1e3050;
      letter-spacing: 0.1em;
    }

    /* Vertical accent line */
    .accent-line {
      position: absolute;
      left: 52px;
      top: 140px;
      bottom: 80px;
      width: 3px;
      background: linear-gradient(to bottom, transparent, #00d4e8, transparent);
      z-index: 2;
      opacity: 0.4;
    }