    :root {
      --red: #E50914;
      --gold: #F5C518;
      --cyan-accent: #00D4FF;
      --bg-deep: #08080E;
      --bg-card: #0D0D16;
      --bg-surface: #14141F;
      --text-primary: #F1F1F7;
      --text-muted: #6B7280;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg-deep);
      color: var(--text-primary);
      overflow-x: hidden;
      touch-action: manipulation;
    }
    .font-display { font-family: 'Bebas Neue', sans-serif; }

    .noise-overlay {
      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='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.03'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999;
    }

    /* === HERO CINEMATIC === */
    /* === HERO SECTION === */
    .hero-section {
      position: relative; z-index: 1; min-height: 100vh;
      overflow: hidden;
      background: linear-gradient(135deg, #08080E 0%, #0F0F1A 40%, #120A0E 100%);
      display: flex; align-items: center;
      padding-top: 5rem;
    }
    @media (max-width: 639px) {
      .hero-section { padding-top: 6rem; }
    }
    .hero-bg-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 40%, rgba(229,9,20,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-bg-orb {
      position: absolute; border-radius: 50%; filter: blur(80px);
      animation: heroOrbPulse 8s ease-in-out infinite;
      pointer-events: none;
    }
    .hero-bg-orb.red {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(229,9,20,0.08) 0%, transparent 70%);
      top: -200px; right: -50px;
    }
    .hero-bg-orb.gold {
      width: 450px; height: 450px;
      background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
      bottom: -150px; left: -50px;
      animation-delay: -3s;
    }
    @keyframes heroOrbPulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.12); }
    }
    .hero-grid-overlay {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }
    .hero-inner {
      position: relative; z-index: 10;
      width: 100%; max-width: 80rem;
      margin: 0 auto; padding: 3rem 1rem;
    }
    @media (min-width: 640px) { .hero-inner { padding: 3rem 1.5rem; } }
    @media (min-width: 1024px) { .hero-inner { padding: 4rem 2rem; } }

    .hero-grid-2col {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .hero-grid-2col { grid-template-columns: 1fr 1fr; gap: 4rem; }
    }

    /* Left column */
    .hero-left { max-width: 36rem; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.375rem 0.875rem;
      border-radius: 999px;
      border: 1px solid rgba(229,9,20,0.15);
      background: rgba(229,9,20,0.06);
      color: #f87171;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.04em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .hero-title-new {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 9vw, 5.5rem);
      line-height: 0.92;
      letter-spacing: -0.02em;
    }
    @media (min-width: 640px) {
      .hero-title-new { font-size: clamp(2.8rem, 8vw, 5.5rem); }
    }
    .hero-title-white {
      color: #F1F1F7;
    }
    .hero-title-accent {
      background: linear-gradient(135deg, #E50914, #F5C518);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      margin-top: 1.25rem;
      font-size: 1rem; line-height: 1.7;
      color: #9CA3AF;
      max-width: 30rem;
    }
    @media (min-width: 768px) {
      .hero-desc { font-size: 1.05rem; }
    }

    .hero-buttons {
      display: flex; flex-direction: column;
      gap: 0.75rem;
      margin-top: 2rem;
    }
    @media (min-width: 640px) {
      .hero-buttons { flex-direction: row; flex-wrap: wrap; }
    }

    .hero-btn-primary {
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 999px;
      background: #E50914;
      color: white;
      font-weight: 600; font-size: 1rem;
      box-shadow: 0 8px 30px rgba(229,9,20,0.3);
      transition: all 0.3s ease;
    }
    .hero-btn-primary:hover {
      background: #f81b26;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(229,9,20,0.4);
    }
    .hero-btn-primary .arrow-icon {
      transition: transform 0.3s ease;
    }
    .hero-btn-primary:hover .arrow-icon {
      transform: translateX(3px);
    }

    .hero-btn-secondary {
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      color: #D1D5DB;
      font-weight: 600; font-size: 1rem;
      transition: all 0.3s ease;
    }
    .hero-btn-secondary:hover {
      border-color: rgba(229,9,20,0.4);
      color: white;
      background: rgba(229,9,20,0.06);
    }

    .hero-benefits {
      display: flex; flex-wrap: wrap; gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .hero-benefit-badge {
      display: inline-flex; align-items: center; gap: 0.375rem;
      padding: 0.375rem 0.75rem;
      border-radius: 8px;
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.5);
      font-size: 0.7rem; font-weight: 500;
      border: 1px solid rgba(255,255,255,0.06);
    }

    /* Right column — Dashboard card */
    .hero-right {
      display: none; justify-content: center; align-items: center;
      position: relative;
    }
    @media (min-width: 1024px) { .hero-right { display: flex; } }

    .hero-card-glow {
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, transparent 60%);
      filter: blur(60px);
      animation: heroCardGlow 6s ease-in-out infinite;
    }
    @keyframes heroCardGlow {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.08); }
    }

    .hero-card {
      position: relative;
      width: 100%; max-width: 440px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(13,13,22,0.92), rgba(20,20,31,0.92));
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow:
        0 0 80px rgba(229,9,20,0.06),
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
      backdrop-filter: blur(20px);
      overflow: hidden;
      padding: 1.25rem;
    }
    .hero-card-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1536240478700-b869070f9279?w=600&q=75&fm=webp&auto=format');
      background-size: cover; background-position: center;
      opacity: 0.12;
      z-index: 0;
    }
    .hero-card > * { position: relative; z-index: 1; }
    .hero-card::before {
      content: '';
      position: absolute; inset: -1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(229,9,20,0.12), transparent 50%);
      z-index: -1;
    }

    .hero-card-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 1.25rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hero-card-dot-group {
      display: flex; gap: 6px;
    }
    .hero-card-dot {
      width: 8px; height: 8px; border-radius: 50%;
    }
    .hero-card-dot.red { background: #E50914; }
    .hero-card-dot.yellow { background: #F5C518; }
    .hero-card-dot.green { background: #22C55E; }

    .hero-card-live {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.06em; color: rgba(255,255,255,0.4);
    }
    .live-pulse {
      width: 6px; height: 6px; border-radius: 50%;
      background: #E50914;
      animation: livePulse 1.5s ease-in-out infinite;
    }
    @keyframes livePulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(229,9,20,0.6); }
      50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(229,9,20,0); }
    }

    .hero-card-body {
      display: flex; flex-direction: column; gap: 0.625rem;
      margin-bottom: 1rem;
    }
    .hero-card-channel {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.625rem 0.75rem;
      border-radius: 12px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.04);
      transition: all 0.2s ease;
    }
    .hero-card-channel:hover {
      background: rgba(229,9,20,0.04);
      border-color: rgba(229,9,20,0.1);
    }
    .hero-card-channel-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-card-channel-icon.c1 { background: linear-gradient(135deg, rgba(229,9,20,0.2), rgba(229,9,20,0.05)); color: #E50914; }
    .hero-card-channel-icon.c2 { background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(245,197,24,0.05)); color: #F5C518; }
    .hero-card-channel-icon.c3 { background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05)); color: #00D4FF; }
    .hero-card-channel-icon.c4 { background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.05)); color: #22C55E; }

    .hero-card-channel-info {
      flex: 1; display: flex; flex-direction: column; gap: 1px;
    }
    .hero-card-channel-name {
      font-size: 0.8rem; font-weight: 600; color: #F1F1F7;
    }
    .hero-card-channel-cat {
      font-size: 0.65rem; color: rgba(255,255,255,0.35);
    }
    .hero-card-channel-hd {
      font-size: 0.6rem; font-weight: 700;
      padding: 2px 6px; border-radius: 4px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.02em;
    }

    .hero-card-footer {
      display: flex; align-items: center; justify-content: center;
      gap: 1rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .hero-card-footer-item {
      display: flex; align-items: center; gap: 4px;
      font-size: 0.65rem; font-weight: 500; color: rgba(255,255,255,0.4);
    }

    /* Stats bar */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-align: center;
    }
    @media (min-width: 768px) {
      .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 4rem;
        padding-top: 2rem;
      }
    }
    .hero-stat { padding: 0.5rem 0; }
    .hero-stat-divider { display: none; }
    @media (min-width: 768px) {
      .hero-stat-divider {
        display: block;
        width: 1px; height: 3rem;
        background: rgba(255,255,255,0.06);
        align-self: center;
      }
    }
    .hero-stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      background: linear-gradient(135deg, #E50914, #F5C518);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.8rem; color: rgba(255,255,255,0.35);
      margin-top: 0.25rem;
    }

    /* === COMMON STYLES (rest of page) === */
    /* === COMMON STYLES (rest of page) === */
    .card-gradient {
      background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    }

    .pricing-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    .pricing-card:hover {
      transform: translateY(-8px) scale(1.02);
    }
    .pricing-featured {
      background: linear-gradient(135deg, rgba(229,9,20,0.08) 0%, rgba(245,197,24,0.05) 100%);
      border: 1px solid rgba(229,9,20,0.25);
    }

    .channel-logo {
      display: flex; align-items: center; justify-content: center;
      height: 56px; padding: 0 20px; cursor: pointer;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      transition: all 0.3s ease;
      letter-spacing: 0.04em;
    }
    .channel-logo:hover {
      border-color: rgba(229,9,20,0.3);
      color: var(--text-primary);
      background: rgba(229,9,20,0.06);
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      background: linear-gradient(135deg, var(--red), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .neon-border {
      border: 1px solid rgba(229,9,20,0.08);
      box-shadow: 0 0 30px rgba(229,9,20,0.06), inset 0 0 30px rgba(229,9,20,0.02);
      transition: all 0.3s ease;
    }
    .neon-border:hover {
      border-color: rgba(229,9,20,0.2);
      box-shadow: 0 0 50px rgba(229,9,20,0.12), inset 0 0 30px rgba(229,9,20,0.04);
    }

    .feature-icon-wrap {
      width: 48px; height: 48px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(229,9,20,0.12), rgba(245,197,24,0.08));
      border: 1px solid rgba(229,9,20,0.15);
    }

    .testimonial-card {
      background: linear-gradient(135deg, #0D0D16, #14141F);
      border: 1px solid rgba(229,9,20,0.08);
      transition: all 0.3s ease;
      position: relative;
      cursor: pointer;
    }
    .testimonial-card::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(229,9,20,0.15), transparent 60%);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .testimonial-card:hover {
      border-color: rgba(229,9,20,0.2);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(229,9,20,0.08), 0 0 40px rgba(229,9,20,0.03);
    }
    .testimonial-card:hover::before { opacity: 1; }
    .testimonial-glow {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .testimonial-glow::before {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(229,9,20,0.06) 0%, transparent 70%);
      top: -300px;
      left: 50%;
      transform: translateX(-50%);
      filter: blur(80px);
      animation: testimonialPulse 8s ease-in-out infinite;
    }
    @keyframes testimonialPulse {
      0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
      50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      .hero-btn-primary:hover { transform: none; }
      .hero-btn-primary:hover .arrow-icon { transform: none; }
      .hero-card-channel:hover { background: transparent; border-color: rgba(255,255,255,0.04); }
    }
    details[open] .chevron { transform: rotate(180deg); }
/* === NAV OVERRIDE === */
    .nav-link {
      position: relative;
      white-space: nowrap;
      padding: 0.5rem 0.75rem;
      color: rgba(255,255,255,0.55);
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.2s ease;
      border-radius: 0.5rem;
    }
    .nav-link:hover {
      color: #fff;
      background: rgba(255,255,255,0.06);
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      width: 0;
      height: 2px;
      background: #FF6D00;
      border-radius: 2px;
      transform: translateX(-50%);
      transition: width 0.25s ease;
    }
    .nav-link:hover::after {
      width: 60%;
    }
    .mobile-link {
      display: block;
      padding: 0.75rem 1rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.9375rem;
      font-weight: 500;
      border-radius: 0.5rem;
      transition: all 0.2s ease;
    }
    .mobile-link:hover {
      color: #fff;
      background: rgba(255,255,255,0.05);
    }
    *:focus-visible { outline: 2px solid #FF6D00; outline-offset: 2px; border-radius: 4px; }
  </style>
