/* ═══════════════════════════════════════════════════════════════
   eMIX — index.css
   Styles for the public-facing home page (index.html).
   Note: Footer styles are in Footer.css - do not duplicate here
═══════════════════════════════════════════════════════════════ */

  /* ════════════════════════════════════════════════════════════════
     TOKENS
  ════════════════════════════════════════════════════════════════ */
  :root {
    --bg:             #0a0005;
    --bg-gradient:    linear-gradient(135deg, #000000 0%, #DA3662 58%, #ffffff 100%);
    --neon-pink:      #ff2d78;
    --neon-soft:      #ff6fa0;
    --hot-magenta:    #e91e63;
    --glass:          rgba(6, 1, 4, 0.82);
    --glass-border:   rgba(255, 45, 120, 0.22);
    --glow:           rgba(255, 45, 120, 0.35);
    --text:           #ffffff;
    --text-sub:       #e8b4c8;
    --text-muted:     #b07090;
    --font-display:   'Montserrat', sans-serif;
    --font-body:      'Poppins', sans-serif;
    --nav-h:          68px;
    --ease:           0.26s cubic-bezier(.4,0,.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
  }

  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }
  button { font-family: var(--font-body); cursor: pointer; border: none; }

  /* ════════════════════════════════════════════════════════════════
     NAVBAR
  ════════════════════════════════════════════════════════════════ */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: rgba(6, 0, 3, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    transition: background var(--ease);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
  }

  /* ── Brand ── */
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .nav-logo {
    height: 56px;
    filter: drop-shadow(0 0 10px rgba(255,45,120,0.55));
  }
  /* Fallback text logo if image missing */
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 900;
    color: var(--neon-pink);
    letter-spacing: 0.02em;
    text-shadow: 0 0 18px rgba(255,45,120,0.6);
    display: none;
  }

  /* ── Desktop nav links ── */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
  }

  .nav-item { position: relative; }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    transition: color var(--ease), background var(--ease);
    white-space: nowrap;
  }
  .nav-link i { font-size: 12px; transition: transform var(--ease); }
  .nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
  .nav-item:hover > .nav-link i { transform: rotate(180deg); }

  /* active underline */
  .nav-link.active {
    color: var(--neon-soft);
  }
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--neon-pink);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-pink);
  }

  /* ── Dropdown ── */
  .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: rgba(10, 1, 6, 0.96);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,45,120,0.06) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
    pointer-events: none;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sub);
    transition: background var(--ease), color var(--ease);
  }
  .dropdown-item i {
    font-size: 1rem;
    color: var(--neon-soft);
    width: 20px;
    text-align: center;
  }
  .dropdown-item:hover {
    background: rgba(255,45,120,0.1);
    color: #fff;
  }
  .dropdown-item:hover i { color: var(--neon-pink); }

  /* ── Nav actions (right) ── */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .btn-signin {
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.03em;
    transition: all var(--ease);
  }
  .btn-signin:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
  }

  .btn-signup {
    padding: 9px 22px;
    border-radius: 8px;
    background: linear-gradient(90deg, #c4104e 0%, #ff2d78 60%, #ff6fa3 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: #fff;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.03em;
    transition: background-position 0.4s ease, transform 0.18s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255,45,120,0.4);
    position: relative; overflow: hidden;
  }
  .btn-signup::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  }
  .btn-signup:hover {
    background-position: 0 0;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,45,120,0.55);
  }

  /* ── Mobile hamburger ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 8px;
    cursor: pointer;
    transition: border-color var(--ease);
  }
  .nav-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-hamburger:hover { border-color: var(--neon-pink); }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Mobile menu ── */
  .nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8, 1, 5, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    padding: 16px 20px 24px;
    flex-direction: column;
    gap: 4px;
    animation: slideDown 0.25s ease;
  }
  .nav-mobile.open { display: flex; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .mobile-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 10px;
    font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.82);
    transition: background var(--ease), color var(--ease);
  }
  .mobile-nav-link i { font-size: 1.1rem; color: var(--neon-soft); }
  .mobile-nav-link:hover { background: rgba(255,45,120,0.1); color: #fff; }

  .mobile-section-label {
    font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted);
    padding: 10px 14px 4px;
  }

  .mobile-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 8px 0;
  }

  .mobile-actions {
    display: flex; gap: 10px; padding: 8px 0 0;
  }
  .mobile-actions .btn-signin,
  .mobile-actions .btn-signup { flex: 1; text-align: center; }

  /* ════════════════════════════════════════════════════════════════
     PAGE BODY (below fixed navbar)
  ════════════════════════════════════════════════════════════════ */
  .page-body {
    padding-top: var(--nav-h);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
  }

  /* noise texture */
  .page-body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
  }

  .page-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 36px 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* ════════════════════════════════════════════════════════════════
     HERO CARD
  ════════════════════════════════════════════════════════════════ */
  .hero-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    margin-top: -20px;
  }

  /* hero background image */
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(105deg, rgba(0,0,0,0.78) 0%, rgba(100,5,35,0.5) 55%, transparent 100%),
      url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.7) saturate(1.2);
    transition: transform 12s ease;
  }
  .hero-card:hover .hero-bg { transform: scale(1.03); }

  /* particle dots */
  .hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: var(--neon-pink);
    opacity: 0;
    animation: particleFade 4s infinite;
  }
  .hero-particles span:nth-child(1) { width:6px;height:6px; top:20%;left:70%; animation-delay:0s; }
  .hero-particles span:nth-child(2) { width:4px;height:4px; top:60%;left:80%; animation-delay:1.2s; }
  .hero-particles span:nth-child(3) { width:5px;height:5px; top:35%;left:88%; animation-delay:2.4s; }
  .hero-particles span:nth-child(4) { width:3px;height:3px; top:75%;left:65%; animation-delay:0.8s; }

  @keyframes particleFade {
    0%,100% { opacity:0; transform: scale(0.5); }
    50%      { opacity:0.6; transform: scale(1); }
  }

  .hero-content {
    position: relative; z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 52px 52px 52px 52px;
    gap: 32px;
    flex-wrap: wrap;
  }

  .hero-text { max-width: 520px; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--neon-soft); margin-bottom: 14px;
  }
  .eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 6px var(--neon-pink); }
    50%      { box-shadow: 0 0 18px var(--neon-pink), 0 0 30px rgba(255,45,120,0.4); }
  }

  .hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
    margin-bottom: 6px;
  }
  .hero-heading em {
    font-style: normal;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--neon-soft);
    text-shadow: 0 0 20px rgba(255,45,120,0.4);
    margin-bottom: 14px;
  }
  .hero-subtitle .neon-text {
    color: #fff;
    text-shadow: 0 0 14px rgba(255,255,255,0.3);
  }

  .hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 28px;
  }

  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px;
    background: var(--neon-pink);
    color: #fff; font-weight: 700; font-size: 13.5px;
    letter-spacing: 0.04em;
    transition: all var(--ease);
    box-shadow: 0 4px 20px rgba(255,45,120,0.45);
  }
  .btn-primary:hover {
    background: var(--hot-magenta);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,45,120,0.6);
  }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff; font-weight: 700; font-size: 13.5px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
    transition: all var(--ease);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
  }

  /* stats bubbles */
  .hero-stats { display: flex; flex-direction: column; gap: 14px; }

  .stat-bubble {
    background: rgba(6,0,4,0.72);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 22px;
    display: flex; flex-direction: column; gap: 3px;
    backdrop-filter: blur(14px);
    min-width: 140px;
    text-align: center;
    transition: transform var(--ease), border-color var(--ease);
  }
  .stat-bubble:hover { transform: translateY(-3px); border-color: rgba(255,45,120,0.45); }
  .stat-number {
    font-family: var(--font-display);
    font-size: 1.9rem; font-weight: 900;
    color: #fff; letter-spacing: -0.02em; line-height: 1;
  }
  .stat-label {
    font-size: 11px; font-weight: 600;
    color: var(--text-muted); letter-spacing: 0.04em;
  }

  /* carousel dots */
  .carousel-dots {
    position: absolute; bottom: 18px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 7px; z-index: 3;
  }
  .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all 0.3s;
  }
  .dot.active {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    width: 22px; border-radius: 4px;
  }

  /* ════════════════════════════════════════════════════════════════
     DEMOS SECTION — Redesigned
  ════════════════════════════════════════════════════════════════ */
  .demos-section {
    position: relative;
    background: rgba(5,1,3,0.88);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px 30px 26px;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,45,120,0.05) inset;
    overflow: hidden;
  }

  /* Subtle ambient glow top-right */
  .demos-section::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,45,120,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .demos-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 22px;
    position: relative; z-index: 1;
  }

  .demos-header-left { display: flex; flex-direction: column; gap: 4px; }

  .demos-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--neon-soft);
    margin-bottom: 2px;
  }
  .demos-eyebrow-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
    animation: pulse 2s infinite;
  }

  .demos-title {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 900;
    color: #fff; text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
  }
  .demos-sub {
    font-size: 12px; color: var(--text-muted);
    font-weight: 500; margin-top: 4px;
  }

  .view-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 700;
    color: var(--neon-soft);
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,45,120,0.28);
    background: rgba(255,45,120,0.08);
    transition: all var(--ease);
    white-space: nowrap;
  }
  .view-all:hover {
    color: #fff;
    background: rgba(255,45,120,0.2);
    border-color: rgba(255,45,120,0.55);
    transform: translateY(-1px);
  }
  .view-all i { transition: transform var(--ease); font-size: 14px; }
  .view-all:hover i { transform: translateX(3px); }

  /* ── Video grid ── */
  .demos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative; z-index: 1;
  }

  /* ── Video Cards (from API / HomeDemos.js) ── */
  .video-card {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1),
                border-color 0.28s ease,
                box-shadow 0.28s ease;
    cursor: pointer;
    position: relative;
  }
  .video-card:hover {
    transform: translateY(-5px) scale(1.015);
    border-color: rgba(255,45,120,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.65), 0 0 20px rgba(255,45,120,0.18);
  }

  .video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0;
  }

  /* music note background icon */
  .thumb-icon {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem;
    color: rgba(255,45,120,0.18);
    pointer-events: none;
    z-index: 1;
    transition: opacity var(--ease);
  }
  .video-card:hover .thumb-icon { opacity: 0; }

  /* play overlay — fades in on hover */
  .play-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.28s ease;
    z-index: 2;
  }
  .video-card:hover .play-overlay { background: rgba(0,0,0,0.38); }

  .play-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), #c4104e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 0 0 28px rgba(255,45,120,0.6),
                0 4px 16px rgba(0,0,0,0.5);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }
  .video-card:hover .play-circle {
    opacity: 1;
    transform: scale(1);
  }

  /* duration badge */
  .video-duration {
    position: absolute;
    bottom: 8px; right: 10px;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.9);
    font-size: 10.5px; font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 3;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* category badge — top left */
  .video-category-badge {
    position: absolute;
    top: 8px; left: 10px;
    background: rgba(255,45,120,0.82);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 9.5px; font-weight: 800;
    padding: 3px 9px;
    border-radius: 6px;
    z-index: 3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .video-card:hover .video-category-badge {
    opacity: 1;
    transform: translateY(0);
  }

  /* video info below thumb */
  .video-info {
    padding: 11px 13px 13px;
    background: rgba(6,1,4,0.7);
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 4px;
  }

  .video-title {
    font-family: var(--font-display);
    font-size: 12.5px; font-weight: 800;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    letter-spacing: 0.02em;
    transition: color var(--ease);
  }
  .video-card:hover .video-title { color: var(--neon-soft); }

  .video-meta {
    font-size: 11px; color: var(--text-muted);
    font-weight: 600; display: flex; align-items: center; gap: 5px;
  }
  .video-meta i { color: rgba(255,45,120,0.6); font-size: 11px; }

  /* ── Placeholder cards (shown before API loads) ── */
  .demo-placeholder {
    aspect-ratio: 16/9;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color var(--ease), transform var(--ease);
  }
  .demo-placeholder:hover {
    border-color: rgba(255,45,120,0.35);
    transform: translateY(-3px);
  }
  .demo-play {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,45,120,0.8), rgba(196,16,78,0.85));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff;
    box-shadow: 0 0 22px rgba(255,45,120,0.45);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }
  .demo-placeholder:hover .demo-play { transform: scale(1.18); }

  .demos-loading {
    color: var(--text-muted); font-size: 13px; font-style: italic;
    display: flex; align-items: center; gap: 8px;
  }
  .demos-empty {
    grid-column: 1 / -1;
    padding: 24px; text-align: center;
    color: var(--text-muted); font-size: 13px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }

  .demos-tagline {
    margin-top: 20px;
    font-size: 12px; color: rgba(255,255,255,0.4);
    display: flex; align-items: center; gap: 8px;
    font-weight: 500; font-style: italic;
    position: relative; z-index: 1;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .demos-tagline i { color: var(--neon-soft); font-style: normal; }

  /* ════════════════════════════════════════════════════════════════
     HIGHLIGHT STRIP
  ════════════════════════════════════════════════════════════════ */
  .highlight-strip {
    background: rgba(5,1,3,0.82);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px 32px;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .strip-stat {
    display: flex; flex-direction: column; gap: 4px;
    flex: 1; min-width: 160px; padding: 0 24px;
  }
  .strip-stat:first-child { padding-left: 0; }

  .strip-num {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 900;
    color: #fff; letter-spacing: -0.02em; line-height: 1;
  }
  .strip-desc {
    font-size: 12px; color: var(--text-muted);
    font-weight: 500; line-height: 1.4;
  }

  .strip-divider {
    width: 1px; height: 50px;
    background: var(--glass-border);
    flex-shrink: 0;
  }

  .strip-cta {
    padding-left: 28px; flex-shrink: 0;
  }

  .strip-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px;
    background: linear-gradient(90deg, #c4104e 0%, #ff2d78 50%, #ff6fa3 100%);
    background-size: 200% 100%; background-position: 100% 0;
    color: #fff; font-weight: 700; font-size: 13.5px;
    letter-spacing: 0.04em;
    transition: background-position 0.4s ease, transform 0.18s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(255,45,120,0.42);
    white-space: nowrap;
  }
  .strip-btn:hover {
    background-position: 0 0; transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,45,120,0.55);
  }

  /* spin */
  .spin { animation: spin 1.2s linear infinite; display: inline-block; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ════════════════════════════════════════════════════════════════
     ENLIVEN SECTION
  ════════════════════════════════════════════════════════════════ */
  .enliven-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 16px 48px rgba(0,0,0,0.55);
    min-height: 380px;
  }
  .enliven-img-col {
    position: relative;
    overflow: hidden;          /* clip the reel */
    min-height: 420px;
    background: #050103;
  }

  /* ── Infinite horizontal panning reel ── */
  .callcard-reel-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: max-content;        /* shrink-wraps all 3 images */
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    /* Move left by 1/3 of total width (one card) — seamless loop */
    animation: reelPan 14s linear infinite;
    will-change: transform;
  }

  /* Pause on hover so user can read the card */
  .enliven-img-col:hover .callcard-reel-track {
    animation-play-state: paused;
  }

  /* Each card fills the container height, keeps its natural aspect ratio */
  .reel-card {
    height: 100%;
    min-height: 420px;
    width: auto;               /* natural landscape width */
    flex-shrink: 0;
    display: block;
    object-fit: cover;
    filter: brightness(0.9) saturate(1.1);
    pointer-events: none;
    user-select: none;
  }

  @keyframes reelPan {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
  }

  /* Gradient fades right edge into text column */
  .enliven-img-col::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      transparent 50%,
      rgba(5,1,3,0.6) 75%,
      rgba(5,1,3,0.97) 100%
    );
    pointer-events: none;
    z-index: 2;
  }
  .enliven-text-col {
    background: rgba(5,1,3,0.94);
    backdrop-filter: blur(18px);
    padding: 56px 52px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 28px;
  }
  .enliven-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--neon-soft);
  }
  .enliven-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 900; letter-spacing: -0.02em; line-height: 1.1;
    color: #fff;
  }
  .enliven-heading span {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .enliven-features { display: flex; flex-direction: column; gap: 14px; }
  .enliven-feature {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 15px 17px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: border-color var(--ease), background var(--ease);
  }
  .enliven-feature:hover {
    border-color: var(--glass-border);
    background: rgba(255,45,120,0.05);
  }
  .enliven-feature-icon {
    width: 42px; height: 42px; border-radius: 11px;
    background: rgba(255,45,120,0.14);
    border: 1px solid rgba(255,45,120,0.28);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--neon-soft); flex-shrink: 0;
  }
  .enliven-feature-text h4 {
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 800;
    color: #fff; margin-bottom: 3px;
  }
  .enliven-feature-text p {
    font-size: 12.5px; color: var(--text-muted);
    line-height: 1.5; font-weight: 500;
  }
  .enliven-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
  .enliven-book-label {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 900; color: #fff;
  }
  .enliven-contacts { display: flex; gap: 12px; flex-wrap: wrap; }
  .enliven-contact-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 50px;
    background: rgba(255,45,120,0.12);
    border: 1px solid rgba(255,45,120,0.3);
    font-size: 13px; font-weight: 700; color: var(--neon-soft);
    transition: all var(--ease);
  }
  .enliven-contact-badge:hover {
    background: var(--neon-pink); color: #fff;
    box-shadow: 0 4px 18px rgba(255,45,120,0.45);
    transform: translateY(-2px);
  }
  .enliven-contact-badge i { font-size: 1rem; }

  /* ════════════════════════════════════════════════════════════════
     CALL CARD — floating card on image + preview modal
  ════════════════════════════════════════════════════════════════ */

  /* Floating call card strip pinned to bottom of image col */
  .callcard-strip {
    position: absolute;
    bottom: 28px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
    padding: 0 20px;
  }

  /* The card itself — thumbnail + label */
  .callcard-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(6,0,4,0.84);
    border: 1px solid rgba(255,45,120,0.45);
    border-radius: 16px;
    padding: 10px 18px 10px 10px;
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: all var(--ease);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,45,120,0.08) inset;
    max-width: 260px;
    width: 100%;
    text-decoration: none;
    animation: cardFloat 3s ease-in-out infinite;
  }
  @keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
  }
  .callcard-thumb:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 12px 36px rgba(0,0,0,0.7), 0 0 24px rgba(255,45,120,0.22);
    animation: none;
    transform: translateY(-4px) scale(1.02);
  }

  .callcard-preview-img {
    width: 56px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255,45,120,0.3);
    flex-shrink: 0;
    background: rgba(255,45,120,0.08);
  }

  .callcard-thumb-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
  .callcard-thumb-label {
    font-family: var(--font-display);
    font-size: 11.5px; font-weight: 800;
    color: #fff; letter-spacing: 0.04em;
  }
  .callcard-thumb-sub {
    font-size: 10px; color: var(--neon-soft); font-weight: 600;
  }

  .callcard-thumb-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,45,120,0.2);
    border: 1px solid rgba(255,45,120,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--neon-soft);
    flex-shrink: 0;
    transition: background var(--ease);
  }
  .callcard-thumb:hover .callcard-thumb-icon {
    background: var(--neon-pink); color: #fff;
  }

  /* View Call Card button in CTA */
  .callcard-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 50px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.85);
    transition: all var(--ease);
    cursor: pointer;
    text-decoration: none;
  }
  .callcard-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.36);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .callcard-btn i { font-size: 1rem; }

  /* ════════════════════════════════════════════════════════════════
     CALL CARD MODAL
  ════════════════════════════════════════════════════════════════ */
  .callcard-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 24px 20px 20px;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;   /* hidden — no interaction */
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
  }

  /* Only visible + interactive when .open is added by JS */
  .callcard-modal.open {
    background: rgba(0,0,0,0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: all;
  }

  /* Inner card — hidden until parent is .open */
  .callcard-modal-inner {
    position: relative;
    max-width: 640px;
    width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    opacity: 0;
    transform: scale(0.82) translateY(24px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 0.68, 0, 1.25);
  }
  .callcard-modal.open .callcard-modal-inner {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  /* Overflow wrapper so zoomed image doesn't leak */
  .callcard-img-wrapper {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,45,120,0.22);
    background: #050103;
    /* Pink ambient glow */
    filter: drop-shadow(0 0 32px rgba(255,45,120,0.18));
  }

  /* The full-size call card image */
  .callcard-full-img {
    width: 100%;
    display: block;
    transform-origin: center center;
    transition: transform 0.2s ease;
    cursor: zoom-in;
  }

  /* Action row */
  .callcard-modal-actions {
    display: flex; gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .callcard-action-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    border: none;
  }
  .callcard-action-btn i { font-size: 1rem; }

  /* Zoom buttons */
  .callcard-action-btn.zoom {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.85);
  }
  .callcard-action-btn.zoom:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
    transform: translateY(-1px);
  }
  .callcard-action-btn.zoom:disabled {
    opacity: 0.35; cursor: not-allowed; transform: none;
  }

  /* Download (primary) */
  .callcard-action-btn.primary {
    background: var(--neon-pink); color: #fff;
    box-shadow: 0 4px 16px rgba(255,45,120,0.42);
  }
  .callcard-action-btn.primary:hover {
    background: var(--hot-magenta);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,45,120,0.58);
  }

  /* Cancel */
  .callcard-action-btn.cancel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-muted);
  }
  .callcard-action-btn.cancel:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  /* ════════════════════════════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════════════════════════════ */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
  }

  @media (max-width: 1024px) {
    .enliven-section { grid-template-columns: 1fr; }
    .enliven-img-col { min-height: 240px; }
    .enliven-img-col::after {
      background: linear-gradient(180deg, transparent 40%, rgba(5,1,3,0.92) 100%);
    }
    .reel-card { min-height: 240px; }
  }

  @media (max-width: 768px) {
    .page-content { padding: 0 16px 48px; }
    .hero-content { padding: 36px 24px; flex-direction: column; }
    .hero-stats { flex-direction: row; }
    .demos-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-strip { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
    .strip-stat { padding: 0; }
    .strip-divider { display: none; }
    .strip-cta { padding: 0; width: 100%; }
    .strip-btn { width: 100%; justify-content: center; }
  }

  @media (max-width: 640px) {
    .enliven-text-col { padding: 32px 22px; }
  }

  @media (max-width: 480px) {
    .navbar { padding: 0 16px; }
    .hero-heading { font-size: 1.8rem; }
    .demos-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-direction: column; }
  }