/* ===== Tokens (manual de marca) ===== */
:root {
  --red: #e90006;
  --red-dark: #7a0c0c;
  --orange: #f49619;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --gray: #dbdcdd;
  --ink: #1e1e1a;
  --ink-soft: #26261f;
  --ink-line: rgba(255, 255, 255, 0.1);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Display headings ===== */
.section__title,
.hero__title,
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--orange); }

/* ===== Logo ===== */
.logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--white);
}
.logo__word { letter-spacing: 0.5px; }
.logo__tag {
  display: inline-flex; align-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 14px;
  padding: 2px 12px 4px;
}
.logo__dollar { color: var(--white); margin-right: 1px; }
.logo--footer { font-size: 2rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: #ff1a20; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(30, 30, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-weight: 600; font-size: 0.95rem; color: var(--gray);
  position: relative; transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width 0.25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; margin-left: auto; padding: 6px; }
.nav__burger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: 0.25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px; border-top: 1px solid var(--ink-line); background: var(--ink); }
.nav__mobile a { padding: 12px 0; font-weight: 600; color: var(--gray); }
.nav__mobile .btn { margin-top: 10px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(233,0,6,0.55) 0%, rgba(233,0,6,0) 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(122,12,12,0.4) 0%, rgba(122,12,12,0) 60%),
    var(--ink);
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__kicker {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray); font-size: 0.9rem; margin-bottom: 20px;
}
.hero__title { font-size: clamp(2.8rem, 8vw, 6.2rem); margin-bottom: 28px; }
.hero__title .hl { color: var(--red); }
.hero__lead { max-width: 620px; font-size: 1.18rem; color: var(--gray); margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 48px; }
.hero__stats dt { font-family: var(--font-display); font-size: 3rem; color: var(--white); line-height: 1; }
.hero__stats dd { color: var(--gray); font-size: 0.95rem; max-width: 160px; margin-top: 6px; }

/* ===== Ticker ===== */
.ticker {
  background: var(--red); color: var(--white); overflow: hidden;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: 14px 0;
}
.ticker__track {
  display: flex; align-items: center; gap: 24px; white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: 1.1rem;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker .dot { opacity: 0.7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section__header { max-width: 720px; margin-bottom: 56px; }
.section__title { font-size: clamp(2.4rem, 6vw, 4.4rem); color: var(--white); }
.section__sub { margin-top: 22px; color: var(--gray); font-size: 1.1rem; max-width: 560px; }

/* About */
.section--about { background: var(--ink-soft); border-top: 1px solid var(--ink-line); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about__head .section__title { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.about__body p { font-size: 1.15rem; color: var(--gray); margin-bottom: 22px; }
.about__punch { font-size: 1.3rem !important; color: var(--off-white) !important; }
.about__punch strong { color: var(--red); }

/* Content cards */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  padding: 40px 34px 38px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(233,0,6,0.5); }
.card:hover::before { transform: scaleY(1); }
.card__num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--red); display: block; margin-bottom: 12px;
}
.card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; color: var(--white); margin-bottom: 12px; letter-spacing: 0.5px; }
.card p { color: var(--gray); font-size: 1.02rem; }

/* Money Moicano feature */
.section--mma-feature {
  position: relative; overflow: hidden;
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(233,0,6,0.5), rgba(233,0,6,0) 55%),
    linear-gradient(180deg, var(--ink), #161613);
  border-top: 1px solid var(--ink-line);
}
.mma-feature__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mma-feature__lead { color: var(--gray); font-size: 1.15rem; margin: 22px 0 32px; max-width: 440px; }
.mma-feature__art {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px;
  border: 1px solid var(--ink-line);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--red-dark), var(--ink));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mma-feature__badge {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); font-size: clamp(1.4rem, 3vw, 2.4rem); text-align: center;
  padding: 0 24px; line-height: 1; opacity: 0.85;
}

/* Team - vitrine */
.section--team { background: var(--ink-soft); border-top: 1px solid var(--ink-line); }
.showcase { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.vitrine {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  display: flex; flex-direction: column;
}
.vitrine:hover { transform: translateY(-6px); border-color: rgba(233,0,6,0.5); }
.vitrine__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--red-dark), var(--ink));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vitrine__photo::before {
  content: attr(data-initials);
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: rgba(255,255,255,0.14);
  position: absolute;
}
.vitrine__photo span {
  position: relative;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  padding: 5px 12px; border-radius: 30px;
}
.vitrine__plate {
  padding: 14px 12px 18px;
  border-top: 3px solid var(--red);
  text-align: center;
}
.vitrine__tag {
  display: inline-block;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: 0.68rem; color: var(--ink);
  background: var(--orange); padding: 3px 12px; border-radius: 20px; margin-bottom: 10px;
}
.vitrine__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; color: var(--white); letter-spacing: 0.5px; line-height: 1.05; }
.vitrine__role { color: var(--red); font-weight: 600; font-size: 0.82rem; margin-top: 6px; }

/* CTA */
.section--cta {
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(233,0,6,0.5) 0%, rgba(233,0,6,0) 60%),
    var(--ink);
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta__title { font-size: clamp(2.6rem, 7vw, 5rem); color: var(--white); margin-bottom: 24px; }
.cta__lead { color: var(--gray); font-size: 1.18rem; margin-bottom: 36px; }

/* Footer */
.footer { background: #161613; border-top: 1px solid var(--ink-line); padding: 56px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: start; }
.footer__tagline { color: var(--gray); margin-top: 14px; max-width: 320px; font-size: 0.95rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { color: var(--gray); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--white); }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--ink-line); color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ===== Hero split + video ===== */
.hero__inner--split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.hero__inner--split .hero__lead { margin-bottom: 28px; }
.hero__video-cap { color: var(--gray); font-size: 0.88rem; margin-top: 12px; }

.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--ink-line);
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== Videos section ===== */
.section--videos { background: var(--ink); border-top: 1px solid var(--ink-line); }
.videos__layout { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; align-items: stretch; }
.videos__side {
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; justify-content: center;
}
.videos__side h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.videos__side p { color: var(--gray); margin-bottom: 22px; }
.videos__side .btn { align-self: flex-start; }

/* ===== Card link ===== */
.card__link {
  display: inline-block; margin-top: 16px; font-weight: 700; color: var(--red);
  font-size: 0.95rem; border-bottom: 2px solid transparent; transition: border-color 0.2s;
}
.card__link:hover { border-color: var(--red); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* ===== Shop teaser (home) ===== */
.section--shop-teaser { background: var(--ink); border-top: 1px solid var(--ink-line); }
.shop-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.shop-teaser__lead { color: var(--gray); font-size: 1.15rem; margin: 22px 0 32px; max-width: 420px; }
.shop-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product-thumb, .product__media, .fighter__avatar {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--red-dark), var(--ink));
}
.product-thumb {
  aspect-ratio: 1; border-radius: 12px; border: 1px solid var(--ink-line);
  position: relative; display: flex; align-items: flex-end; padding: 14px;
}
.product-thumb::after {
  content: attr(data-label);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.55); font-size: 0.95rem;
}

/* ===== Page hero (subpáginas) ===== */
.page-hero { position: relative; overflow: hidden; padding: 80px 0 64px; }
.page-hero--mma {
  background: radial-gradient(110% 90% at 90% 0%, rgba(233,0,6,0.55), rgba(233,0,6,0) 55%), var(--ink);
}
.page-hero--shop {
  background: radial-gradient(110% 90% at 10% 0%, rgba(244,150,25,0.35), rgba(244,150,25,0) 55%), var(--ink);
}
.page-hero__title { font-family: var(--font-display); text-transform: uppercase; line-height: 0.9; color: var(--white); font-size: clamp(3rem, 10vw, 7rem); margin-bottom: 24px; position: relative; }
.page-hero__lead { position: relative; max-width: 640px; color: var(--gray); font-size: 1.18rem; margin-bottom: 32px; }

/* ===== Fight card ===== */
.fightcard { display: flex; flex-direction: column; gap: 18px; }
.fight {
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 16px;
  padding: 28px 32px; position: relative;
}
.fight--main { border-color: rgba(233,0,6,0.5); background: linear-gradient(180deg, rgba(233,0,6,0.08), var(--ink-soft)); }
.fight__badge {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: 0.78rem; color: var(--white); background: var(--red); padding: 4px 14px; border-radius: 20px; margin-bottom: 20px;
}
.fight__badge--co { background: var(--orange); color: var(--ink); }
.fight__row { display: flex; align-items: center; justify-content: center; gap: 28px; }
.fighter { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; max-width: 200px; }
.fighter__avatar {
  width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.fighter__avatar::after {
  content: attr(data-initials); font-family: var(--font-display); font-size: 2rem; color: rgba(255,255,255,0.3);
}
.fighter__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--white); text-align: center; }
.fighter__record { color: var(--gray); font-size: 0.85rem; }
.fight__vs { font-family: var(--font-display); font-size: 2rem; color: var(--red); }
.fight__meta { text-align: center; color: var(--gray); font-size: 0.9rem; margin-top: 18px; }
.card__note { margin-top: 22px; color: rgba(255,255,255,0.4); font-size: 0.85rem; font-style: italic; }

.section--steps { background: var(--ink-soft); border-top: 1px solid var(--ink-line); }

/* ===== Results table ===== */
.section--results { background: var(--ink); border-top: 1px solid var(--ink-line); }
.results-table { border: 1px solid var(--ink-line); border-radius: 14px; overflow: hidden; }
.results-table__head, .results-table__row {
  display: grid; grid-template-columns: 0.6fr 2fr 1.2fr 1.2fr; gap: 16px; padding: 18px 24px; align-items: center;
}
.results-table__head {
  background: var(--ink-soft); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray); font-size: 0.9rem;
}
.results-table__row { border-top: 1px solid var(--ink-line); color: var(--gray); }
.results-table__row strong { color: var(--white); }

/* ===== Shop page ===== */
.section--shop { background: var(--ink); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s; display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); border-color: rgba(233,0,6,0.5); }
.product__media { aspect-ratio: 4 / 3; position: relative; display: flex; align-items: flex-end; padding: 16px; }
.product__media::after {
  content: attr(data-label); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.5); font-size: 1.1rem;
}
.product__flag {
  position: absolute; top: 14px; left: 14px; background: var(--orange); color: var(--ink);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; font-size: 0.72rem;
  padding: 4px 12px; border-radius: 20px;
}
.product__info { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.product__info h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
.product__desc { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.product__buy { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 28px; }
  .showcase { grid-template-columns: repeat(3, 1fr); }
  .hero__inner--split { grid-template-columns: 1fr; gap: 36px; }
  .videos__layout { grid-template-columns: 1fr; }
  .shop-teaser__inner { grid-template-columns: 1fr; gap: 36px; }
  .mma-feature__inner { grid-template-columns: 1fr; gap: 32px; }
  .shop-grid, .cards--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 56px; }
  .cards { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 28px; }
  .hero__stats dt { font-size: 2.4rem; }
  .logo { font-size: 1.45rem; }
  .shop-grid, .cards--3 { grid-template-columns: 1fr; }
  .fight__row { gap: 12px; }
  .fighter__avatar { width: 64px; height: 64px; }
  .fight__vs { font-size: 1.5rem; }
  .results-table__head { display: none; }
  .results-table__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .results-table__row span { display: flex; justify-content: space-between; gap: 12px; }
  .results-table__row span::before { content: attr(data-th); color: rgba(255,255,255,0.4); font-size: 0.8rem; text-transform: uppercase; }
}

/* ===== Ecosystem additions ===== */
.page-hero--fight {
  background:
    radial-gradient(90% 80% at 10% 0%, rgba(244,150,25,0.32), rgba(244,150,25,0) 55%),
    radial-gradient(110% 90% at 90% 10%, rgba(233,0,6,0.5), rgba(233,0,6,0) 55%),
    var(--ink);
}
.section--fight-feature {
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(244,150,25,0.32), rgba(244,150,25,0) 55%),
    radial-gradient(100% 120% at 100% 100%, rgba(233,0,6,0.4), rgba(233,0,6,0) 55%),
    linear-gradient(180deg, var(--ink), #161613);
}
.mma-feature__art--fight {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--orange), var(--red-dark));
}
.vitrine__tag--legend {
  background: var(--red); color: var(--white);
}
.showcase--3 { grid-template-columns: repeat(3, 1fr); }
.section__cta { display: flex; justify-content: center; margin-top: 36px; }

@media (max-width: 900px) {
  .showcase--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .showcase--3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
