/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 120px 0;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light { background: linear-gradient(135deg, #fff, #ddd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* White Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ——————————————————————————————— */
/* LIQUID GLASS BLUE BUTTONS – Subtle & Premium (2025) */
/* Exact same size & position as before – only the look changes */
/* ——————————————————————————————— */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;                    /* ← identical to your original */
  font-weight: 600;
  font-size: inherit;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  border: 1.5px solid rgba(0, 120, 255, 0.35);
  background: linear-gradient(135deg,
              rgba(0, 100, 255, 0.18),
              rgba(0, 180, 255, 0.09));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Very subtle outer glow – barely visible but adds depth */
  /* THE GLOW */
  box-shadow: 
    0 0 10px rgba(0, 100, 255, 0.5),
    0 0 10px rgba(0, 100, 255, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Gentle inner glass highlight */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
              transparent,
              rgba(255, 255, 255, 0.12),
              transparent);
  transition: left 0.8s;
}

/* Liquid shine sweep on hover */
.btn-primary:hover::before {
  left: 100%;
}

/* Hover – still lifts a bit, but super elegant */
.btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg,
              rgba(0, 100, 255, 0.28),
              rgba(0, 200, 255, 0.16));
  border-color: rgba(0, 160, 255, 0.5);
  box-shadow: 
    0 14px 35px rgba(0, 100, 255, 0.18),
    0 0 30px rgba(0, 140, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Large button (contact section) – same proportions */
.btn-primary.large {
  padding: 18px 78px;
  font-size: 1.2rem;
}

/* Nav “Get Started” button – stays exactly the same size */
.nav .btn-primary {
  padding: 15px 35px;
  font-size: 0.95rem;
}



.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.8s;
}

.btn-secondary:hover::before { left: 100%; }

.btn-secondary:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.36);
  box-shadow: 0 18px 40px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.8s;
}

.btn-outline:hover::before { left: 100%; }

.btn-outline:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 20px 44px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.14);
  color: #000;
}

.large { padding: 18px 48px; font-size: 1.2rem; }

/* FINAL VERSION — Top bar 100% fixed look, never changes */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.9rem 2rem;            /* exact height you want */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: none;                /* ← removes any change on scroll */

  /* This exact look 100% of the time */
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);   /* optional subtle shadow */
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

/* Glowing left→right underline for specific nav items */
.nav-links a[href="#services"],
.nav-links a[href="#pricing"],
.nav-links a[href="#portfolio"] {
  position: relative;
  display: inline-block;
  padding-bottom: 8px; /* space for the underline */
}

.nav-links a[href="#services"]::after,
.nav-links a[href="#pricing"]::after,
.nav-links a[href="#portfolio"]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0064FF, #7fbbff);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 18px rgba(0,100,255,0.55), 0 0 40px rgba(0,100,255,0.28);
  transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.22, 1), opacity 0.3s;
  opacity: 0.95;
}

.nav-links a[href="#services"]:hover::after,
.nav-links a[href="#pricing"]:hover::after,
.nav-links a[href="#portfolio"]:hover::after,
.nav-links a[href="#services"]:focus::after,
.nav-links a[href="#pricing"]:focus::after,
.nav-links a[href="#portfolio"]:focus::after {
  transform: scaleX(1);
}

.nav-links a:hover { opacity: 0.7; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: linear-gradient(#0c0c0c, rgba(0, 153, 255, 0.089)), url('https://images.unsplash.cm/photo-1497366216548-37526070297c?q=80&w=2560') center/cover no-repeat;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-cta { margin-top: 2rem; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

/* Services & Pricing */
.services-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.service-card, .pricing-card {
  background: rgba(255,255,255,0.03);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s;
}

.service-card:hover, .pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid #0064FF;
  position: relative;
}

.card-header h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.price { font-size: 3.5rem; font-weight: 700; margin: 1rem 0; }

.features {
  list-style: none;
  margin: 2rem 0;
}

.features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
}

.features li:last-child { border: none; }

.custom-package {
  text-align: center;
  margin-top: 6rem;
  padding: 4rem;
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
}

/* Parallax Portfolio */
.parallax {
  background: linear-gradient(rgba(15, 15, 15,0.877), rgba(15, 15, 15, 0.877)), url('https://images.unsplash.cm/photo-1560518883-ce09059eeffa?q=80&w=2573') center/cover fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


/* Contact */
.contact {
  text-align: center;
  background: #111;
}

.contact-text {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.calendly-note a { color: #888; text-decoration: underline; }

/* Footer */
footer {
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

@keyframes scroll {
  0% { transform: translate(-50%, 8px); opacity: 0; }
  100% { transform: translate(-50%, 25px); opacity: 1; }
}

/* Responsive */
@media (max-width: 968px) {
  .hero h1 { font-size: 3.8rem; }
  .section-title { font-size: 2.8rem; }
  .nav-links { 
    position: fixed;
    top: 0; right: -100%; height: 100vh; width: 100%;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
  }
  .nav-links.active { right: 0; }
  .menu-toggle { display: block; z-index: 1001; }
}/* ==== CUSTOM GET STARTED BUTTON – CHANGE THESE COLORS TO ANYTHING ==== */

.hero-subtitle {
  font-size: 1.5rem;                    /* change size */
  font-weight: 300;                     /* lighter or bolder */
  line-height: 1.6;                     /* spacing between lines */
  letter-spacing: 0.5px;                /* optional elegance */
  color: rgba(255, 255, 255, 0.9) !important;   /* your exact color */
  max-width: 800px;                     /* controls how wide the text block is */
  margin: 0 auto 3rem auto;             /* centers it + spacing below */
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.6s forwards; /* smooth entrance */
}

/* Optional: different color or style on mobile */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
}

/* Re-usable fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.highlight {
    background: linear-gradient(90deg, #0064FF, #4d9fff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  font-weight: 800;
  display: inline-block;
}
/* Keep navigation bar tight and premium — unaffected by body line-height */
.nav,
.nav-links,
.nav-links li,
.nav-links a,
.logo {
  line-height: 0.5 !important;   /* forces tight spacing only in the nav */
}

/* Optional: fine-tune vertical alignment inside the bar */
.nav {
  align-items: center;
}

.nav-links a,
.logo {
  display: inline-block;
  line-height: 1;
}


/* If you want solid blue instead of gradient, use this one: */
/*
.contact-elevate {
  color: #0064FF !important;
  font-weight: 800;
}
*/
/* GLOW FOR "MOST POPULAR" BADGE */
/* ——————————————————————————————— */
/* FINAL FIX – Badge no longer gets cut off + perfect liquid glass */
/* ——————————————————————————————— */
/* ——————————————————————————————— */
/* FEATURED CARD → IRRESISTIBLE USING ONLY #0064FF & #4d9fff */
/* Badge stays perfect liquid-glass */
/* ——————————————————————————————— */
.pricing-card.featured {
  position: relative;
  overflow: visible !important;
  padding-top: 20px !important;
  background: rgba(255,255,255,0.03);
  border: 3px solid #0064FF !important;          /* your exact secondary blue */
  border-radius: 24px;
  transform: scale(1.05);
  z-index: 1;

  /* Strong, luxurious glow using only your brand palette */
  box-shadow: 
    0 0 30px rgba(77, 153, 255, 0.5),           /* #4d9fff glow */
    0 0 30px rgba(0, 100, 255, 0.3),            /* #0064FF depth */
    0 30px 60px rgba(0, 100, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.1);

  transition: all 0.5s cubic-bezier(0.22, 0.8, 0.22, 1);
}

.pricing-card.featured:hover {
  transform: translateY(-14px) scale(1.06);
  border-color: #0064FF !important;              /* shifts to primary blue */
  box-shadow: 
    0 0 50px rgba(0, 100, 255, 0.7),             /* intense #0064FF */
    0 0 70px rgba(77, 153, 255, 0.5),
    0 30px 90px rgba(0, 100, 255, 0.4);
}

/* Keep the badge exactly where you want it */
.popular-badge {
  position: absolute;
  top: -10px;        /* stays exactly where it was */
  right: 20px;
  z-index: 10;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;

  background: linear-gradient(135deg, rgba(0,100,255,0.28), rgba(0,180,255,0.18));
  border: 1.5px solid rgba(0,160,255,0.5);
  border-radius: 50px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,100,255,0.18),
              inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

/* Shine sweep */
.popular-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.7s;
}
.popular-badge:hover::before { left: 100%; }
.popular-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,100,255,0.28);
}
/* ────────────────────────────────────────────────────────────── */
/* PREMIUM BLUE GLOW FOR "ELEVATE" TEXT — same as buttons        */
/* ────────────────────────────────────────────────────────────── */
.highlight,
.contact-elevate {
  position: relative;
  background: linear-gradient(180deg, #0064FF, #7fbbff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  font-weight: 800;
  display: inline-block;

  /* Exact same blue glow as your buttons */
  text-shadow: 
    0 0 20px rgba(0, 100, 255, 0.8),
    0 0 40px rgba(0, 100, 255, 0.6),
    0 0 60px rgba(0, 100, 255, 0.4),
    0 0 90px rgba(0, 100, 255, 0.3);

  transition: all 0.5s ease;
}

.highlight:hover,
.contact-elevate:hover {
  text-shadow: 
    0 0 30px rgba(0, 100, 255, 1),
    0 0 60px rgba(0, 100, 255, 0.8),
    0 0 90px rgba(0, 100, 255, 0.6),
    0 0 120px rgba(0, 100, 255, 0.5);
  transform: translateY(-2px);
}

/* Optional: subtle breathing glow (looks insane – highly recommended) */
@keyframes elevateGlow {
  from {
    text-shadow: 
      0 0 20px rgba(0, 100, 255, 0.7),
      0 0 40px rgba(0, 100, 255, 0.5),
      0 0 60px rgba(0, 100, 255, 0.3);
  }
  to {
    text-shadow: 
      0 0 35px rgba(0, 100, 255, 1),
      0 0 70px rgba(0, 100, 255, 0.7),
      0 0 100px rgba(0, 100, 255, 0.5);
  }
}

.highlight,
.contact-elevate {
  animation: elevateGlow 4s ease-in-out infinite alternate;
}
/* ——————————————————————————————— */
/* FINAL LTG MEDIA LOGO – GRADIENT + GLOW + LETTER REVEAL */
/* Combines Option 3 + Option 8 perfectly, no squish */
/* ——————————————————————————————— */
.logo {
  line-height: 1 !important;           /* ← fixes squish while keeping nav tight */
  padding: 12px 0;                     /* maintains exact nav height */
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.logo span {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -2px;

  /* Option 3: Gorgeous blue-to-cyan gradient */
  background: linear-gradient(-180deg, #0064FF, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Option 3: Strong permanent glow */
  text-shadow:
    0 0 20px rgba(0, 100, 255, 0.8),
    0 0 40px rgba(0, 100, 255, 0.5),
    0 0 80px rgba(0, 100, 255, 0.3);

  display: inline-block;
  opacity: 0;
  transform: translateY(35px);

  /* Option 8: Cinematic letter reveal */
  animation: logoLetterUp 1.4s cubic-bezier(0.22, 0.8, 0.2, 1) forwards;
}

/* Elegant gap between LTG and Media */
.logo-gap {
  width: 10px;                 /* ← adjust this number to taste */
  display: inline-block;
}

/* Staggered timing – feels like a movie intro */
.logo span:nth-child(1)  { animation-delay: 0.1s; }
.logo span:nth-child(2)  { animation-delay: 0.2s; }
.logo span:nth-child(3)  { animation-delay: 0.3s; }
.logo span:nth-child(4)  { animation-delay: 0.4s; }
.logo span:nth-child(5)  { animation-delay: 0.5s; }
.logo span:nth-child(6)  { animation-delay: 0.6s; }
.logo span:nth-child(7)  { animation-delay: 0.7s; }
.logo span:nth-child(8)  { animation-delay: 0.8s; }
.logo span:nth-child(9)  { animation-delay: 0.9s; }

/* Hover = explosive glow */
.logo:hover span {
  text-shadow:
    0 0 40px rgba(0, 100, 255, 1),
    0 0 80px rgba(0, 100, 255, 0.9),
    0 0 120px rgba(0, 100, 255, 0.7);
  transform: translateY(-6px);
  transition: all 0.6s ease;
}/* Adjust only the spacing between L, T, G */
.logo span:nth-child(1),  /* L */
.logo span:nth-child(2),  /* T */
.logo span:nth-child(3) { /* G */
  margin-right: -1px;     /* ← change this number */
}

@keyframes logoLetterUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ——————————————————————————————— */
/* VERTICAL 1080×1920 REELS – 2 SIDE-BY-SIDE (Desktop) */
/* ——————————————————————————————— */
.portfolio-grid-vertical {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.portfolio-item-vertical {
  position: relative;
  /* allow the container to size to the video's intrinsic dimensions */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: all 0.5s cubic-bezier(0.22, 0.8, 0.22, 1);
  padding: 0; /* no fixed height padding — video defines size */
}

.portfolio-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;   /* prevent overflow on narrow viewports */
  max-height: 90vh;  /* keep videos visible without overflowing the viewport */
  object-fit: contain;
  background: #000;
}
/* ——————————————————— */
/* LIQUID GLASS PLAY BUTTON – MATCHES YOUR .btn-primary EXACTLY */
/* ——————————————————— */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
  pointer-events: all !important;

  /* Exact same glass + blue tint as your main buttons */
  background: linear-gradient(135deg,
              rgba(0, 100, 255, 0.18),
              rgba(0, 180, 255, 0.09));
  border: 1.5px solid rgba(0, 120, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* Same premium glow */
  box-shadow: 
    0 0 12px rgba(0, 100, 255, 0.5),
    0 0 20px rgba(0, 100, 255, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);

  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Black play triangle – pure CSS */
.play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);   /* perfect centering */
  width: 0;
  height: 0;
  border-left: 26px solid #ffffff;    /* white triangle on glass */
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

/* Liquid shine sweep – identical to your buttons */
.play-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
              transparent,
              rgba(255, 255, 255, 0.18),
              transparent);
  transition: left 0.8s;
}

/* Hover – lifts + intensifies exactly like .btn-primary */
.play-button:hover {
  transform: translate(-50%, -50%) translateY(-4px) scale(1.08);
  background: linear-gradient(135deg,
              rgba(0, 100, 255, 0.28),
              rgba(0, 200, 255, 0.16));
  border-color: rgba(0, 160, 255, 0.5);
  box-shadow: 
    0 14px 35px rgba(0, 100, 255, 0.22),
    0 0 30px rgba(0, 140, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.play-button:hover::after {
  left: 100%;
}

/* Fade out smoothly when playing */
.portfolio-item-vertical.playing .play-button {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}
/* Hover & Playing State */
.portfolio-item-vertical:hover {
  transform: translateY(-16px);
  box-shadow: 0 40px 80px rgba(0,100,255,0.35);
}



/* Mobile – 1 column, almost full-screen */
@media (max-width: 868px) {
  .portfolio-grid-vertical {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .portfolio-item-vertical {
    /* On mobile allow video to size but limit max height for UX */
    height: auto;
    max-height: 88vh;
  }
}
.portfolio-video {
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
  /* Forces the poster image to show instantly */
  background-size: cover;
  background-position: center;
}