/* =========================
   HERO SPLIT (Panel + Video)
   ========================= */

   :root {
    --nav-h: 64px;
  }
  
  /* Layout wrapper */
  .hero-split {
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr; /* mobile default */
    background: #020617;
  }
  
  /* Left panel */
  .hero-split__panel {
    display: flex;
    align-items: center;
    padding: 3rem 1.25rem;
    background:
      radial-gradient(900px 520px at 15% 25%, rgba(168,85,247,.18), transparent 60%),
      radial-gradient(900px 520px at 80% 70%, rgba(99,102,241,.12), transparent 60%),
      linear-gradient(to bottom, rgba(2,6,23,1), rgba(2,6,23,.95));
    border-right: 1px solid rgba(148,163,184,.14);
  }
  
  .hero-split__panel-inner {
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
  }
  
  /* Title */
  .hero-split__title {
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    text-shadow: 0 18px 80px rgba(168,85,247,.25), 0 6px 28px rgba(0,0,0,.45);
  }
  
  /* Slogan */
  .hero-split__slogan {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(226,232,240,.9);
    max-width: 48ch;
    text-shadow: 0 6px 24px rgba(0,0,0,.45);
  }
  
  /* CTA */
  .hero-split__cta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }
  
  .hero-split__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.1rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
  }
  
  .hero-split__btn:active {
    transform: translateY(1px);
  }
  
  .hero-split__btn--primary {
    background: rgba(99,102,241,1);
    color: white;
  }
  
  .hero-split__btn--primary:hover {
    background: rgba(99,102,241,.9);
  }
  
  .hero-split__btn--ghost {
    background: rgba(15,23,42,.55);
    color: rgba(226,232,240,.95);
    border: 1px solid rgba(148,163,184,.18);
  }
  
  .hero-split__btn--ghost:hover {
    background: rgba(15,23,42,.75);
    border-color: rgba(148,163,184,.28);
  }
  
  /* Extra supporting line */
  .hero-split__meta {
    margin-top: 1.25rem;
    font-size: .9rem;
    color: rgba(226,232,240,.65);
    max-width: 54ch;
  }
  
  /* Right video area (desktop only) */
  .hero-split__video {
    position: relative;
    overflow: hidden;
    display: none; /* hidden on mobile */
  }
  
  .hero-split__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  
    transform: scale(1.02);
    filter: brightness(1.08) contrast(1.12) saturate(1.18);
  }
  
  .hero-split__video-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(900px 520px at 30% 20%, rgba(168,85,247,.18), transparent 60%),
      linear-gradient(to left, rgba(2,6,23,.10), rgba(2,6,23,.45));
  }
  
  /* Desktop split */
  @media (min-width: 768px) {
    .hero-split {
      grid-template-columns: 0.95fr 1.05fr; /* panel | video */
    }
  
    .hero-split__panel {
      padding: 3.5rem 2.25rem;
    }
  
    .hero-split__video {
      display: block;
      min-height: calc(100vh - var(--nav-h));
    }
  }
  
  /* Large desktop: give the video more dominance */
  @media (min-width: 1024px) {
    .hero-split {
      grid-template-columns: 0.9fr 1.1fr;
    }
  }
  
  /* Reduced motion: never show video */
  @media (prefers-reduced-motion: reduce) {
    .hero-split__video {
      display: none !important;
    }
  }