/* ============================================
   NORTE — La nueva forma de gestionar carrera
   Stylesheet
   ============================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  --black: #000000;
  --ink: #0a0a0a;
  --ink-2: #111111;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  --accent: #D8FF00;
  --accent-dim: #b8d800;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 4px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--black); }

/* Skip link for a11y */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--black);
  padding: 12px 20px;
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- 4. TYPOGRAPHY ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow--green { color: var(--accent); }

.section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.section-lede {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}
.btn--primary .btn__arrow {
  transition: transform 0.3s var(--ease);
}
.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ---------- 6. NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}
.nav.is-scrolled { padding-top: 14px; padding-bottom: 14px; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mark {
  width: 36px;
  height: 36px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.nav__brand-suffix {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--accent);
  position: relative;
  padding-left: 10px;
}
.nav__brand-suffix::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--line-strong);
}

.nav__links {
  display: flex;
  gap: 22px;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.nav__lang-link {
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.nav__lang-link:hover { color: var(--text); }
.nav__lang-link--active { color: var(--accent); }

.mobile-menu__lang {
  color: var(--text-dim) !important;
  font-size: 16px !important;
  font-family: var(--font-mono) !important;
  letter-spacing: 0.1em;
  margin-top: 16px;
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--accent);
  color: var(--black);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 48px var(--pad);
  gap: 8px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__cta {
  color: var(--accent);
  margin-top: 24px;
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 12vw, 184px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 24px 0 32px;
  max-width: 13ch;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLine 1s var(--ease) forwards;
}
.hero__title-line:nth-child(2) { animation-delay: 0.15s; }
.hero__title-line--alt {
  color: var(--text-muted);
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.65;
  opacity: 0;
  animation: heroLine 1s var(--ease) 0.4s forwards;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroLine 1s var(--ease) 0.55s forwards;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to top, transparent, var(--accent));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px circle at 90% 10%, rgba(216, 255, 0, 0.06), transparent 50%),
    radial-gradient(600px circle at 10% 90%, rgba(216, 255, 0, 0.04), transparent 50%);
}

/* ---------- 8. MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  animation: marquee 30s linear infinite;
  padding-left: 40px;
}
.marquee__track .dot {
  color: var(--accent);
  font-size: 0.5em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 10. SERVICES ---------- */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--black);
  padding: clamp(28px, 3vw, 44px);
  transition: background 0.4s var(--ease);
  position: relative;
}
.service:hover { background: var(--ink-2); }
.service:hover .service__icon { color: var(--accent); transform: rotate(-8deg); }

.service__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.service__icon {
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 42ch;
}
.service ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- 11. MÉTODO ---------- */
.method {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.method__step {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  transition: all 0.4s var(--ease);
}
.method__step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.method__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.method__step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.method__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- 12. JUGADORES ---------- */
.players {
  padding: clamp(80px, 10vw, 140px) 0;
}

.players__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.players__filter-group {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.players__filter {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: default;
  transition: all 0.2s var(--ease);
}
.players__filter.is-active {
  background: var(--accent);
  color: var(--black);
}
.players__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.players__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 24vw, 320px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}
.players__grid::-webkit-scrollbar {
  height: 6px;
}
.players__grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.players__grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}
.players__grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  opacity: 0.85;
}
.player {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.player:hover, .player:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent);
  outline: none;
}
.player__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #161616, #0a0a0a);
  overflow: hidden;
}
.player__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.5s var(--ease);
}
.player--has-photo:hover .player__img {
  transform: scale(1.04);
  transform-origin: bottom center;
}
.player__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  opacity: 0.35;
}
.player__status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.player__status--pro   { background: var(--accent); color: var(--black); }
.player__status--free  { background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid var(--line-strong); }
.player__status--youth { background: rgba(216,255,0,0.15); color: var(--accent); border: 1px solid var(--accent); }

.player__info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.player__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.player__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  flex: 1;
}
.player__flag { font-size: 18px; flex-shrink: 0; }
.player__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}
.player__dot { color: var(--text-dim); }
.player__age { color: var(--text-muted); }
.player__club {
  font-size: 13px;
  color: var(--text-muted);
}
.player__quickstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.qs {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qs strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.qs span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ---------- 12.5 PLAYER MODAL (Niagara-style) ---------- */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  padding: 20px;
}
.player-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.player-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.player-modal__panel {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  max-width: 1100px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.player-modal.is-open .player-modal__panel { transform: translateY(0); }

.player-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line-strong);
  font-size: 22px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
  transition: all 0.2s var(--ease);
}
.player-modal__close:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

/* === Two-column editorial layout === */
.pm__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  min-height: 600px;
}

/* LEFT — full-bleed photo */
.pm__hero {
  position: relative;
  background:
    radial-gradient(ellipse at center bottom, rgba(216, 255, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 600px;
}
.pm__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 18px,
    rgba(255,255,255,0.018) 18px,
    rgba(255,255,255,0.018) 19px
  );
  pointer-events: none;
}
.pm__hero img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.pm__hero--empty {
  background: linear-gradient(135deg, #161616, #0a0a0a);
}

/* RIGHT — editorial content */
.pm__content {
  padding: 48px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pm__top { display: flex; flex-direction: column; gap: 12px; }

.pm__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.pm__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pm__first {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--text);
}
.pm__last {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--accent);
  font-style: italic;
}

.pm__club-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pm__club-flag { font-size: 36px; line-height: 1; }
.pm__club-info { display: flex; flex-direction: column; gap: 2px; }
.pm__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.pm__club-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

/* === Vital stats row === */
.pm__vitals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pm__vital {
  background: var(--black);
  padding: 20px 14px 16px;
  text-align: center;
}
.pm__vital--accent .pm__vital-n { color: var(--accent); }
.pm__vital-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--text);
}
.pm__vital-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 8px;
}

/* === Bio + Pitch grid === */
.pm__detail-grid {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  align-items: stretch;
}
.pm__bio-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pm__bio-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.pm__bio-row:last-child { border-bottom: 0; }
.pm__bio-row > span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.pm__bio-row strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}
.pm__bio-row em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.pm__pitch {
  background: linear-gradient(180deg, rgba(216, 255, 0, 0.04), transparent),
              radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pm__pitch-svg {
  width: 100%;
  height: auto;
  display: block;
}
.pm__pitch-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
}

/* === Traits === */
.pm__traits-block {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pm__traits-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pm__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pm__trait {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
}


/* ---------- 13. NOSOTROS ---------- */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about__head { grid-column: 1; }
.about__body {
  grid-column: 2;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__lede {
  color: var(--text) !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px) !important;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.about__values {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.about__values li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about__values strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--accent);
}
.about__values span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- 14. CONTACTO ---------- */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.contact__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.contact__intro p {
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 17px);
  margin-bottom: 40px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contact__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__link-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact__link-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
}
a.contact__link:hover .contact__link-value { color: var(--accent); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  padding: 12px 0;
  font: inherit;
  font-size: 16px;
  transition: border-color 0.3s var(--ease);
  font-family: var(--font-body);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.contact__legal {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}
.contact__legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}
.contact__legal a:hover { color: var(--accent); }
.contact__success {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding: 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
}

/* ---------- 15. FOOTER ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand svg { width: 32px; height: 32px; }
.footer__brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.footer__brand-suffix {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--accent);
}
.footer__tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}
.footer__nav,
.footer__social {
  display: flex;
  gap: 22px;
}
.footer__nav a,
.footer__social a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__nav a:hover,
.footer__social a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--text-muted); }

/* ---------- 11.5 MERCADOS ---------- */
.markets {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.markets__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.markets__map {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}
.markets__map svg {
  width: 100%;
  height: auto;
  display: block;
}
.markets__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.market {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  transition: all 0.4s var(--ease);
}
.market:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.market__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.market__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.market__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--accent);
  color: var(--black);
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 600;
}
.market h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.market p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- 13.5 FUNDADOR ---------- */
.founder {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.founder__head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.founder__portrait {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--black);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
}
.founder__badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
.founder__badge-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.founder__content {
  padding-top: 8px;
}
.founder__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.founder__name em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.founder__role {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.founder__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
}
.founder__lede {
  color: var(--text) !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 20px) !important;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.founder__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.founder__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.founder__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.founder__link-arrow {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.founder__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.founder__link:hover .founder__link-arrow {
  transform: translate(2px, -2px);
}
.founder__link--accent {
  border-color: var(--accent);
  color: var(--accent);
}
.founder__link--accent:hover {
  background: var(--accent);
  color: var(--black);
}


[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .method__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Modal stacks vertically on tablets/phones */
  .pm__layout { grid-template-columns: 1fr; min-height: 0; }
  .pm__hero { min-height: 360px; max-height: 50vh; }
  .pm__content { padding: 28px 26px 32px; gap: 22px; }
  .pm__detail-grid { grid-template-columns: 1fr; }
  .pm__pitch { max-width: 220px; align-self: center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta, .nav__lang { display: none; }
  .nav__right { gap: 0; }
  .nav__burger { display: flex; }

  .hero { padding-top: 110px; min-height: auto; padding-bottom: 60px; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(48px, 14vw, 80px); }

  .services__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__head, .about__body { grid-column: 1; }
  .about__values { grid-template-columns: 1fr; margin-top: 32px; }

  .contact__grid { grid-template-columns: 1fr; }

  .markets__layout { grid-template-columns: 1fr; gap: 32px; }

  .founder__grid { grid-template-columns: 1fr; gap: 32px; }
  .founder__portrait { max-width: 480px; margin: 0 auto; }
  .founder__name br { display: none; }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 28px;
  }
  .footer__nav { flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .players__grid {
    grid-auto-columns: minmax(240px, 78vw);
    scroll-padding-left: 20px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .method__steps { grid-template-columns: 1fr; }
  .pm__vitals { grid-template-columns: repeat(2, 1fr); }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .founder__badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* Hide longer wordmark suffix on the smallest phones so nav doesn't overflow */
  .nav__brand-suffix { display: none; }
}
