/* ─── Nosotros Page ─── */
.nos-page { padding-top: 120px; background: var(--bg-main); }

/* Manifesto hero — big type, crawling marquee word */
.nos-hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.nos-hero-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.nos-hero h1 {
  font-size: clamp(64px, 9vw, 152px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.nos-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.nos-hero-sub {
  max-width: 640px;
  margin: 40px auto 0;
  font-size: 19px;
  color: var(--text-body);
  line-height: 1.55;
}
.nos-hero-marquee {
  position: absolute;
  left: 0; right: 0;
  top: 30%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  font-family: var(--f-display);
  font-size: 18vw;
  font-style: italic;
  line-height: 1;
  color: var(--navy);
  animation: marqueeL 40s linear infinite;
}
@keyframes marqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Manifiesto — large pull quotes */
.nos-manifest { padding: 120px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.nos-manifest::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.12), transparent 60%);
}
.nos-manifest-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.nos-manifest h2 {
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.08;
  color: var(--white);
  max-width: 20ch;
  margin-bottom: 24px;
}
.nos-manifest h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.nos-manifest-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  line-height: 1.65;
  margin-bottom: 72px;
}
.nos-manifest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 64px; }
.nos-principle { display: flex; gap: 28px; padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.nos-principle-num { font-family: var(--f-display); font-size: 42px; font-style: italic; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 64px; }
.nos-principle-body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}
.nos-principle-body p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.65; }

/* Numbers strip */
.nos-stats { padding: 100px 0; background: var(--bg-alt); }
.nos-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nos-stat {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.nos-stat::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.nos-stat:hover { transform: translateY(-2px); border-color: var(--gold); }
.nos-stat:hover::after { width: 100%; }
.nos-stat-val {
  font-family: var(--f-display);
  font-size: 56px;
  color: var(--navy);
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.nos-stat-val em { font-style: italic; color: var(--gold); font-weight: 400; font-size: 36px; }
.nos-stat-lbl { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.nos-stat-sub { font-size: 13px; color: var(--text-mute); line-height: 1.55; margin-top: 6px; }

/* Timeline */
.nos-timeline { padding: 140px 0; background: var(--bg-main); }
.tl-wrap { max-width: 960px; margin: 56px auto 0; position: relative; padding-left: 60px; }
.tl-wrap::before {
  content: "";
  position: absolute;
  left: 15px; top: 12px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
}
.tl-item { padding: 0 0 48px 20px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -53px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 2px solid var(--gold);
  z-index: 1;
}
.tl-item.current::before { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.tl-year {
  font-family: var(--f-display);
  font-size: 44px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
}
.tl-title { font-family: var(--f-display); font-size: 26px; color: var(--navy); margin-bottom: 8px; font-weight: 500; }
.tl-desc { color: var(--text-body); font-size: 15px; line-height: 1.65; max-width: 58ch; }

/* Team */
.nos-team { padding: 140px 0; background: var(--bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar svg { width: 100%; height: 100%; display: block; }
.team-card .name { font-family: var(--f-display); font-size: 22px; color: var(--navy); font-weight: 500; }
.team-card .role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 6px 0 14px; }
.team-card .bio { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; }
.team-card-social { display: flex; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.team-card-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  transition: all .3s var(--ease);
}
.team-card-social a:hover { background: var(--navy); border-color: var(--navy); color: var(--gold); }

/* Values — row of 4 */
.nos-values { padding: 140px 0; background: var(--bg-main); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.value-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--navy); }
.value-num {
  font-family: var(--f-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.value-card h4 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 500;
  max-width: 14ch;
}
.value-card p { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; flex: 1; }
.value-pattern {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 8px;
}

/* CTA */
.nos-cta { padding: 140px 0; background: var(--navy); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.nos-cta::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 60%);
}
.nos-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.nos-cta h2 { color: var(--white); font-size: clamp(36px, 3.5vw, 56px); line-height: 1.08; margin-bottom: 24px; }
.nos-cta h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.nos-cta p { color: rgba(255,255,255,0.7); max-width: 56ch; margin: 0 auto 36px; font-size: 17px; }

@media (max-width: 960px) {
  .nos-manifest-grid { grid-template-columns: 1fr; gap: 12px; }
  .nos-stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tl-wrap { padding-left: 32px; }
  .tl-wrap::before { left: 8px; }
  .tl-item::before { left: -30px; }
}
