    :root {
      /* Game Jam Plus (placeholder; reemplazar por oficiales) */
      --gjp-primary: #5b2ad9;
      --gjp-secondary: #ff2e8a;
      --gjp-accent-1: #ffd166;
      --gjp-accent-2: #19e3ff;

      /* Openlab */
      --ol-primary: #373b78;
      --ol-primary-100: #c6cae9;
      --ol-text: #2d2d2d;
      --ol-link: #4a5eb5;

      /* UI clara */
      --bg: #f6f8fb;
      --panel: #ffffff;
      --border: #e6e9f0;
      --text: #1f2430;
      --muted: #707791;
      --radius: 16px;
      --shadow: 0 6px 20px rgba(27,39,78,.08);
    }

    /* Tipografía */
    :root { --ff-title: 'Popper','Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Inter,sans-serif; --ff-text: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }

    /* Reset y base */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; }
    body { margin: 0; font-family: var(--ff-text); background: var(--bg); color: var(--text); line-height: 1.55; }
    h1, h2, h3 { font-family: var(--ff-title); margin: 0 0 .6rem; }
    h1 { font-weight: 800; letter-spacing:.2px; }
    h2 { 
        font-weight: 800;
        font-size: 1.5rem; 
    }

    h2 strong {
        color: var(--panel);
    }

    a { color: var(--ol-link); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .container { width: min(1120px, 92vw); margin: 0 auto; }

    /* Utilidades */
    .btn { display:inline-block; padding:.9rem 1.2rem; border-radius: 14px; font-weight: 700; letter-spacing:.2px; text-align:center; border:2px solid transparent; }
    .btn-primary {
        background: linear-gradient(135deg, #FFD93D, #FFA800);
        color: #000;
        box-shadow: var(--shadow);
    }

    .btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
    .btn-ghost:hover { border-color: var(--gjp-primary); color: var(--gjp-primary); }
    .pill { 
        display:inline-flex; 
        align-items:center; 
        gap:.5rem; 
        padding:.35rem 1rem; 
        border-radius:999px; 
        font-size:.85rem; 
        background:#eef2ff; 
        color:#3442c3; 
        border:1px solid #dfe5ff 
    }

    /* Header claro */
    header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px); background: rgba(255,255,255,.8); border-bottom: 1px solid var(--border); }
    .nav { display:flex; align-items:center; justify-content:space-between; padding: .9rem 0; }
    .brand { display:flex; align-items:center; gap:.6rem; font-weight:800; letter-spacing:.3px; font-family: var(--ff-title); }
    .brand-dot { width:12px; height:12px; border-radius:50%; background: linear-gradient(135deg, var(--gjp-secondary), var(--ol-primary)); box-shadow:0 0 0 3px rgba(55,59,120,.12); }
    .nav-actions { display:flex; gap:.7rem; }

    /* Hero oscuro simplificado */
    /* .hero { color:#fff; background:
      linear-gradient(180deg, rgba(10,12,24,.6), rgba(10,12,24,.6)),
      radial-gradient(800px 400px at 15% 20%, rgba(255,46,138,.35), transparent 60%),
      linear-gradient(135deg, var(--gjp-primary) 0%, var(--ol-primary) 100%);
      padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,.12);
    }*/

    .hero {
        color: #fff;
        background: linear-gradient(
            135deg,
            #FF3C57 0%,   /* rojo / fucsia */
            #C4419F 40%,  /* morado intermedio */
            #3A4CA8 100%  /* azul profundo */
        );
        padding: 72px 0 56px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }


    .hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items:center; }
    .hero h1 { 
        font-size: clamp(2.2rem, 3.4vw, 3.2rem); 
        line-height:1.08;
        color: var(--panel) !important; 
    }
    .hero p.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); opacity:.92; }
    .hero-card { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); padding: 1.1rem; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
    .kpis { display:grid; grid-template-columns: repeat(3,1fr); gap:.8rem; margin-top: .6rem; }
    .kpi { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); padding:.8rem; border-radius: 12px; text-align:center; }
    .kpi .n { font-size:1.35rem; font-weight:800; }
    .kpi .l { font-size:.85rem; opacity:.88; }

    /* Secciones claras */
    main section { padding: 48px 0; }
    .split { display:grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .card { background: var(--panel); border:1px solid var(--border); padding: 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
    .list { list-style:none; padding:0; margin:.3rem 0 0; }
    .list li { gap:.6rem; margin:.5rem 0; color:#2b3142; }
    .check { width:1.05rem; height:1.05rem; border-radius:4px; display:inline-flex; align-items:center; justify-content:center; background: linear-gradient(135deg, var(--gjp-accent-1), var(--gjp-secondary)); color:#0b0e1a; font-weight:900; }


    /* Galería */
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
        margin-top: 1rem;
    }
    .gallery-item {
        overflow: hidden;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }
    .gallery-item img:hover {
        transform: scale(1.05);
    }

    /* Pricing claro */
    .pricing { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; }
    .price { text-align:center; padding:1.1rem; border-radius:var(--radius); background: #fff; border:1px solid var(--border); box-shadow: var(--shadow); }
    .price .val { font-size:2rem; font-weight:900; color: var(--ol-primary); }
    .badge { background: #fff7e0; color:#8a6b12; border:1px solid #f4d480; padding:.2rem .5rem; border-radius:999px; font-weight:700; font-size:.8rem; }

    /* Logos aliados */
    .ally-section h3 { margin:.2rem 0 .6rem; font-size:1.05rem; color: var(--muted); }
    .logo-grid { 
        display:grid; 
        grid-template-columns: repeat(5, 1fr); 
        gap: .9rem; 
    }

    .logo-grid-platinum { 
        display:grid; 
        grid-template-columns: repeat(4, 1fr); 
        gap: .9rem; 
    }

    .logo-tile { background: #fff; border:1px solid var(--border); border-radius: 12px; padding:.8rem; display:flex; align-items:center; justify-content:center; aspect-ratio: 3 / 2; box-shadow: var(--shadow); }
    .logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .logo-note { color: var(--muted); font-size: .85rem; }

    /* Footer */
    footer { background: #ffffff; padding: 36px 0 56px; color: var(--muted); border-top: 1px solid var(--border); }

    /* Responsivo */
    @media (max-width: 960px) { .hero-grid, .split, .pricing { grid-template-columns: 1fr; } }
    @media (max-width: 720px)  { .logo-grid { grid-template-columns: repeat(2, 1fr); } }

    .hero {
  position: relative;
  color: #fff;
  background: linear-gradient(
      135deg,
      #FF3C57 0%,
      #C4419F 40%,
      #3A4CA8 100%
    );
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

/* Imagen capibara como fondo decorativo */
.hero::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 540px;
  height: 540px;
  background: url("https://openlab.ec/sites/default/files/gjp2025-capibara.svg") no-repeat bottom right;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero::after {
    width: 320px;
    height: 320px;
    opacity: 0.35;
    right: -40px;
    bottom: 0;
  }
}

#agenda {
  background: var(--bg);
  padding: 60px 0;
}

#agenda h2 {
  text-align: center;
  color: var(--ol-primary);
  margin-bottom: 1.2rem;
}

#agenda .card h3 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: .8rem;
}

#agenda .card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

#agenda .agenda-highlight {
  font-size: 0.95rem;
  color: var(--text);
}

/* FAQ Mejorado */
.faq-card h2 {
  color: var(--ol-primary);
  margin-bottom: 0.5rem;
}

.faq-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.8rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.faq-list details[open] {
  border-color: var(--gjp-primary);
  box-shadow: 0 6px 16px rgba(91, 42, 217, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--ff-title);
  color: var(--ol-primary);
  position: relative;
  padding-right: 1.5rem;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
  color: var(--gjp-primary);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list p {
  margin-top: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card .social-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.2rem;
  line-height: 1.5;
}

#faq a {
  color: var(--gjp-secondary);
  text-decoration: none;
}

#faq a:hover {
  text-decoration: underline;
}
