/* ============================================================
   NEXUS GAMING — Nosotros Page Styles
   ============================================================ */

/* ── Story section ───────────────────────────────────────── */
.story-section { padding: 7rem 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.sc {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.sc::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue-core);
  border-radius: 3px 0 0 3px;
}
.sc:hover {
  transform: translateX(6px);
  border-color: rgba(0,170,255,0.2);
}
.sc-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cyan-accent);
  min-width: 60px;
}
.sc-event {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.4;
}

/* ── Values ──────────────────────────────────────────────── */
.values-section { padding: 5rem 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card { padding: 2rem; text-align: center; }
.vc-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(0,112,209,0.1);
  border: 1px solid rgba(0,170,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan-accent);
  margin: 0 auto 1.5rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.value-card:hover .vc-icon {
  background: rgba(0,112,209,0.2);
  box-shadow: var(--glow-sm);
}
.vc-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.vc-text { font-size: 0.875rem; color: var(--grey-light); line-height: 1.7; }

/* ── Team ────────────────────────────────────────────────── */
.team-section { padding: 5rem 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card { overflow: hidden; }
.tc-avatar {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.tc-avatar span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}
.tc-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.tc-role {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan-accent);
  margin-bottom: 0.75rem;
}
.tc-bio {
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.tc-social { display: flex; gap: 0.6rem; }
.tc-social a {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-light); font-size: 0.85rem;
  transition: all 0.3s;
}
.tc-social a:hover {
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
  box-shadow: var(--glow-sm);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: none;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-light);
  transition: color 0.3s;
  gap: 1rem;
}
.accordion-header:hover { color: var(--white); }
.acc-icon-toggle { color: var(--cyan-accent); font-size: 0.75rem; flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.open .acc-icon-toggle { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-body p {
  padding: 0 0 1.3rem;
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── Contact CTA ─────────────────────────────────────────── */
.contact-cta { padding: 6rem 0; }
.cct-inner {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 20px;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cct-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,112,209,0.08), transparent 70%);
  pointer-events: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
