/* ============================================================
   BEST JUMP — by Reyes & Pineda
   Design tokens
   ============================================================ */

:root{
  --navy-950: #0A121D;
  --navy-900: #0E1B2B;
  --navy-800: #16283D;
  --navy-700: #1F3A56;
  --paper: #F5F1E8;
  --paper-2: #EDE7D8;
  --ink: #10151D;
  --muted: #5B6470;
  --muted-on-dark: #9AA7B5;
  --orange: #F26A21;
  --orange-2: #FF8A3D;
  --line-dark: rgba(245,241,232,0.14);
  --line-light: rgba(16,21,29,0.14);

  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--orange);
}

/* ---------- Lane-line rule (signature motif) ----------
   A horizontal rule with small tick marks, evoking a
   running-track lane line / timing strip. Used as the
   recurring structural device across the site. */
.lane-rule{
  position: relative;
  height: 1px;
  background: var(--line-light);
  width: 100%;
}
.lane-rule.on-dark{ background: var(--line-dark); }
.lane-rule::after{
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand img{ height: 52px; width: auto; }
.brand{ display: flex; align-items: center; }

.main-nav ul{ display: flex; align-items: center; gap: 36px; }
.main-nav a{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active{ opacity: 1; color: var(--orange-2); }
.main-nav a.active::after{
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
}

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--navy-950);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover{ background: var(--orange-2); transform: translateY(-1px); }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}

@media (max-width: 880px){
  .main-nav{
    position: fixed;
    inset: 96px 0 0 0;
    background: var(--navy-950);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    padding: 30px 28px;
    overflow-y: auto;
  }
  .main-nav.open{ transform: translateY(0); }
  .main-nav ul{ flex-direction: column; align-items: flex-start; gap: 22px; }
  .main-nav a{ font-size: 20px; }
  .nav-toggle{ display: flex; }
  .nav-cta.desktop-only{ display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
}
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.55;
}
@media (max-width: 600px){
  .hero{ min-height: 74vh; }
  .hero-media img{ object-position: center 22%; }
}
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,29,0.35) 0%, rgba(10,18,29,0.55) 45%, rgba(10,18,29,0.96) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 28px 64px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-kicker{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero h1{
  font-family: var(--display);
  font-weight: 800;
  font-stretch: condensed;
  font-size: clamp(36px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 26px;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero h1 em{
  font-style: normal;
  color: var(--orange);
}
.hero-sub{
  color: var(--muted-on-dark);
  font-size: 18px;
  max-width: 46ch;
  line-height: 1.55;
  margin: 0 0 34px;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  border: 1px solid transparent;
}
.btn-primary{ background: var(--orange); color: var(--navy-950); }
.btn-primary:hover{ background: var(--orange-2); transform: translateY(-2px); }
.btn-outline{ border-color: var(--line-dark); color: var(--paper); }
.btn-outline:hover{ border-color: var(--orange-2); color: var(--orange-2); transform: translateY(-2px); }
.btn-outline.on-light{ border-color: var(--line-light); color: var(--ink); }
.btn-outline.on-light:hover{ border-color: var(--orange); color: var(--orange); }

/* ============================================================
   Sections — generic
   ============================================================ */
section{ position: relative; }
.section{ padding: 76px 0; }
.section-sm{ padding: 48px 0; }
.on-dark{ background: var(--navy-950); color: var(--paper); }
.on-navy{ background: var(--navy-900); color: var(--paper); }

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.005em;
  margin: 10px 0 0;
  max-width: 14ch;
}
.section-head p{
  max-width: 40ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.on-dark .section-head p, .on-navy .section-head p{ color: var(--muted-on-dark); }

/* ============================================================
   Intro statement
   ============================================================ */
.intro-statement{
  padding: 64px 0 40px;
}
.intro-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-graphic{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-900);
}
.intro-graphic svg{ width: 100%; height: 100%; display: block; }
.intro-graphic-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
}
.intro-grid .intro-graphic-caption p{
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.2;
  max-width: 20ch;
  margin: 8px 0 0;
}
.intro-statement .lane-rule{ margin-bottom: 30px; }
.intro-statement p{
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.18;
  max-width: 20ch;
  color: var(--ink);
}
.intro-statement p .accent{ color: var(--orange); }
.intro-statement .byline{
  margin-top: 30px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  max-width: 60ch;
}

@media (max-width: 860px){
  .intro-grid{ grid-template-columns: 1fr; gap: 32px; }
  .intro-graphic{ order: -1; aspect-ratio: 16/10; }
}

/* ============================================================
   Benefits — scroll-reveal (signature moment: strength for everyone)
   ============================================================ */
.benefits-section{ padding-top: 20px; }
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 8px;
}
.benefit-item{ text-align: left; }
.benefit-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(242,106,33,0.10);
  border: 1.5px solid rgba(242,106,33,0.3);
  color: var(--orange);
  margin-bottom: 22px;
}
.benefit-icon svg{ width: 34px; height: 34px; }
.benefit-item h3{
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}
.benefit-item p{
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
/* staggered reveal delays */
.benefits-grid .benefit-item:nth-child(1){ transition-delay: 0s; }
.benefits-grid .benefit-item:nth-child(2){ transition-delay: 0.12s; }
.benefits-grid .benefit-item:nth-child(3){ transition-delay: 0.24s; }
.benefits-grid .benefit-item:nth-child(4){ transition-delay: 0.36s; }

@media (max-width: 860px){
  .benefits-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px){
  .benefits-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   App Best Jump
   ============================================================ */
.app-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.app-text h2{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 0.98;
  margin: 12px 0 18px;
  max-width: 14ch;
}
.app-lead{
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 26px;
}
.app-checklist{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
}
.app-checklist li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.app-checklist .check-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(242,106,33,0.12);
  color: var(--orange);
  flex-shrink: 0;
}
.app-phone-stack{
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px 0 20px 50px;
}
.phone-frame{
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #0E1B2B;
  background: #0E1B2B;
  box-shadow: 0 24px 50px rgba(10,18,29,0.28);
}
.phone-frame img{ width: 100%; display: block; }
.phone-frame-back{
  position: absolute;
  top: 0; left: 0;
  width: 62%;
  transform: rotate(-6deg);
  opacity: 0.92;
  z-index: 1;
}
.phone-frame-front{
  position: relative;
  width: 82%;
  margin-left: auto;
  z-index: 2;
}

@media (max-width: 900px){
  .app-grid{ grid-template-columns: 1fr; gap: 40px; }
  .app-phone-stack{ order: -1; max-width: 280px; padding: 16px 0 16px 40px; }
}

/* ============================================================
   Services grid (home teaser + services page)
   ============================================================ */
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}
.service-card{
  padding: 40px 26px 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: background 0.25s ease;
}
.service-card:hover{ background: var(--paper-2); }
.service-card:last-child{ border-right: none; }
.service-num{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 26px;
}
.service-card h3{
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05;
  margin: 0 0 12px;
}
.service-card p{
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
}
.service-card .coach{
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin-bottom: 14px;
}
.service-card .card-link{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .card-link svg{ transition: transform 0.2s ease; }
.service-card:hover .card-link svg{ transform: translateX(4px); }

@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n){ border-right: none; }
}
@media (max-width: 560px){
  .services-grid{ grid-template-columns: 1fr; }
  .service-card{ border-right: none !important; }
}

/* ============================================================
   Timing / results board (signature element)
   ============================================================ */
.board{
  border-top: 1px solid var(--line-dark);
}
.board-row{
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.board-row .tag{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-2);
}
.board-row .desc{
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.01em;
  color: var(--paper);
}
.board-row .desc span{
  display: block;
  font-family: var(--mono);
  text-transform: none;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted-on-dark);
  margin-top: 6px;
  letter-spacing: 0;
}
.board-row .mark{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-on-dark);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 700px){
  .board-row{ grid-template-columns: 1fr; gap: 8px; }
  .board-row .mark{ text-align: left; }
}

/* ============================================================
   Feature photo — single large image (replaces multi-photo strip)
   ============================================================ */
.feature-photo{
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--navy-950);
}
.feature-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.feature-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,18,29,0.75) 0%, rgba(10,18,29,0.05) 45%);
}
.feature-photo-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  z-index: 2;
}
.feature-photo-caption p{
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.15;
  max-width: 22ch;
  margin: 10px 0 0;
}
@media (max-width: 700px){
  .feature-photo{ aspect-ratio: 4/5; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{
  background: var(--orange);
  color: var(--navy-950);
  padding: 56px 0;
}
.cta-band .cta-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 0.98;
  margin: 0;
  max-width: 14ch;
}
.cta-band .cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-primary{ background: var(--navy-950); color: var(--paper); }
.cta-band .btn-primary:hover{ background: var(--navy-800); }
.cta-band .btn-outline{ border-color: rgba(10,18,29,0.4); color: var(--navy-950); }
.cta-band .btn-outline:hover{ border-color: var(--navy-950); background: rgba(10,18,29,0.08); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{
  background: var(--navy-950);
  color: var(--muted-on-dark);
  padding: 64px 0 30px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img{ height: 44px; margin-bottom: 18px; }
.footer-brand p{ font-size: 14px; line-height: 1.6; max-width: 34ch; }
.footer-col h4{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{
  font-size: 14.5px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-col a svg{ flex-shrink: 0; opacity: 0.65; transition: opacity 0.2s ease; }
.footer-col a:hover svg{ opacity: 1; }
.footer-col a:hover{ color: var(--orange-2); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 780px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ============================================================
   Page hero (sub-pages: servicios / nosotros / contacto)
   ============================================================ */
.page-hero{
  background: var(--navy-950);
  color: var(--paper);
  padding: 128px 0 48px;
  position: relative;
}
.page-hero h1{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  margin: 16px 0 20px;
}
.page-hero p{
  color: var(--muted-on-dark);
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.6;
}

/* ============================================================
   Service detail blocks
   ============================================================ */
.service-detail{
  padding: 60px 0;
  border-bottom: 1px solid var(--line-light);
}
.service-detail .grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.service-detail.reverse .grid{ direction: rtl; }
.service-detail.reverse .grid > *{ direction: ltr; }
.service-detail .photo{
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-900);
}
.service-detail .photo img{ width: 100%; height: 100%; object-fit: cover; }
.service-detail .coach-tag{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.service-detail h3{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 0.98;
  margin: 0 0 22px;
}
.service-detail p.desc{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 46ch;
}
.service-detail .points{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
}
.service-detail .points li{
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink);
}
.service-detail .points li::before{
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  transform: translateY(-2px);
  flex-shrink: 0;
}

@media (max-width: 860px){
  .service-detail .grid{ grid-template-columns: 1fr; gap: 34px; }
  .service-detail.reverse .grid{ direction: ltr; }
  .service-detail{ padding: 60px 0; }
}

/* ============================================================
   Bio blocks (Nosotros)
   ============================================================ */
.bio-block{
  padding: 60px 0;
  border-bottom: 1px solid var(--line-light);
}
.bio-block .grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.bio-block.reverse .grid{ grid-template-columns: 1.15fr 0.85fr; }
.bio-block.reverse .photo{ order: 2; }
.bio-block .photo{
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy-900);
  position: sticky;
  top: 110px;
}
.bio-block .photo img{ width: 100%; height: 100%; object-fit: cover; }
.bio-block .role{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}
.bio-block h3{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.96;
  margin: 0 0 26px;
}
.bio-block p{
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.85;
  margin: 0 0 18px;
  max-width: 58ch;
}
.bio-block .credentials{
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bio-block .credentials li{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
}
.bio-block .credentials li::before{ content: "—"; color: var(--orange); }
.bio-block .edit-note{
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  background: rgba(242,106,33,0.08);
  border: 1px dashed rgba(242,106,33,0.4);
  padding: 12px 14px;
  line-height: 1.6;
}

@media (max-width: 860px){
  .bio-block .grid, .bio-block.reverse .grid{ grid-template-columns: 1fr; gap: 30px; }
  .bio-block.reverse .photo{ order: 0; }
  .bio-block .photo{ position: static; aspect-ratio: 4/3; }
}

/* ============================================================
   Contact cards
   ============================================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.contact-card{
  background: var(--paper);
  padding: 54px 44px;
  display: flex;
  flex-direction: column;
}
.contact-card .role{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.contact-card h3{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 10px;
}
.contact-card .spec{
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 30px;
}
.contact-card .contact-links{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}
.contact-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-link:hover{ border-color: var(--orange); background: var(--paper-2); }
.contact-link .label{ opacity: 0.55; text-transform: uppercase; font-size: 11px; }
.contact-link .value{ font-weight: 600; }

@media (max-width: 780px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   Scroll cue (hero)
   ============================================================ */
.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(245,241,232,0.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.scroll-cue span{
  width: 3px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 7px;
  animation: cue-drop 1.6s ease-in-out infinite;
}
@keyframes cue-drop{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(12px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}

/* ============================================================
   Marquee — moving brand strip
   ============================================================ */
.marquee{
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track{
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--navy-950);
  padding-right: 8px;
}
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
  .scroll-cue span{ animation: none; }
}

/* ============================================================
   Stats counters
   ============================================================ */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.stat{ display: flex; flex-direction: column; gap: 8px; }
.stat-num{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--orange);
}
.stat-label{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted-on-dark);
  max-width: 26ch;
}
@media (max-width: 700px){
  .stats-grid{ grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   Scroll progress bar (track metaphor)
   ============================================================ */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange);
  z-index: 200;
  transition: width 0.08s linear;
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float{
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn{
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(10,18,29,0.35);
  transition: transform 0.15s ease, background 0.2s ease;
}
.wa-btn:hover{ transform: translateY(-2px); background: var(--orange-2); }
.wa-options{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-float.open .wa-options{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-chip{
  background: var(--navy-950);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(10,18,29,0.3);
  transition: background 0.2s ease;
  white-space: nowrap;
}
.wa-chip:hover{ background: var(--navy-800); }

/* ============================================================
   Header scrolled + hero zoom + anchor offset
   ============================================================ */
.site-header{ transition: box-shadow 0.25s ease; }
.site-header.scrolled{ box-shadow: 0 8px 30px rgba(0,0,0,0.4); }

@keyframes hero-zoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.06); }
}
.hero-media img{
  animation: hero-zoom 18s ease-out forwards;
  transform-origin: center 30%;
}
@media (prefers-reduced-motion: reduce){
  .hero-media img{ animation: none; }
}

[id]{ scroll-margin-top: 112px; }

/* ============================================================
   Action duo — competition photos side by side
   ============================================================ */
.action-duo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.board-photo{
  margin: 0;
  overflow: hidden;
  position: relative;
}
.board-photo img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.board-photo figcaption{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.board-photo figcaption::before{
  content: "";
  width: 7px; height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.action-duo .board-photo:nth-child(2){ transition-delay: 0.15s; }
@media (max-width: 700px){
  .action-duo{ grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
}

/* ============================================================
   Utility
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in{ opacity: 1; transform: translateY(0); }

.mt-0{ margin-top: 0; }

/* ============================================================
   App Best Jump — showcase oscuro + planes
   ============================================================ */
.app-section{
  background: var(--navy-950);
  color: var(--paper);
}
.app-section .app-lead{ color: var(--muted-on-dark); }
.app-section .app-checklist li{ color: var(--paper); }
.app-section .check-icon{ background: rgba(242,106,33,0.18); }
.app-section .phone-frame{
  border-color: var(--navy-800);
  box-shadow: 0 28px 60px rgba(0,0,0,0.5);
}

/* ---------- Planes ---------- */
.plans-block{ margin-top: 70px; }
.plans-block .lane-rule{ margin-bottom: 40px; }
.plans-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.plans-head h3{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  margin: 0;
}
.plans-note{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted-on-dark);
  margin: 0;
}
.plans-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan-card{
  background: var(--navy-900);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover{ transform: translateY(-4px); border-color: rgba(242,106,33,0.55); }
.plan-card.featured{ border-color: var(--orange); }
.plan-tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.plan-name{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 27px;
  letter-spacing: 0.01em;
  margin: 0;
}
.plan-price{
  font-family: var(--display);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  margin: 14px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan-per{
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.plan-price.plan-price-custom{ font-size: 34px; padding-top: 8px; }
.plan-points{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.plan-points li{
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-on-dark);
}
.plan-points li::before{
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 1px;
  transform: rotate(45deg) translateY(-1px);
}
.plan-card .btn{
  margin-top: auto;
  justify-content: center;
  text-align: center;
}
.plans-grid .plan-card:nth-child(1){ transition-delay: 0s; }
.plans-grid .plan-card:nth-child(2){ transition-delay: 0.1s; }
.plans-grid .plan-card:nth-child(3){ transition-delay: 0.2s; }
.plan-card.reveal{ transition-property: opacity, transform, border-color; }
.plans-help{
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-on-dark);
  margin: 26px 0 0;
}
.plans-help a{ color: var(--paper); border-bottom: 1px solid var(--orange); }
.plans-help a:hover{ color: var(--orange-2); }

@media (max-width: 900px){
  .plans-grid{ grid-template-columns: 1fr; }
  .plans-block{ margin-top: 54px; }
}

/* ---------- Ubicaciones por servicio ---------- */
.service-locations{
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin: -12px 0 28px;
}
.service-locations svg{
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--orange);
}

/* ---------- Video: app en acción ---------- */
.app-video-block{ margin-top: 60px; }
.app-video-block .lane-rule{ margin-bottom: 36px; }
.video-head{ margin: 0 0 24px; }
.video-head .eyebrow{ margin-bottom: 10px; }
.video-head h3{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1;
  margin: 0;
}
.video-frame{
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.video-frame iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-poster{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: filter 0.25s ease;
}
.video-frame:hover .video-poster{ filter: brightness(0.6); }
.video-play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-play:hover{ background: var(--orange-2); transform: translate(-50%,-50%) scale(1.06); }
.video-play svg{ margin-left: 4px; }

@media (max-width: 560px){
  .video-play{ width: 58px; height: 58px; }
}
