/* ============================================================
   Parabx Ventures - site styles
   Dark editorial / term-sheet aesthetic.
   Palette + type reproduced from the approved "Parabx Website" canvas.
   ============================================================ */

/* ---- Fonts --------------------------------------------------
   Primary typeface is Aeonik (CoType Foundry, licensed via gifits group).
   Drop the licensed files in /assets/fonts/ with these names - .woff2
   preferred, .otf works too (both are listed in src as a fallback):
     Aeonik-Regular.woff2  (or .otf)   → weight 400
     Aeonik-Medium.woff2   (or .otf)   → weight 500
     Aeonik-Bold.woff2     (or .otf)   → weights 700 & 800
   Until the files exist, the browser silently falls back to Hanken
   Grotesk (next in --font-sans). No further edits needed. */
@font-face {
  font-family: 'Aeonik';
  src: url('/assets/fonts/Aeonik-Regular.woff2') format('woff2'),
       url('/assets/fonts/Aeonik-Regular.woff') format('woff'),
       url('/assets/fonts/Aeonik-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('/assets/fonts/Aeonik-Medium.woff2') format('woff2'),
       url('/assets/fonts/Aeonik-Medium.woff') format('woff'),
       url('/assets/fonts/Aeonik-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
/* Heading weights (600–800): the current Aeonik license pack is Regular +
   Medium only, so these map to Medium - real Aeonik, no 404s. To restore the
   heavier display weight, drop Aeonik-Bold.woff2 (+ .woff) in /assets/fonts/
   and put them first in the src list below. */
@font-face {
  font-family: 'Aeonik';
  src: url('/assets/fonts/Aeonik-Medium.woff2') format('woff2'),
       url('/assets/fonts/Aeonik-Medium.woff') format('woff'),
       url('/assets/fonts/Aeonik-Medium.otf') format('opentype');
  font-weight: 600 800; font-style: normal; font-display: swap;
}

:root {
  --bg: #0c0c0c;
  --panel: #131318;
  --hair: #1e1e2a;
  --hair-soft: #17171f;
  --row-hover: #101018;

  --violet: #6666ff;
  --violet-soft: #8585ff;
  /* Yellow/lime retired — every former lime accent (dots, stat numbers,
     slashes) now resolves to violet for a cohesive palette. To bring the
     lime back, restore: #d6ff66. */
  --lime: #8585ff;

  --text: #F5F7FA;
  --muted: #A6ABB8;     /* secondary text - brightened for legibility */
  --dim: #767b8c;       /* labels, dates, marquee */
  --dimmer: #7a7f8d;    /* disclosures - readable on #0c0c0c */
  --nav-slash: #4a4a5c;

  --font-sans: 'Aeonik', 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --px: clamp(20px, 5.5vw, 120px);   /* section side padding */
  --py: clamp(96px, 13vw, 184px);     /* section vertical padding (roomy) */
  --shell: 1680px;                    /* ultra-wide cap */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--violet-soft); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--text); }

em { font-style: italic; }

.shell { max-width: var(--shell); margin-inline: auto; }

.mono { font-family: var(--font-mono); }
.lime { color: var(--lime); }
.violet { color: var(--violet-soft); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--violet); color: #fff; padding: 10px 16px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

:focus-visible { outline: 2px solid var(--violet-soft); outline-offset: 3px; }

/* ---- Header ------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(12, 12, 12, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hair);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: clamp(64px, 8vw, 92px);
  padding: 0 var(--px);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand img { width: 26px; height: 32.8px; }
.brand .word { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand .word b { font-weight: 800; font-size: 15px; letter-spacing: .14em; }
.brand .word span {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: .3em; color: var(--muted);
}

.menu {
  display: flex; align-items: center; gap: 40px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
}
.menu a { color: var(--muted); }
.menu a:hover { color: var(--text); }
.menu a.active { color: var(--text); border-bottom: 1px solid var(--violet); padding-bottom: 3px; }

.lang { color: var(--text); font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; }
.lang a { color: var(--dim); }
.lang a:hover { color: var(--text); }
.lang .sep { color: var(--nav-slash); margin: 0 4px; }
.lang .cur { color: var(--text); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--hair);
  color: var(--text); font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; padding: 9px 13px; cursor: pointer;
}
.nav-toggle:hover { border-color: var(--violet); }

/* Nav dropdown (Fund) */
.navdrop { position: relative; display: inline-flex; }
.navdrop-btn {
  background: none; border: 0; cursor: pointer; color: var(--muted);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.navdrop-btn:hover, .navdrop.open .navdrop-btn { color: var(--text); }
.navdrop-btn.active { color: var(--text); border-bottom: 1px solid var(--violet); padding-bottom: 3px; }
.navdrop-btn .caret { font-size: 9px; transition: transform .2s ease; }
.navdrop.open .navdrop-btn .caret { transform: rotate(180deg); }
.navdrop-menu {
  position: absolute; top: calc(100% + 16px); left: -12px; z-index: 110;
  background: #101018; border: 1px solid var(--hair); min-width: 150px;
  flex-direction: column; padding: 6px; display: none;
}
.navdrop:hover .navdrop-menu, .navdrop.open .navdrop-menu { display: flex; }
.navdrop-menu a {
  padding: 11px 14px; color: var(--muted);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
}
.navdrop-menu a:hover { color: var(--text); background: var(--row-hover); }

/* ---- Section scaffolding ------------------------------------ */
.section {
  padding-block: clamp(80px, 10vh, 128px);
  padding-inline: var(--px);
  /* Una seccion = una pantalla. Si el contenido no llega, el aire queda
     repartido arriba y abajo por igual; nunca en un hueco al medio. */
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  scroll-snap-align: start;
  border-top: 1px solid var(--hair-soft);
}
.section > * { min-width: 0; max-width: 100%; }
@media (max-width: 760px) {
  .section { min-height: 0; padding-block: var(--py); scroll-snap-align: none; }
}
@media (min-width: 1101px) and (prefers-reduced-motion: no-preference) { html { scroll-snap-type: y proximity; } }

.slabel { display: flex; align-items: center; gap: 20px; margin-bottom: clamp(40px, 7vh, 92px); flex-wrap: wrap; }
.slabel .k {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .2em;
  color: var(--muted); white-space: nowrap;
}
.slabel .rule { display: none; }

.eyebrow {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px; letter-spacing: .2em; color: var(--muted);
}
.eyebrow.stacked { display: flex; flex-direction: column; gap: 10px; }
.eyebrow.stacked .l2 { color: var(--dim); }

/* ---- Hero --------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(72px, 9vh, 112px) var(--px) clamp(64px, 8vh, 96px);
  scroll-snap-align: start;
}
/* la P de fondo, igual en todas las paginas */
.hero .ghost {
  position: absolute; top: 50%; right: -6%; transform: translateY(-50%);
  height: 112%; width: auto; max-width: none; opacity: .085;
  pointer-events: none; user-select: none;
}
@media (max-width: 760px) { .hero .ghost { height: 62%; right: -18%; opacity: .06; } }
.hero .glow {
  position: absolute; width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(102,102,255,.09) 0%, rgba(102,102,255,.03) 40%, rgba(12,12,12,0) 68%);
}
.hero .glow.right { right: -220px; top: -260px; }
.hero .glow.left  { left: -260px; top: -300px; }


/* Full-screen hero (home): the P fills the screen behind the transparent header */
.hero.hero-cover {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(120px, 16vh, 200px);
  padding-bottom: clamp(96px, 12vh, 150px);
}
.hero.hero-cover .powered {
  position: absolute; left: var(--px); bottom: clamp(28px, 5vh, 56px); margin-top: 0;
}
.hero.hero-cover .ghost {
  top: 50%; right: -6%; transform: translateY(-50%);
  width: auto; height: 116%; max-width: none; opacity: .10;
}
@media (max-width: 760px) {
  .hero.hero-cover .ghost { height: 70%; right: -18%; opacity: .06; }
}
.hero .grain {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .05; pointer-events: none;
}
.hero .hero-inner { position: relative; display: flex; flex-direction: column; gap: clamp(24px, 4vw, 40px); max-width: 1000px; }
.hero .powered {
  position: relative; margin-top: clamp(48px, 8vw, 90px);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--dim);
}
.hero .powered .gifits-mark { height: 20px; width: auto; opacity: .9; }
.foot-brand .gifits-mark { height: 15px; width: auto; opacity: .85; margin-left: 4px; }

h1.headline {
  font-weight: 800; letter-spacing: -.02em; line-height: 1.04;
  font-size: clamp(40px, 8.4vw, 84px);
}
.hero .sub {
  font-size: clamp(16px, 2.2vw, 20px); line-height: 1.6; color: var(--muted);
  max-width: 680px; font-weight: 400;
}

/* ---- Marquee ------------------------------------------------ */
.marquee { padding: 22px 0; overflow: hidden; }
.marq-inner {
  display: flex; gap: 72px; white-space: nowrap; width: max-content;
  font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .22em; color: #C2C7D2;
  animation: marq 45s linear infinite;
}
.marquee:hover .marq-inner { animation-play-state: paused; }
.marq-inner .dot { color: var(--lime); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---- Thesis ------------------------------------------------- */
.thesis-lead {
  font-family: var(--font-serif); font-weight: 300; line-height: 1.36;
  font-size: clamp(34px, 5.8vw, 68px); max-width: 22ch; color: var(--text);
}
.thesis-lead.wide { max-width: 30ch; }
.thesis-lead em { color: var(--violet-soft); }
.thesis-close {
  margin-top: clamp(28px, 4vw, 44px); font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6; color: var(--muted); max-width: 640px;
}

/* ---- Big statements ---------------------------------------- */
.statement {
  font-weight: 800; letter-spacing: -.015em; line-height: 1.1;
  font-size: clamp(36px, 6.4vw, 72px); text-wrap: balance;
}
.statement .soft { color: var(--violet-soft); }

/* ---- Edge grid --------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 5vw, 64px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 4vw, 48px); }

.edgecard {
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--hair); padding-top: 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.edgecard:hover { border-top-color: var(--violet); transform: translateY(-4px); }
.edgecard .idx { font-family: var(--font-mono); font-size: 13px; color: var(--violet-soft); }
.edgecard h3 { font-weight: 700; font-size: clamp(19px, 2.4vw, 21px); }
.edgecard p { font-size: 16px; line-height: 1.65; color: var(--muted); }

.mt-80 { margin-top: clamp(48px, 8vw, 80px); }

/* ---- Our Fund banner --------------------------------------- */
.fundbanner {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: clamp(32px, 5vw, 64px); border-top: 1px solid var(--hair); padding-top: 44px;
  transition: border-color .3s ease;
}
.fundbanner:hover { border-top-color: var(--violet); }
.fundbanner .col { display: flex; flex-direction: column; gap: 24px; max-width: 720px; }
.fundbanner .big { font-weight: 800; font-size: clamp(38px, 6.4vw, 64px); letter-spacing: -.02em; line-height: 1; }
.fundbanner p { font-size: 18px; line-height: 1.65; color: var(--muted); }
.metaline {
  display: flex; flex-wrap: wrap; gap: 12px 36px; align-items: center;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em; color: var(--text);
}
.metaline .dot { color: var(--lime); }

.sector-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--violet-soft);
  border: 1px solid rgba(102, 102, 255, .40); background: rgba(102, 102, 255, .06);
  padding: 6px 13px;
}

.textlink {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .14em;
  color: var(--violet-soft); border-bottom: 1px solid var(--violet-soft);
  padding-bottom: 4px; white-space: nowrap; align-self: flex-end;
}
.textlink:hover { color: var(--text); border-bottom-color: var(--text); }

/* ---- Team --------------------------------------------------- */
.team-head { display: flex; justify-content: space-between; align-items: baseline; gap: 32px; margin-bottom: clamp(48px, 8vw, 72px); flex-wrap: wrap; }
.team-head .h { font-weight: 800; font-size: clamp(30px, 4.8vw, 46px); letter-spacing: -.01em; }
.team-stats { display: flex; flex-wrap: wrap; gap: 20px 36px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: var(--muted); }
.team-stats b { color: var(--lime); font-weight: 500; }

.member { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid var(--hair); padding-top: 28px; }
.member .photo {
  position: relative;
  aspect-ratio: 3 / 3.4; background: var(--panel); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.member .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member .photo .ph {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--dim);
  text-align: center; padding: 0 12px;
}
.member .name { font-weight: 700; font-size: 20px; }
.member .role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; color: var(--violet-soft); margin-top: 6px; }
.member .bio { font-size: 15px; line-height: 1.65; color: var(--muted); }
.member .li { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--muted); }
.member .li:hover { color: var(--text); }

/* ---- Contact ------------------------------------------------ */
.channel { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--hair); padding-top: 28px; }
.channel .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; color: var(--muted); }
.channel .desc { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 460px; }
.channel .mail { font-weight: 700; font-size: clamp(22px, 3.4vw, 28px); color: var(--violet-soft); word-break: break-word; }
.channel .sub { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.channel .sub .kk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--dim); }
.checklist { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--text); }
.checklist .slash { color: var(--lime); margin-right: 12px; }
.elsewhere { display: flex; gap: 28px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em; }
.elsewhere a { color: var(--muted); }
.elsewhere a:hover { color: var(--text); }

/* ---- Term-sheet rows --------------------------------------- */
.terms { display: flex; flex-direction: column; }
.trow {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px 32px; flex-wrap: wrap;
  padding: 26px 0; border-top: 1px solid var(--hair);
  transition: background .25s ease, padding-left .25s ease;
}
.terms .trow:last-child { border-bottom: 1px solid var(--hair); }
.trow:hover { background: var(--row-hover); padding-left: 16px; }
.trow .rk { font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; color: var(--muted); }
.trow .rv { font-weight: 600; font-size: clamp(22px, 3.4vw, 30px); }

/* ---- Criteria list (Fund) ---------------------------------- */
.criteria {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .1em;
  color: var(--text); max-width: 1100px; line-height: 2;
}
.criteria .slash { color: var(--lime); }
.cta-inline { margin-top: clamp(48px, 8vw, 72px); display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 24px; }
.cta-inline .q { font-size: clamp(18px, 2.6vw, 22px); font-weight: 500; }
.cta-inline .a {
  font-size: clamp(18px, 2.6vw, 22px); font-weight: 700; color: var(--violet-soft);
  border-bottom: 1px solid var(--violet-soft); padding-bottom: 2px; word-break: break-word;
}
.cta-inline .a:hover { color: var(--text); border-bottom-color: var(--text); }

/* ---- News rows ---------------------------------------------- */
.newslist { display: flex; flex-direction: column; }
.newsrow {
  display: flex; align-items: baseline; gap: 20px 48px; flex-wrap: wrap;
  padding: 34px 0; border-top: 1px solid var(--hair);
  transition: background .25s ease, padding-left .25s ease;
}
.newslist .newsrow:last-child { border-bottom: 1px solid var(--hair); }
.newsrow:hover { background: var(--row-hover); padding-left: 16px; }
.newsrow .date { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--dim); width: 110px; flex-shrink: 0; }
.newsrow .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--violet-soft); width: 90px; flex-shrink: 0; }
.newsrow .title { font-weight: 600; font-size: clamp(18px, 2.6vw, 24px); line-height: 1.35; flex: 1 1 320px; color: var(--muted); }
.newsrow .arrow { color: var(--violet-soft); font-size: 20px; }
.designnote { margin-top: 56px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--dim); }

/* ---- Footer ------------------------------------------------- */
.site-footer { padding: 56px var(--px) 72px; border-top: 1px solid var(--hair); display: flex; flex-direction: column; gap: 32px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.foot-brand:hover { color: var(--text); }
.foot-brand img { width: 18px; height: 22.7px; }
.foot-brand b { font-weight: 800; font-size: 12px; letter-spacing: .14em; }
.foot-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--dim); }
.foot-meta a { color: var(--dim); }
.foot-meta a:hover { color: var(--text); }
.foot-powered {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 12px; padding-top: 4px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--dim);
}
.foot-powered .gifits-mark { height: 15px; width: auto; opacity: .85; }
.disclosures { display: flex; flex-direction: column; gap: 12px; max-width: 980px; border-top: 1px solid var(--hair-soft); padding-top: 28px; }
.disclosures .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--dim); }
.disclosures p { font-size: 12.5px; line-height: 1.75; color: var(--dimmer); }

/* ---- "Where we invest" flip cards -------------------------- */
.invest { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.invest .flipcard { perspective: 1400px; min-height: 380px; cursor: pointer; outline: none; }
.invest .flipcard-inner {
  position: relative; width: 100%; height: 100%; min-height: 380px;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  transform-style: preserve-3d;
}
.invest .flipcard:hover .flipcard-inner,
.invest .flipcard:focus-visible .flipcard-inner,
.invest .flipcard.flipped .flipcard-inner { transform: rotateY(180deg); }
.invest .flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--hair); padding: 34px 30px;
  transition: border-color .3s ease;
}
.invest .flipcard:hover .flip-face,
.invest .flipcard:focus-visible .flip-face,
.invest .flipcard.flipped .flip-face { border-color: var(--violet); }
.invest .flip-front { align-items: center; justify-content: center; text-align: center; gap: 24px; }
.invest .flip-front .ic { height: 108px; display: flex; align-items: center; justify-content: center; }
.invest .flip-front .ic svg { width: 92px; height: 92px; }
.invest .flip-front h3 { font-weight: 700; font-size: clamp(20px, 2.6vw, 23px); }
.invest .flip-hint {
  position: absolute; bottom: 20px; right: 24px;
  font-family: var(--font-mono); font-size: 20px; line-height: 1; color: var(--violet-soft); opacity: .6;
}
.invest .flip-back { transform: rotateY(180deg); justify-content: center; gap: 14px; }
.invest .flip-back h3 { font-weight: 700; font-size: clamp(19px, 2.4vw, 21px); }
.invest .flip-back p { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* ---- Teasers (home → landing) ------------------------------ */
.teaser-cta {
  display: inline-flex; align-items: baseline; gap: 10px; margin-top: clamp(28px, 4vw, 40px);
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .14em;
  color: var(--violet-soft); border-bottom: 1px solid var(--violet-soft); padding-bottom: 4px;
}
.teaser-cta:hover { color: var(--text); border-bottom-color: var(--text); }

/* ---- Team landing: value pillars --------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 4vw, 48px); }
.pillar { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--hair); padding-top: 26px; }
.pillar .idx { font-family: var(--font-mono); font-size: 13px; color: var(--violet-soft); }
.pillar h3 { font-weight: 700; font-size: 20px; }
.pillar p { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* ---- Reveal on scroll (staggered) -------------------------- */
/* Section-level: label, heading, body cascade up in sequence. */
.js .reveal > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
}
.js .reveal.in > * { opacity: 1; transform: none; }
.js .reveal.in > *:nth-child(1) { transition-delay: 0s; }
.js .reveal.in > *:nth-child(2) { transition-delay: .10s; }
.js .reveal.in > *:nth-child(3) { transition-delay: .20s; }
.js .reveal.in > *:nth-child(4) { transition-delay: .30s; }
.js .reveal.in > *:nth-child(5) { transition-delay: .40s; }

/* Card grids: the container stays put, its items cascade individually. */
.js .reveal > .grid-2, .js .reveal > .grid-3, .js .reveal > .pillars, .js .reveal > .invest {
  opacity: 1; transform: none; transition: none;
}
.js .reveal .grid-2 > *, .js .reveal .grid-3 > *, .js .reveal .pillars > *, .js .reveal .invest > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.js .reveal.in .grid-2 > *, .js .reveal.in .grid-3 > *, .js .reveal.in .pillars > *, .js .reveal.in .invest > * {
  opacity: 1; transform: none;
}
.js .reveal.in .grid-2 > :nth-child(2), .js .reveal.in .grid-3 > :nth-child(2),
.js .reveal.in .pillars > :nth-child(2), .js .reveal.in .invest > :nth-child(2) { transition-delay: .12s; }
.js .reveal.in .grid-2 > :nth-child(3), .js .reveal.in .grid-3 > :nth-child(3),
.js .reveal.in .pillars > :nth-child(3), .js .reveal.in .invest > :nth-child(3) { transition-delay: .24s; }
.js .reveal.in .grid-2 > :nth-child(4), .js .reveal.in .grid-3 > :nth-child(4) { transition-delay: .36s; }

/* ---- Hero load cascade ------------------------------------- */
.rv1 { animation: rise .8s cubic-bezier(.16,1,.3,1) .10s both; }
.rv2 { animation: rise .8s cubic-bezier(.16,1,.3,1) .25s both; }
.rv3 { animation: rise .8s cubic-bezier(.16,1,.3,1) .40s both; }
.rv4 { animation: rise .8s cubic-bezier(.16,1,.3,1) .55s both; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 860px) {
  .menu { display: none; }
  .nav-toggle { display: inline-block; }
  .site-header.open .menu {
    display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(12,12,12,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hair); padding: 28px var(--px);
    font-size: 14px;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .invest { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .fundbanner { flex-direction: column; align-items: flex-start; }
  .textlink { align-self: flex-start; }
  .team-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  /* Fund dropdown expands inline inside the mobile menu */
  .site-header.open .navdrop { flex-direction: column; align-items: flex-start; width: 100%; }
  .site-header.open .navdrop-menu { position: static; display: flex; border: 0; background: transparent; padding: 10px 0 0 16px; min-width: 0; }
  .site-header.open .navdrop-btn .caret { display: none; }
}

@media (max-width: 520px) {
  .newsrow .date { width: auto; }
  .newsrow .tag { width: auto; }
  .newsrow .title { flex-basis: 100%; }
  .trow .rv { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv1, .rv2, .rv3, .rv4, .marq-inner { animation: none; }
  .edgecard:hover, .fundbanner:hover { transform: none; }
  .js .reveal > *, .js .reveal .grid-2 > *, .js .reveal .grid-3 > *,
  .js .reveal .pillars > *, .js .reveal .invest > * { opacity: 1; transform: none; transition: none; }
  .modal-card { transition: none; }
  .invest .flipcard-inner { transition: none; }
}

/* ---- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em;
  color: var(--text); background: transparent; border: 1px solid var(--violet);
  padding: 15px 24px; transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-align: left;
}
.btn:hover { background: var(--violet); color: #fff; }
.btn:hover .arw { color: #fff; }
.btn .arw { color: var(--violet-soft); transition: color .2s ease; }
/* CTA styled like the old inline text link (mono, underlined) but a real button */
.linkcta {
  display: inline-flex; align-items: baseline; gap: 10px; cursor: pointer;
  background: transparent; border: 0; padding: 0;
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .14em;
  color: var(--violet-soft); border-bottom: 1px solid var(--violet-soft); padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.linkcta:hover { color: var(--text); border-bottom-color: var(--text); }
.linkcta.big { font-size: clamp(20px, 3vw, 26px); font-weight: 700; letter-spacing: 0; font-family: var(--font-sans); border-bottom-width: 1px; }

/* ---- Contact modal ----------------------------------------- */
.modal-root { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal-root.open { display: block; }
.modal-scrim { position: absolute; inset: 0; background: rgba(6, 6, 10, .74); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(660px, calc(100vw - 28px)); max-height: calc(100dvh - 40px); overflow-y: auto;
  background: #101018; border: 1px solid var(--hair);
  padding: clamp(24px, 4vw, 44px);
  animation: modalin .28s cubic-bezier(.16,1,.3,1) both;
}
@keyframes modalin { from { opacity: 0; transform: translate(-50%, calc(-50% + 14px)); } to { opacity: 1; transform: translate(-50%, -50%); } }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.modal-head h2 { font-weight: 800; font-size: clamp(24px, 3.6vw, 30px); letter-spacing: -.01em; }
.modal-close {
  background: transparent; border: 1px solid var(--hair); color: var(--muted);
  width: 38px; height: 38px; flex-shrink: 0; cursor: pointer; font-size: 18px; line-height: 1;
  transition: border-color .2s ease, color .2s ease;
}
.modal-close:hover { border-color: var(--violet); color: var(--text); }
.modal-sub { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 22px; max-width: 46ch; }

.modal-tabs { display: flex; gap: 0; margin-bottom: 26px; border: 1px solid var(--hair); }
.modal-tabs button {
  flex: 1; background: transparent; border: 0; cursor: pointer; padding: 12px 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--muted);
  transition: background .2s ease, color .2s ease;
}
.modal-tabs button[aria-selected="true"] { background: var(--violet); color: #fff; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field.row2 { grid-template-columns: 1fr; } }
.field label, .field .lab {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--muted);
}
.field label .req { color: var(--violet-soft); }
.field input, .field select, .field textarea {
  background: #0c0c0c; border: 1px solid var(--hair); color: var(--text);
  font-family: var(--font-sans); font-size: 15px; padding: 12px 14px; width: 100%;
  transition: border-color .2s ease;
}
.field textarea { resize: vertical; min-height: 92px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); }
.field input[type="file"] { padding: 10px 14px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  background: transparent; border: 1px solid var(--hair); color: var(--muted);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; padding: 8px 12px;
  margin-right: 12px; cursor: pointer;
}
.field .hint { font-size: 12px; color: var(--dim); }

/* honeypot - visually and semantically hidden from humans, bait for bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.modal-actions { display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap; }
.modal-submit {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--violet); border: 1px solid var(--violet); color: #fff;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; padding: 14px 26px;
  transition: background .2s ease;
}
.modal-submit:hover { background: var(--violet-soft); }
.modal-submit[disabled] { opacity: .6; cursor: default; }
.modal-status { font-size: 13px; color: var(--muted); }
.modal-status.err { color: #ff8f8f; }
.modal-status.ok { color: var(--lime); }

/* success panel */
.modal-done { display: none; flex-direction: column; gap: 16px; padding: 8px 0; }
.modal-done.show { display: flex; }
.modal-done .big { font-weight: 800; font-size: clamp(24px, 3.6vw, 30px); letter-spacing: -.01em; }
.modal-done .big .lime { color: var(--lime); }
.modal-done p { color: var(--muted); font-size: 15px; line-height: 1.6; }

body.modal-open { overflow: hidden; }

/* ============================================================
   Sistema traido del prototipo aprobado
   ============================================================ */

/* Fondos fotograficos, muy tratados: la foto nunca compite con el texto */
.section.ground { position: relative; isolation: isolate; overflow: hidden; }
.section.ground > *:not(.ground-img) { position: relative; z-index: 1; }
.section.ground > .ground-img { position: absolute; inset: 0; z-index: 0; }
.ground-img {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center;
  opacity: .62; filter: saturate(.95) contrast(1.06);
  transform: scale(1.04);
  animation: groundDrift 26s ease-in-out infinite alternate;
}
.ground-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(12,12,12,.30) 26%, rgba(12,12,12,.42) 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12,12,12,.88) 0%, rgba(12,12,12,.58) 38%, transparent 72%),
    radial-gradient(110% 85% at 82% 16%, rgba(102,102,255,.26), transparent 62%);
}
@keyframes groundDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.09) translate3d(0,-1.2%,0); }
}

/* Bloque editorial a dos columnas */
.leadgrid { display: grid; grid-template-columns: 1fr; gap: clamp(24px,3.2vw,38px); }
@media (min-width: 900px) { .leadgrid { grid-template-columns: 1.25fr .75fr; gap: clamp(40px,5vw,80px); align-items: end; } }
.leadgrid .thesis-lead { max-width: none; }
.leadside { display: flex; flex-direction: column; gap: clamp(20px,3vh,34px); align-items: flex-start; padding-bottom: 6px; }
.leadside p { max-width: 38ch; }

/* Handoff: el hilo conductor entre paginas */
.handoff {
  margin-top: clamp(36px,5vh,64px); border-top: 1px solid var(--hair); padding-top: 26px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.handoff .nxt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--dim); }

/* Iconos de tarjeta */
.cicon { width: 30px; height: 30px; color: var(--violet-soft); flex-shrink: 0; }
.cicon svg { width: 100%; height: 100%; display: block; }
.edge .top { display: flex; align-items: center; gap: 13px; margin-bottom: 2px; }
.edge .top .idx { font-family: var(--font-mono); font-size: 12px; color: var(--dim); letter-spacing: .1em; }

/* Credenciales del socio */
.member .cmarks { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; min-height: 34px; }
.member .cmark {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--hair); border-radius: 2px; padding: 7px 12px; background: var(--panel);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .13em; color: var(--muted);
  transition: border-color .25s, color .25s;
}
.member .cmark:hover { border-color: var(--violet); color: var(--text); }
.member .cmark img { height: 20px; width: auto; display: block; }
.member .cmark img.wide { height: 22px; }
.member .cmark.ghost { visibility: hidden; }

/* Tarjetas de procedencia */
.creds { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(30px,4vw,44px); }
@media (min-width: 820px) { .creds { grid-template-columns: 1fr 1fr; } }
.cred {
  background: var(--panel); border: 1px solid var(--hair); border-radius: 6px; padding: 26px 24px;
  display: flex; flex-direction: column; gap: 9px; transition: border-color .3s, transform .3s;
}
.cred:hover { border-color: var(--violet); transform: translateY(-3px); }
.cred .clogo { display: flex; align-items: center; height: 48px; margin-bottom: 6px; }
.cred .clogo img { height: 44px; width: auto; display: block; }
.cred .clogo img.wide { height: 34px; }
.cred .cl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--dim); }
.cred .cn { font-weight: 700; font-size: clamp(21px,2.8vw,25px); letter-spacing: -.01em; }
.cred .cd { font-size: 16px; line-height: 1.62; color: var(--muted); }

/* Banda de CTA del home */
.ctaband { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(30px,4vw,44px); }
.ctaband .btn.ghost { border-color: var(--hair); color: var(--muted); }
.ctaband .btn.ghost:hover { border-color: var(--violet); background: transparent; color: var(--text); }

/* Canales de contacto con jerarquia */
.channel .chtitle { font-weight: 700; font-size: clamp(21px,2.8vw,26px); letter-spacing: -.01em; margin-top: 2px; }

/* Icono de LinkedIn en el footer */
.foot-meta .li-icon { width: 17px; height: 17px; display: block; }
.foot-meta a { display: inline-flex; align-items: center; }
.foot-meta a:hover .li-icon { fill: var(--text); }

@media (prefers-reduced-motion: reduce) { .ground-img { animation: none; } }

/* ---- Operating-group card (Team / origin) ---- */
.gcard {
  display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(34px, 4.5vw, 52px);
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(140deg, rgba(102,102,255,.09), rgba(255,255,255,.012));
}
@media (min-width: 820px) { .gcard { grid-template-columns: minmax(0,.34fr) minmax(0,1fr); align-items: start; } }
.gcard .lgwrap { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.gcard .glogo { height: 35px; width: auto; display: block; }
.gcard .gsub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim);
}
.gcard .gsub a { color: var(--violet-soft); text-decoration: none; }
.gcard .gsub a:hover { color: var(--text); }
.gcard h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 16px;
}
.gcard .pts { display: grid; gap: 12px; }
.gcard .pts > div {
  font-size: 16px; line-height: 1.62; color: var(--muted);
  padding-left: 16px; border-left: 1px solid var(--line);
}
.gcard .pts b { color: var(--text); font-weight: 600; }

/* ---- Method: pipeline, sourcing scan, AI layers ---- */
:root { --panel-2: #0f0f14; }

.edge {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--hair); padding-top: 26px;
  transition: border-color .3s, transform .3s;
}
.edge:hover { border-top-color: var(--violet); transform: translateY(-4px); }
.edge h3 { font-weight: 700; font-size: clamp(21px, 2.7vw, 25px); }
.edge p { color: var(--muted); font-size: 17px; line-height: 1.66; }

.pipe {
  background: var(--panel-2); border: 1px solid var(--hair); border-radius: 8px;
  padding: clamp(22px, 2.8vw, 34px); overflow-x: auto;
}
.pipe .track { display: flex; gap: 13px; min-width: 700px; }
.stage {
  flex: 1; border: 1px solid var(--hair); border-radius: 6px; padding: 20px 18px;
  display: flex; flex-direction: column; gap: 9px; opacity: .48;
  transition: opacity .4s, border-color .4s, background .4s, transform .4s;
}
.stage .cap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--dim); transition: color .4s; }
.stage .t { font-weight: 700; font-size: 16px; }
.stage .d { font-size: 13px; color: var(--dim); line-height: 1.5; }
.stage .badge { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--dim); margin-top: auto; padding-top: 8px; }
.stage.active { opacity: 1; border-color: var(--violet); background: var(--row-hover); transform: translateY(-3px); }
.stage.active .cap { color: var(--violet-soft); }
.caption {
  margin-top: 20px; min-height: 62px; display: flex; gap: 15px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--hair); border-radius: 6px; padding: 17px 19px;
}
.caption .step { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--violet-soft); white-space: nowrap; padding-top: 3px; }
.caption .txt { font-size: 15.5px; color: var(--text); line-height: 1.5; transition: opacity .3s; }
.caption .txt b { color: var(--violet-soft); font-weight: 600; }
.dots { display: flex; gap: 7px; margin-top: 15px; }
.dots i { width: 24px; height: 3px; background: var(--hair); border-radius: 2px; transition: background .4s; }
.dots i.on { background: var(--violet); }

.ai-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
@media (min-width: 980px) { .ai-wrap { grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); } }
.scan {
  background: var(--panel-2); border: 1px solid var(--hair); border-radius: 8px;
  padding: 20px; display: flex; flex-direction: column; gap: 13px;
}
.scanhead { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.scanhead .live { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--violet-soft); display: flex; align-items: center; gap: 7px; }
.blip { width: 7px; height: 7px; border-radius: 50%; background: var(--violet-soft); animation: blip 1.5s ease-in-out infinite; }
.scanhead .cap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; color: var(--dim); }
.rows { display: flex; flex-direction: column; gap: 7px; }
.srow {
  display: grid; grid-template-columns: 74px 1fr auto; gap: 11px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--hair); border-radius: 5px; opacity: .5;
  transition: opacity .35s, border-color .35s, background .35s;
}
.srow.scanning { opacity: .85; border-color: var(--dim); }
.srow.hot { opacity: 1; border-color: var(--violet); background: var(--row-hover); }
.srow .tag { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; color: var(--muted); }
.srow.hot .tag { color: var(--violet-soft); }
.srow .co { font-size: 13px; }
.srow .co small { display: block; color: var(--dim); font-size: 11.5px; }
.srow .meta { display: flex; align-items: center; gap: 9px; justify-self: end; }
.srow .bar { width: 54px; height: 4px; background: var(--hair); border-radius: 3px; overflow: hidden; }
.srow .bar i { display: block; height: 100%; background: var(--violet-soft); width: 0; transition: width .7s ease; }
.srow .surf { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--violet-soft); opacity: 0; transition: opacity .3s; white-space: nowrap; }
.srow.hot .surf { opacity: 1; }

.layers { display: flex; flex-direction: column; }
.layer { display: flex; gap: 17px; padding: 17px 0; border-top: 1px solid var(--hair); }
.layer:first-child { border-top: none; }
.layer h4 { font-weight: 700; font-size: 18px; margin-bottom: 5px; }
.layer p { color: var(--muted); font-size: 15.5px; line-height: 1.58; max-width: 46ch; }
.layer .licon { width: 26px; height: 26px; color: var(--violet-soft); flex-shrink: 0; }
.layer .licon svg { width: 100%; height: 100%; display: block; }

.anchor { margin-top: 24px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .05em; color: var(--dim); max-width: 66ch; }

@keyframes blip { 0%, 100% { opacity: .3 } 50% { opacity: 1 } }
@media (prefers-reduced-motion: reduce) { .blip { animation: none } }

/* El fondo fotografico queda fuera de la cascada de reveal:
   si no, ".js .reveal > *" lo apaga y ".js .reveal.in > *" lo lleva a opacidad 1. */
.js .reveal > .ground-img,
.js .reveal.in > .ground-img {
  opacity: .62; transform: scale(1.04); transition: none;
}

/* Con .section en flex column, un hijo inline-flex se estira a todo el ancho:
   el subrayado del CTA cruzaba la pantalla entera. */
.section > .teaser-cta,
.section > .btn,
.section > .linkcta,
.section > .textlink { align-self: flex-start; }

/* Los margenes no colapsan dentro de un flex container: el margin-bottom de
   .team-head se sumaba al margin-top del parrafo siguiente (116px de hueco). */
.team-head + * { margin-top: 0; }
