    :root {
      --orange: #f05a16;
      --orange-bright: #ff7a18;
      --orange-glow: rgba(255, 122, 24, 0.55);
      --teal: #00c7c7;
      --teal-glow: rgba(0, 199, 199, 0.42);
      --blue: #2d8cff;
      --dark-bg: #020305;
      --dark-obsidian: #040609;
      --dark-card: #080b0f;
      --dark-card-2: #10141b;
      --line: rgba(255, 255, 255, 0.08);
      --line-teal: rgba(0, 199, 199, 0.3);
      --line-orange: rgba(255, 122, 24, 0.45);
      --text-main: #FFFFFF;
      --text-muted: #94A3B8;
      --text-dim: #64748B;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-cinzel: 'Cinzel', Georgia, serif;
      --font-sans: 'Montserrat', -apple-system, sans-serif;
      --font-tech: 'Rajdhani', 'Montserrat', sans-serif;
      --font-body: 'Inter', -apple-system, sans-serif;
      --font-mono: 'JetBrains Mono', monospace;

      /* =========================================================================
         SISTEMA ESQUEUMÓRFICO 3D HIPERREALISTA DE 6+ CAPAS
         ========================================================================= */
      --squeuo-shadow-deep: 
        0 40px 90px -15px rgba(0, 0, 0, 0.98),
        0 20px 45px -10px rgba(0, 0, 0, 0.9),
        0 8px 16px -4px rgba(0, 0, 0, 0.85);
      --squeuo-bevel: 
        inset 0 1.5px 0.5px rgba(255, 255, 255, 0.22),
        inset 0 -2px 1.5px rgba(0, 0, 0, 0.85),
        inset 1.5px 0 1px rgba(255, 255, 255, 0.08),
        inset -1.5px 0 1px rgba(0, 0, 0, 0.6);
      --squeuo-amber-rim: 
        0 0 0 1px rgba(217, 119, 6, 0.35),
        0 0 35px rgba(200, 101, 24, 0.22);
      --squeuo-metal-gradient: 
        linear-gradient(165deg, rgba(28, 35, 48, 0.85) 0%, rgba(12, 16, 23, 0.95) 45%, rgba(5, 7, 10, 0.98) 100%);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; background: var(--dark-bg); }
    body {
      background-color: var(--dark-bg);
      color: var(--text-main);
      font-family: var(--font-body);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Fondo dinámico cinematográfico oscuro 6-capas con profundidad de cámara */
    body:before {
      content: "";
      position: fixed;
      z-index: -2;
      inset: 0;
      background:
        radial-gradient(circle at 75% 15%, rgba(200, 101, 24, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(140, 63, 11, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(5, 8, 14, 0.6) 0%, transparent 100%),
        linear-gradient(180deg, #020305 0%, #05080c 50%, #020305 100%);
    }
    body:after {
      content: "";
      position: fixed;
      z-index: -1;
      inset: 0;
      pointer-events: none;
      opacity: 0.07;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    a { color: inherit; text-decoration: none; transition: all .25s ease; }
    .wrap { max-width: 1320px; margin: 0 auto; padding: 0 24px; position: relative; }

    /* ==========================================================================
       HEADER Y NAVEGACIÓN PRINCIPAL
       ========================================================================== */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 88px;
      background: rgba(3, 5, 8, 0.94);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
      z-index: 1000;
      display: flex;
      align-items: center;
      transition: background 0.3s;
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 12px;
    }
    /* ─ CONTENEDOR BOTONES HEADER: iPod + Cotizar ─ */
    .fip-inline-003 {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 8px !important;
      flex-shrink: 0 !important;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-logo img {
      height: 48px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 20px rgba(217, 119, 6, 0.3));
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .brand-logo:hover img {
      transform: translateY(-1px) scale(1.02);
      filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 30px rgba(217, 119, 6, 0.5));
    }
    .main-nav {
      display: flex;
      gap: clamp(10px, 1.4vw, 22px);
      align-items: center;
    }
    .main-nav a {
      font-family: var(--font-tech);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
      padding: 6px 4px;
      position: relative;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    .main-nav a:hover, .main-nav a.active {
      color: var(--orange-bright);
      text-shadow: 0 0 14px rgba(217, 119, 6, 0.6);
    }
    .main-nav a:after {
      content: "";
      position: absolute;
      bottom: -2px; left: 0; right: 100%;
      height: 2px;
      background: var(--orange);
      box-shadow: 0 0 8px var(--orange-glow);
      transition: right 0.25s ease;
    }
    .main-nav a:hover:after, .main-nav a.active:after {
      right: 0;
    }

    /* ==========================================================================
       BOTONES ESQUEUMÓRFICOS 3D HIPERREALISTAS (6 CAPAS)
       ========================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 26px;
      border-radius: 10px;
      font-family: var(--font-sans);
      font-size: 12.5px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
      transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .btn-filled {
      background: linear-gradient(175deg, #e87a22 0%, #b8540d 50%, #8c3f0b 100%);
      color: #FFFFFF;
      box-shadow: 
        0 14px 28px -6px rgba(0, 0, 0, 0.85),
        0 0 20px rgba(217, 119, 6, 0.4),
        inset 0 1.5px 0.5px rgba(255, 255, 255, 0.4),
        inset 0 -2px 1px rgba(0, 0, 0, 0.8);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .btn-filled:hover {
      transform: translateY(-2.5px) scale(1.02);
      box-shadow: 
        0 20px 38px -6px rgba(0, 0, 0, 0.92),
        0 0 35px rgba(217, 119, 6, 0.65),
        inset 0 2px 1px rgba(255, 255, 255, 0.55),
        inset 0 -2px 1px rgba(0, 0, 0, 0.9);
    }
    .btn-filled:active {
      transform: translateY(1px) scale(0.98);
      box-shadow: 
        0 6px 14px -3px rgba(0, 0, 0, 0.9),
        inset 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    .btn-outline {
      background: linear-gradient(165deg, rgba(22, 28, 38, 0.85) 0%, rgba(10, 14, 20, 0.95) 100%);
      color: #e2e8f0;
      border: 1.5px solid rgba(217, 119, 6, 0.35);
      box-shadow: 
        0 14px 28px -6px rgba(0, 0, 0, 0.85),
        inset 0 1.5px 0.5px rgba(255, 255, 255, 0.2),
        inset 0 -2px 1px rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(16px);
    }
    .btn-outline:hover {
      border-color: #FFFFFF;
      transform: translateY(-2px);
    }
    .btn-teal {
      background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
      border-color: var(--teal);
      color: #FFFFFF;
      box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
    }
    .btn-teal:hover {
      box-shadow: 0 8px 28px rgba(56, 189, 248, 0.5);
      transform: translateY(-2px);
    }

    /* BADGES Y ETIQUETAS */
    .brand-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--orange-bright);
      background: rgba(239, 118, 40, 0.1);
      border: 1px solid var(--line-orange);
      padding: 6px 14px;
      border-radius: 999px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .orange-dash {
      width: 8px;
      height: 8px;
      background: var(--orange-bright);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--orange-bright);
    }

    /* ==========================================================================
       HERO PRINCIPAL (2.39:1 ANAMÓRFICO)
       ========================================================================== */
    .hero-section {
      padding: 160px 0 90px;
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      inset: 6% -10% auto;
      height: 520px;
      background:
        radial-gradient(ellipse at 72% 36%, rgba(0, 199, 199, 0.18), transparent 42%),
        radial-gradient(ellipse at 26% 30%, rgba(255, 122, 24, 0.16), transparent 38%);
      filter: blur(28px);
      opacity: .9;
      pointer-events: none;
      z-index: -1;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 50px;
      align-items: center;
    }
    .main-title {
      font-family: var(--font-cinzel);
      font-size: clamp(32px, 4.4vw, 56px);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      color: #FFFFFF;
    }
    .highlight-text {
      color: var(--orange-bright);
      text-shadow: 0 0 30px rgba(239, 118, 40, 0.4);
      display: block;
    }
    .hero-desc {
      font-size: 16px;
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 620px;
    }

    /* ==========================================================================
       TARJETA HERO Y COMPONENTES ESQUEUMÓRFICOS 3D (6 CAPAS)
       ========================================================================== */
    .hero-card {
      background: var(--squeuo-metal-gradient);
      border: 1.5px solid rgba(217, 119, 6, 0.35);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--squeuo-shadow-deep), var(--squeuo-amber-rim);
      position: relative;
      backdrop-filter: blur(24px);
    }
    .hero-card:before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; height: 1.5px;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
      z-index: 2;
    }
    .hero-card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #000;
      box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
    }
    .hero-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.92) contrast(1.15);
      transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .hero-card:hover .hero-card-img img {
      transform: scale(1.03);
    }

    /* SPEC BAR ESQUEUMÓRFICA */
    .spec-bar {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      background: linear-gradient(165deg, rgba(20, 26, 36, 0.9) 0%, rgba(8, 11, 16, 0.95) 100%);
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px 28px;
      backdrop-filter: blur(24px);
      box-shadow: var(--squeuo-shadow-deep), inset 0 1.5px 0.5px rgba(255, 255, 255, 0.15);
    }
    .spec-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .spec-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-dim);
      letter-spacing: 0.15em;
    }
    .spec-value {
      font-size: 13.5px;
      font-weight: 800;
      color: #FFFFFF;
      text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    }

    /* ==========================================================================
       SECCIÓN FIP ORIGINALS™ CON RESPLANDOR CINEMATOGRÁFICO DORADO
       ========================================================================== */
    .originals-section {
      padding: 100px 0 110px;
      position: relative;
      background: radial-gradient(circle at 50% 30%, rgba(200, 101, 24, 0.08) 0%, transparent 65%);
    }
    
    /* Aura brillante y destello resplandeciente FIP Originals */
    .fip-glowing-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(140, 63, 11, 0.15) 100%);
      border: 1.5px solid #d97706;
      border-radius: 999px;
      padding: 8px 24px;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      color: #FDBA74;
      text-transform: uppercase;
      box-shadow: 0 0 35px rgba(217, 119, 6, 0.5), inset 0 0 15px rgba(217, 119, 6, 0.3);
      animation: pulseGlow 3s ease-in-out infinite alternate;
      margin-bottom: 20px;
    }
    @keyframes pulseGlow {
      0% { box-shadow: 0 0 20px rgba(217, 119, 6, 0.4), inset 0 0 10px rgba(217, 119, 6, 0.2); }
      100% { box-shadow: 0 0 45px rgba(217, 119, 6, 0.75), inset 0 0 22px rgba(217, 119, 6, 0.45); }
    }

    .premiere-card {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 40px;
      background: linear-gradient(165deg, rgba(24, 30, 42, 0.95) 0%, rgba(10, 14, 20, 0.98) 100%);
      border: 1.5px solid rgba(217, 119, 6, 0.45);
      border-radius: 24px;
      padding: 36px;
      box-shadow: var(--squeuo-shadow-deep), var(--squeuo-amber-rim), var(--squeuo-bevel);
      margin-bottom: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(28px);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .premiere-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 50px 110px -15px rgba(0, 0, 0, 0.98), 0 0 45px rgba(217, 119, 6, 0.45), var(--squeuo-bevel);
    }
    .premiere-card:before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #d97706, #f59e0b, transparent);
    }
    .premiere-poster {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(0,0,0,0.8);
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .premiere-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ==========================================================================
       GRILLA DE SERVICIOS (11 SERVICIOS COMPLETOS) - ESQUEUMORFISMO 3D
       ========================================================================== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 28px;
    }
    .service-card {
      background: linear-gradient(165deg, rgba(22, 28, 38, 0.9) 0%, rgba(9, 12, 18, 0.95) 100%);
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: var(--squeuo-shadow-deep), var(--squeuo-bevel);
      backdrop-filter: blur(20px);
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(217, 119, 6, 0.6);
      box-shadow: 0 45px 95px -10px rgba(0, 0, 0, 0.98), 0 0 35px rgba(217, 119, 6, 0.3), var(--squeuo-bevel);
    }
    .service-card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .service-index {
      font-family: var(--font-cinzel);
      font-size: 28px;
      font-weight: 900;
      color: rgba(217, 119, 6, 0.4);
      text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }
    .service-title {
      font-family: var(--font-sans);
      font-size: 19px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 6px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    }
    .service-subtitle {
      font-size: 12.5px;
      font-style: italic;
      color: var(--orange-bright);
      margin-bottom: 12px;
    }
    .service-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }
    .deliverables-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }
    .deliverables-list li {
      font-size: 12px;
      color: #cbd5e1;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .deliverables-list li:before {
      content: "✦";
      color: var(--orange-bright);
      font-size: 10px;
    }

    /* PAQUETES COMERCIALES */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .package-card {
      background: linear-gradient(165deg, rgba(22, 28, 38, 0.9) 0%, rgba(9, 12, 18, 0.95) 100%);
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      padding: 26px 22px;
      text-align: center;
      box-shadow: var(--squeuo-shadow-deep), var(--squeuo-bevel);
      transition: all 0.3s ease;
    }
    .package-card:hover {
      transform: translateY(-4px);
      border-color: rgba(217, 119, 6, 0.5);
      box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 0 0 25px rgba(217, 119, 6, 0.25), var(--squeuo-bevel);
    }
    .package-card.highlight {
      border: 1.5px solid rgba(217, 119, 6, 0.65);
      box-shadow: var(--squeuo-shadow-deep), var(--squeuo-amber-rim), var(--squeuo-bevel);
      background: linear-gradient(165deg, rgba(32, 24, 18, 0.95) 0%, rgba(14, 11, 9, 0.98) 100%);
    }

    /* MEDIA PLAYER BOX */
    .media-player-box {
      background: linear-gradient(165deg, rgba(22, 28, 38, 0.95) 0%, rgba(8, 11, 16, 0.98) 100%);
      border: 1.5px solid rgba(217, 119, 6, 0.35);
      border-radius: 22px;
      padding: 28px 32px;
      box-shadow: var(--squeuo-shadow-deep), var(--squeuo-amber-rim), var(--squeuo-bevel);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      backdrop-filter: blur(24px);
    }
      transition: transform .25s ease;
    }
    .package-card:hover {
      transform: translateY(-3px);
      border-color: var(--teal);
    }
    .package-card.highlight {
      border: 1.5px solid var(--orange);
      background: radial-gradient(circle at 50% 0%, rgba(239, 118, 40, 0.15) 0%, var(--dark-card) 80%);
      box-shadow: 0 15px 40px rgba(239, 118, 40, 0.25);
    }

    /* MEDIA HUB & RADIO PLAYER */
    .media-player-box {
      background: linear-gradient(145deg, #07151e, #0c2636);
      border: 1.5px solid var(--line-teal);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    /* MODAL DE VIDEO Y COTIZADOR */
    .fip-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.88);
      backdrop-filter: blur(12px);
      z-index: 99999;
      display: none;
      place-items: center;
      padding: 20px;
    }
    .fip-modal-content {
      background: #08131a;
      border: 1.5px solid var(--orange);
      border-radius: 20px;
      max-width: 720px;
      width: 100%;
      padding: 32px;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(239, 118, 40, 0.2);
      position: relative;
    }

    /* Control flotante siempre visible en la portada, incluso con caché antigua. */
    #fip-ipod-player {
      position: fixed;
      right: clamp(14px, 3vw, 34px);
      bottom: max(18px, env(safe-area-inset-bottom));
      z-index: 10050;
      display: flex;
      align-items: flex-end;
      pointer-events: none;
    }
    #fip-ipod-player > * { pointer-events: auto; }
    #fip-ipod-toggle {
      min-width: 132px;
      min-height: 52px;
      padding: 13px 19px;
      border: 1px solid rgba(0, 199, 199, .68);
      background: linear-gradient(145deg, #172a31 0%, #071015 56%, #030609 100%);
      box-shadow: 0 18px 42px rgba(0,0,0,.85), 0 0 28px rgba(0,199,199,.32), inset 0 2px 0 rgba(255,255,255,.22), inset 0 -3px 0 rgba(0,0,0,.9);
      color: #f6ffff;
      transform: translateZ(0);
      animation: playerFloat 3.2s ease-in-out infinite;
    }
    #fip-ipod-toggle:hover { border-color: var(--orange-bright); box-shadow: 0 22px 50px rgba(0,0,0,.9), 0 0 36px rgba(255,122,24,.55), inset 0 2px 0 rgba(255,255,255,.3); }
    #fip-ipod-toggle .fip-ipod-btn-icon { color: var(--orange-bright); text-shadow: 0 0 16px var(--orange-bright); }
    #fip-ipod-player.active .fip-ipod-chassis { display: block; }
    @keyframes playerFloat { 50% { transform: translateY(-5px); } }
    @media (max-width: 600px) {
      #fip-ipod-player { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); }
      #fip-ipod-toggle { min-width: 58px; width: 58px; height: 58px; padding: 0; border-radius: 50%; justify-content: center; }
      #fip-ipod-toggle b { display: none; }
      #fip-ipod-toggle .fip-ipod-btn-icon { font-size: 24px; }
      #fip-ipod-player.active .fip-ipod-chassis { transform: scale(.88); transform-origin: bottom right; margin-bottom: 0; }
    }

    @media (max-width: 900px) {
      .hero-grid, .premiere-card { grid-template-columns: 1fr; }
      .main-nav { display: none; }
      .services-grid { grid-template-columns: 1fr; }
    }

    body.fip-intro-lock { overflow: hidden; }
    #fip-cinematic-intro { position: fixed; inset: 0; z-index: 20000; display: grid; place-items: center; overflow: hidden; background: #020305; transition: opacity .7s ease, visibility .7s ease; }
    #fip-cinematic-intro.is-closing { opacity: 0; visibility: hidden; }
    .fip-intro-player { position:relative; z-index:0; width:min(1280px,94vw); aspect-ratio:16/9; display:grid; place-items:center; overflow:hidden; border:1px solid rgba(255,255,255,.25); border-radius:16px; background:#000; box-shadow:0 35px 90px rgba(0,0,0,.95),0 0 40px rgba(0,212,212,.18),inset 0 2px rgba(255,255,255,.18),inset 0 -5px 14px rgba(0,0,0,.95); }
    #fip-cinematic-intro .fip-intro-video { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; object-position:center; opacity:.9; filter:brightness(.62) contrast(1.48) saturate(1.18); background:#000; }
    .fip-player-quality { position:absolute; left:16px; top:14px; z-index:4; padding:5px 9px; color:#d8ffff; border:1px solid rgba(0,212,212,.48); border-radius:6px; background:rgba(0,10,14,.72); font:800 9px var(--font-mono); letter-spacing:.12em; text-shadow:0 0 12px #00d4d4; }
    #fip-cinematic-intro::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 50% 46%, transparent 0 24%, rgba(0,0,0,.74) 78%), linear-gradient(90deg, rgba(0,212,212,.18), transparent 42%, rgba(255,106,24,.16)); pointer-events: none; }
    #fip-cinematic-intro::after { content: ""; position: absolute; z-index: 2; left: -10%; right: -10%; top: 50%; height: 3px; background: linear-gradient(90deg, transparent, #00d4d4 18%, #fff 50%, #ff6a18 82%, transparent); box-shadow: 0 0 16px #00d4d4, 0 0 34px #ff6a18, 0 0 70px rgba(255,106,24,.8); animation: introStreak 2.8s ease-in-out infinite alternate; }
    #fip-cinematic-intro .fip-intro-still::after { content:""; }
    .fip-intro-letterbox { position: absolute; z-index: 3; left: 0; right: 0; height: 12vh; background: #000; pointer-events: none; }
    .fip-intro-letterbox.top { top: 0; } .fip-intro-letterbox.bottom { bottom: 0; }
    .fip-intro-content { display:none; }
    .fip-intro-content img { width: min(540px, 78vw); filter: drop-shadow(0 16px 35px rgba(0,0,0,.95)) drop-shadow(0 0 34px rgba(0,212,212,.4)); animation: introLogo 1.4s cubic-bezier(.16,1,.3,1) both; }
    .fip-intro-kicker { margin: 20px 0 12px; color: #d5ffff; font: 800 11px var(--font-mono); letter-spacing: .25em; text-shadow: 0 0 18px rgba(0,212,212,.8); }
    .fip-intro-content h1 { color: #fff; font: 900 clamp(25px, 5vw, 54px) var(--font-cinzel); letter-spacing: .1em; text-shadow: 0 4px 18px #000, 0 0 28px rgba(255,106,24,.35); }
    .fip-intro-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
    .fip-intro-skip { position:absolute; right:28px; bottom:26px; z-index:5; color:#fff; background:rgba(2,3,5,.72); border:1px solid rgba(255,255,255,.42); border-radius:999px; padding:11px 18px; cursor:pointer; font:800 10px var(--font-mono); letter-spacing:.12em; box-shadow:0 7px 20px rgba(0,0,0,.6),0 0 18px rgba(0,212,212,.2); }
    @media (max-width:600px) { .fip-intro-player { width:100vw; border-left:0; border-right:0; border-radius:0; } .fip-player-quality { left:10px; top:10px; font-size:8px; } .fip-intro-skip { right:12px; bottom:18px; } }
    @keyframes introStreak { 0% { transform: scaleX(.72); opacity: .5; } 100% { transform: scaleX(1); opacity: 1; } }
    @keyframes introLogo { from { opacity: 0; transform: scale(.82) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
    @media (prefers-reduced-motion: reduce) { #fip-cinematic-intro *, #fip-cinematic-intro::after { animation: none !important; } }
