  :root {
    --black: #000;
    --blue: #00d4ff;
    --blue-dim: #008fb3;
    --white: #fff;
    --gray-line: #1d1d1d;
    --gray-soft: #2a2a2a;
    --ease: cubic-bezier(.2,.8,.2,1);
    /* Mola (Guna textile) accent palette — used in Circuito Nacional */
    --mola-red: #b7382b;
    --mola-orange: #e2761e;
    --mola-gold: #e4b23c;
    --mola-teal: #11806a;
    --mola-cream: #efe3c8;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { background: var(--black); scroll-behavior: smooth; }
  body {
    font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-tap-highlight-color: rgba(0,212,255,.25);
  }
  /* Stop the page from scrolling sideways when a long element sneaks in */
  html, body { max-width: 100%; }

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

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

  /* All photographic media is treated B&W */
  .bw {
    filter: grayscale(100%) contrast(1.08) brightness(.92);
  }

  /* ===== NAV ===== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .3s var(--ease), border-color .3s var(--ease);
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled { background: rgba(0,0,0,.92); border-bottom-color: var(--gray-line); }

  .nav__brand {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: .14em;
    font-size: 14px;
  }
  .nav__brand span { color: var(--blue); }

  .nav__lang {
    display: inline-flex;
    border: 1px solid var(--gray-soft);
    border-radius: 2px;
    overflow: hidden;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 700;
  }
  .nav__lang button {
    background: transparent;
    color: var(--white);
    border: 0;
    padding: 10px 16px;
    min-height: 40px;
    min-width: 44px;
    touch-action: manipulation;
    transition: background .2s var(--ease), color .2s var(--ease);
  }
  .nav__lang button[aria-pressed="true"] { background: var(--blue); color: var(--black); }
  .nav__lang button:not([aria-pressed="true"]):hover { color: var(--blue); }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 140px 24px 120px;
    isolation: isolate;
  }

  /* Background photo, Ken-Burns zoom */
  .hero__bg {
    position: absolute; inset: 0;
    background-image: url('https://images.pexels.com/photos/24782482/pexels-photo-24782482.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: 50% 40%;
    filter: grayscale(100%) contrast(1.15) brightness(.6);
    transform: scale(1.08);
    animation: kenBurns 24s ease-in-out infinite alternate;
    z-index: 0;
  }
  @keyframes kenBurns {
    0%   { transform: scale(1.08) translate3d(0,0,0); }
    100% { transform: scale(1.18) translate3d(-1.5%, -1%, 0); }
  }

  /* Dark vignette */
  .hero__veil {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0,0,0,.25), rgba(0,0,0,.85) 80%),
      linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 35%, rgba(0,0,0,.85) 100%);
    z-index: 1;
  }

  /* Electric blue glow */
  .hero__glow {
    position: absolute;
    left: 50%; bottom: -10%;
    width: 80%; height: 80%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(0,212,255,.35), transparent 60%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
  }
  @keyframes pulseGlow {
    0%, 100% { opacity: .55; }
    50% { opacity: .95; }
  }

  /* Scanlines */
  .hero__scan {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,.025) 0,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 3px
    );
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
  }

  /* Halftone dot overlay */
  .hero__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,212,255,.18) 1px, transparent 1.5px);
    background-size: 6px 6px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 100%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 100%, black, transparent 70%);
    z-index: 2;
    pointer-events: none;
    opacity: .6;
  }

  /* Grid overlay */
  .hero__grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(0,212,255,.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,212,255,.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    z-index: 2;
    pointer-events: none;
    animation: gridDrift 22s linear infinite;
  }
  @keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 80px 80px, 80px 80px; }
  }

  .hero__inner { position: relative; z-index: 5; max-width: 1100px; }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .38em;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
  }
  .hero__eyebrow::before, .hero__eyebrow::after {
    content: ""; width: 38px; height: 1px; background: var(--blue);
  }

  .hero__logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 12vw, 184px);
    line-height: .88;
    letter-spacing: -.03em;
    margin: 0;
    color: var(--white);
    text-shadow: 0 0 60px rgba(0,212,255,.25), 0 4px 30px rgba(0,0,0,.7);
    opacity: 0;
  }
  .hero__logo .pulse {
    display: inline-block;
    animation: heroPulse 3.6s ease-in-out infinite;
  }
  @keyframes heroPulse {
    0%, 100% { text-shadow: 0 0 60px rgba(0,212,255,.3), 0 4px 30px rgba(0,0,0,.7); }
    50% { text-shadow: 0 0 100px rgba(0,212,255,.7), 0 0 24px rgba(0,212,255,.45), 0 4px 30px rgba(0,0,0,.7); }
  }

  .hero__sub {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--blue);
    font-size: clamp(18px, 2.6vw, 36px);
    letter-spacing: .22em;
    margin: 14px 0 0;
    opacity: 0;
  }

  .hero__tagline {
    font-size: clamp(16px, 1.8vw, 22px);
    color: rgba(255,255,255,.85);
    letter-spacing: .04em;
    margin: 28px auto 40px;
    max-width: 720px;
    opacity: 0;
  }

  /* CTA */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--blue);
    color: var(--black);
    padding: 18px 32px;
    min-height: 52px;
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid var(--blue);
    border-radius: 0;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .btn::after { content: "→"; transition: transform .25s var(--ease); }
  .btn:hover {
    background: var(--white);
    box-shadow: 0 0 0 1px var(--blue), 0 0 40px rgba(0,212,255,.55), 0 0 80px rgba(0,212,255,.25);
    transform: translateY(-2px);
  }
  .btn:hover::after { transform: translateX(6px); }
  .btn--ghost { background: transparent; color: var(--white); }
  .btn--ghost:hover { background: var(--blue); color: var(--black); }
  .hero__cta { opacity: 0; }

  /* Hero stat strip */
  .hero__strip {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 5;
    border-top: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.2));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 28px;
    font-size: 11px;
    letter-spacing: .25em;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    backdrop-filter: blur(4px);
  }
  .hero__strip > div { display: flex; gap: 10px; align-items: center; }
  .hero__strip strong {
    color: var(--blue);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .12em;
  }
  @media (max-width: 720px) {
    .hero__strip { grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 14px 20px; font-size: 10px; }
  }

  /* ===== TICKER / MARQUEE ===== */
  .ticker {
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
    background: #050505;
    overflow: hidden;
    position: relative;
  }
  .ticker__track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    padding: 26px 0;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
  }
  .ticker__track:hover { animation-play-state: paused; }
  .ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 56px);
    letter-spacing: -.01em;
    color: rgba(255,255,255,.12);
  }
  .ticker__item--blue { color: var(--blue); }
  .ticker__dot {
    width: 10px; height: 10px;
    background: var(--blue);
    transform: rotate(45deg);
    flex: 0 0 10px;
    box-shadow: 0 0 16px rgba(0,212,255,.7);
  }
  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ===== SECTIONS SCAFFOLD ===== */
  section { position: relative; padding: 130px 0; }

  .section__head {
    margin-bottom: 64px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .section__kicker {
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .section__kicker::before { content: ""; width: 28px; height: 1px; background: var(--blue); }
  .section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 6.2vw, 92px);
    line-height: .95;
    letter-spacing: -.025em;
    margin: 0;
  }
  .section__title em { font-style: normal; color: var(--blue); }
  .section__meta {
    font-size: 13px;
    letter-spacing: .12em;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    text-align: right;
  }

  /* ===== FIGHT CARD ===== */
  .card-event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--gray-line);
    border-left: 3px solid var(--blue);
    background: linear-gradient(to right, rgba(0,212,255,.05), transparent 60%);
    margin-bottom: 64px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .card-event strong { color: var(--blue); font-weight: 700; letter-spacing: .18em; }

  .bouts { display: flex; flex-direction: column; gap: 0; }

  .bout {
    display: grid;
    grid-template-columns: 60px 1fr 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 40px 8px;
    border-top: 1px solid var(--gray-line);
    position: relative;
    transition: background .35s var(--ease);
  }
  .bouts .bout:last-child { border-bottom: 1px solid var(--gray-line); }
  .bout::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    height: 1px; width: 0;
    background: var(--blue);
    transition: width .6s var(--ease);
  }
  .bout:hover { background: linear-gradient(to right, rgba(0,212,255,.04), transparent); }
  .bout:hover::after { width: 100%; }

  .bout__num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    color: var(--gray-soft);
    letter-spacing: -.04em;
    transition: color .3s var(--ease);
  }
  .bout:hover .bout__num { color: var(--blue); }

  .bout__pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    grid-column: 2 / 4;
  }

  .bout__corner {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .bout__corner--right { flex-direction: row-reverse; text-align: right; }

  .bout__avatar {
    flex: 0 0 84px;
    width: 84px; height: 84px;
    background-size: cover;
    background-position: 50% 28%;
    position: relative;
    overflow: hidden;
    filter: grayscale(100%) contrast(1.1) brightness(.85);
    transition: filter .3s var(--ease), transform .35s var(--ease);
    border: 1px solid var(--gray-soft);
  }
  .bout__avatar::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,212,255,.25), transparent 60%);
    opacity: 0;
    transition: opacity .35s var(--ease);
  }
  .bout:hover .bout__avatar {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.04);
  }
  .bout:hover .bout__avatar::after { opacity: 1; }

  .bout__corner-label {
    margin: 0 0 8px;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
  }
  .bout__name {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 2.3vw, 30px);
    letter-spacing: -.01em;
    line-height: 1;
    margin: 0 0 6px;
  }
  .bout__tag {
    margin: 0;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
  }

  .bout__vs {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--blue);
    letter-spacing: .04em;
    padding: 8px 14px;
    border: 1px solid var(--blue);
    background: rgba(0,212,255,.08);
    line-height: 1;
  }

  .bout__class {
    text-align: right;
    font-size: 11px;
    letter-spacing: .25em;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    line-height: 1.4;
    min-width: 140px;
  }
  .bout__class strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    margin-top: 4px;
    font-size: 13px;
  }

  /* ===== CHAMPIONS ===== */
  .champions { background: #050505; overflow: hidden; }
  .champions::before {
    content: "";
    position: absolute; right: -10%; top: 10%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(0,212,255,.12), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
  }
  .champ-grid {
    display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }

  .portrait {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #000;
    /* clip-path animation start state */
    clip-path: inset(0 100% 0 0);
  }
  .portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
    filter: grayscale(100%) contrast(1.1) brightness(.95);
    transition: transform 1.2s var(--ease);
  }
  .portrait:hover img { transform: scale(1.04); }
  .portrait::before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 35%, transparent 60%),
      linear-gradient(to right, rgba(0,212,255,.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
  }
  .portrait::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,.18) 0,
      rgba(0,0,0,.18) 1px,
      transparent 1px,
      transparent 4px
    );
    mix-blend-mode: multiply;
    z-index: 2;
    pointer-events: none;
  }
  .portrait__corner {
    position: absolute; width: 26px; height: 26px;
    border: 1px solid var(--blue);
    z-index: 3;
  }
  .portrait__corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
  .portrait__corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
  .portrait__corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
  .portrait__corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
  .portrait__badge {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 4;
    background: var(--blue);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .22em;
    padding: 8px 12px;
  }
  .portrait__name {
    position: absolute;
    bottom: 24px; right: 24px;
    z-index: 4;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .28em;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
  }

  .champ-bio h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 4.2vw, 58px);
    line-height: 1;
    letter-spacing: -.02em;
    margin: 0 0 10px;
  }
  .champ-bio__role {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: .24em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 28px;
  }
  .champ-bio p {
    color: rgba(255,255,255,.8);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 60ch;
  }
  .champ-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-line);
  }
  .champ-stat__num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.2vw, 44px);
    color: var(--blue);
    line-height: 1;
  }
  .champ-stat__num .suffix { color: var(--blue); }
  .champ-stat__label {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: 8px;
    display: block;
  }

  /* ===== CIRCUIT (National Circuit) ===== */
  .circuit { background: #050505; overflow: hidden; }
  .circuit::before {
    content: "";
    position: absolute;
    right: -15%; top: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(0,212,255,.09), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
  }
  .circuit__top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
    position: relative;
  }
  .circuit__intro p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
    max-width: 56ch;
  }
  .circuit__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-self: end;
  }
  .circuit__stat {
    border-left: 2px solid var(--blue);
    padding: 6px 0 6px 18px;
  }
  .circuit__stat-num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--white);
  }
  .circuit__stat-label {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    line-height: 1.4;
  }

  .circuit__phases-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    font-size: 11px;
    letter-spacing: .35em;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 700;
  }
  .circuit__phases-head::before, .circuit__phases-head::after {
    content: ""; height: 1px; background: rgba(0,212,255,.4); flex: 1;
  }

  .circuit__phases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    position: relative;
  }
  .phase {
    position: relative;
    padding: 30px 28px;
    background: #080808;
    border: 1px solid var(--gray-line);
    transition: border-color .3s var(--ease), transform .35s var(--ease), background .3s var(--ease);
    overflow: hidden;
  }
  .phase::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
  }
  .phase:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    background: #0a0a0a;
  }
  .phase:hover::before { transform: scaleX(1); }
  .phase__num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--blue);
    margin: 0 0 14px;
  }
  .phase__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.05;
    letter-spacing: -.01em;
    margin: 0 0 12px;
  }
  .phase__desc {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.55;
  }
  .phase__meta {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,.1);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }

  /* Vision pitch callout */
  .circuit__vision {
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,212,255,.3);
    background:
      linear-gradient(120deg, rgba(0,212,255,.08), transparent 55%),
      #060606;
    padding: 56px 52px;
  }
  .circuit__vision::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--blue);
    box-shadow: 0 0 28px rgba(0,212,255,.6);
  }
  .circuit__vision::after {
    content: "";
    position: absolute; right: -10%; top: -40%;
    width: 50%; height: 180%;
    background: radial-gradient(circle, rgba(0,212,255,.12), transparent 60%);
    filter: blur(50px);
    pointer-events: none;
  }
  .circuit__vision-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .4em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 22px;
  }
  .circuit__vision-label::before { content: ""; width: 30px; height: 1px; background: var(--blue); }
  .circuit__vision h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3.4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 0 0 22px;
    max-width: 22ch;
    position: relative;
  }
  .circuit__vision h3 em { font-style: normal; color: var(--blue); }
  .circuit__vision p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
    max-width: 64ch;
    position: relative;
  }
  .circuit__vision p + p { margin-top: 16px; }

  /* Circuit responsive */
  @media (max-width: 880px) {
    .circuit__top { grid-template-columns: 1fr; gap: 36px; }
    .circuit__stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .circuit__phases { grid-template-columns: 1fr; gap: 14px; }
    .circuit__stat { padding-left: 14px; }
    .circuit__vision { padding: 44px 30px; }
  }
  @media (max-width: 520px) {
    .circuit__stats { grid-template-columns: 1fr; gap: 14px; }
    .circuit__intro p { font-size: 15px; }
    .phase { padding: 24px 20px; }
    .circuit__vision { padding: 36px 22px; }
    .circuit__vision p { font-size: 15px; }
  }

  /* ===== REEL — full-width photo strip with parallax ===== */
  .reel {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
    background: #000;
  }
  .reel__bg {
    position: absolute; inset: 0;
    background-image: url('https://images.pexels.com/photos/31403621/pexels-photo-31403621.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: 50% 45%;
    filter: grayscale(100%) contrast(1.15) brightness(.55);
    transform: translateY(0);
    will-change: transform;
  }
  .reel__veil {
    position: absolute; inset: 0;
    background:
      linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.25) 50%, rgba(0,0,0,.85)),
      linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.2) 50%, rgba(0,0,0,.7));
  }
  .reel__scan {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 1px, transparent 1px 4px);
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  .reel__copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
  }
  .reel__copy h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 8vw, 120px);
    line-height: .9;
    letter-spacing: -.03em;
    margin: 0;
    text-shadow: 0 4px 40px rgba(0,0,0,.8);
  }
  .reel__copy h2 em { color: var(--blue); font-style: normal; }
  .reel__copy p {
    margin: 22px 0 0;
    font-size: 13px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
  }

  /* ===== MEDIA ===== */
  .media { background: #050505; overflow: hidden; }
  .media::before {
    content: "";
    position: absolute; left: -8%; top: 20%;
    width: 40%; height: 60%;
    background: radial-gradient(circle, rgba(0,212,255,.10), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
  }
  .media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    position: relative;
  }
  .media-card {
    position: relative;
    background: #080808;
    border: 1px solid var(--gray-line);
    overflow: hidden;
    transition: border-color .3s var(--ease), transform .35s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .media-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 60px rgba(0,212,255,.12);
  }
  .media-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
  }
  .media-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: grayscale(100%) contrast(1.1) brightness(.82);
    transform: scale(1.02);
    transition: transform .8s var(--ease), filter .5s var(--ease);
  }
  .media-card:hover .media-card__media img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.05) brightness(.92);
  }
  .media-card__media::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.65) 100%),
      repeating-linear-gradient(to bottom, rgba(0,0,0,.18) 0 1px, transparent 1px 4px);
    mix-blend-mode: multiply;
    pointer-events: none;
  }
  .media-card__type {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 2;
    background: var(--blue);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .26em;
    padding: 6px 12px;
  }
  .media-card__count {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .2em;
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.3);
    padding: 6px 10px;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(4px);
  }
  .media-card__body {
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
  }
  .media-card__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1;
    letter-spacing: -.015em;
  }
  .media-card__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.65);
  }
  .media-card__sponsor {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,212,255,.25);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .media-card__sponsor span {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }
  .media-card__sponsor strong {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .14em;
    color: var(--blue);
    text-transform: uppercase;
  }

  /* ===== SPONSORS ===== */
  .sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .sponsors-note {
    margin: 28px 0 0;
    font-size: 11px;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
  }
  .sponsors-subhead {
    margin: 60px 0 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
  }
  .sponsors-subhead::before, .sponsors-subhead::after {
    content: ""; height: 1px; background: rgba(0,212,255,.35); flex: 1;
  }
  .bet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
  .sponsor--bet .sponsor__age {
    position: absolute;
    top: 8px; right: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    border: 1px solid rgba(255,255,255,.25);
    padding: 2px 5px;
    z-index: 2;
  }
  .sponsor--bet:hover .sponsor__age { color: var(--blue); border-color: var(--blue); }
  .sponsor {
    aspect-ratio: 16/9;
    border: 1px solid var(--gray-line);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: rgba(255,255,255,.4);
    letter-spacing: .2em;
    font-size: 13px;
    text-align: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
  }
  .sponsor::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(0,212,255,.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease);
  }
  .sponsor:hover {
    border-color: var(--blue);
    background: rgba(0,212,255,.06);
    color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,212,255,.15);
  }
  .sponsor:hover::before { transform: translateX(100%); }

  /* ===== CONTACT ===== */
  .contact { padding-bottom: 80px; }
  .contact-wrap {
    border: 1px solid var(--gray-line);
    padding: 72px 48px;
    text-align: center;
    background:
      radial-gradient(ellipse 60% 100% at 50% 100%, rgba(0,212,255,.14), transparent 70%),
      #050505;
    position: relative;
    overflow: hidden;
  }
  .contact-wrap::before {
    content: "";
    position: absolute; inset: 0;
    background-image: linear-gradient(to right, rgba(0,212,255,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black);
    pointer-events: none;
  }
  .contact-wrap > * { position: relative; }
  .contact-wrap h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4.2vw, 56px);
    margin: 0 0 14px;
    letter-spacing: -.015em;
    line-height: 1.05;
  }
  .contact-wrap p {
    color: rgba(255,255,255,.75);
    max-width: 540px;
    margin: 0 auto 36px;
    font-size: 16px;
  }
  .contact-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  .footer {
    border-top: 1px solid var(--gray-line);
    padding: 40px 0 56px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
  }
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-row p { margin: 0; letter-spacing: .08em; }
  .footer__brand {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .14em;
    font-size: 13px;
  }
  .footer__legal { max-width: 740px; margin-top: 20px; line-height: 1.6; font-size: 11px; }
  .footer__credit { margin-top: 8px; font-size: 10px; opacity: .55; letter-spacing: .15em; text-transform: uppercase; }

  /* Reveal default states */
  .reveal { opacity: 0; transform: translateY(28px); }
  .reveal-left { opacity: 0; transform: translateX(-60px); }
  .reveal-right { opacity: 0; transform: translateX(60px); }

  /* ===== Responsive ===== */
  @media (max-width: 980px) {
    .bout {
      grid-template-columns: 50px 1fr;
      gap: 16px;
    }
    .bout__pair {
      grid-column: 1 / -1;
      grid-template-columns: 1fr auto 1fr;
    }
    .bout__class {
      grid-column: 1 / -1;
      text-align: left;
      border-top: 1px dashed var(--gray-line);
      padding-top: 14px;
      min-width: 0;
    }
  }
  @media (max-width: 880px) {
    .champ-grid { grid-template-columns: 1fr; gap: 48px; }
    .portrait { max-width: 380px; margin: 0 auto; }
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
    .bet-grid { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: 1fr; gap: 20px; }
    .bout__avatar { width: 64px; height: 64px; flex-basis: 64px; }
    section { padding: 96px 0; }
    .section__head { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
    .section__meta { text-align: left; }
    .contact-wrap { padding: 56px 22px; }
    .champ-stats { grid-template-columns: 1fr; gap: 16px; }
    .hero { padding: 110px 20px 130px; }
    .ticker__track { gap: 40px; padding: 20px 0; }
    .ticker__item { font-size: clamp(22px, 7vw, 36px); }
    .champ-bio p { font-size: 16px; }
    .reel { height: 50vh; min-height: 380px; }
    .reel__copy h2 { font-size: clamp(32px, 9vw, 72px); }
    .reel__copy p { letter-spacing: .25em; font-size: 11px; }
  }
  @media (max-width: 520px) {
    .nav { padding: 12px 16px; }
    .nav__brand { font-size: 12px; }
    .container { padding: 0 18px; }
    section { padding: 72px 0; }
    .section__head { margin-bottom: 36px; }

    .hero { padding: 96px 18px 120px; }
    .hero__eyebrow {
      font-size: 9px; letter-spacing: .3em; margin-bottom: 20px; gap: 8px;
    }
    .hero__eyebrow::before, .hero__eyebrow::after { width: 24px; }
    .hero__tagline { margin: 22px auto 30px; font-size: 15px; }
    .hero__sub { letter-spacing: .18em; }
    .hero__strip { padding: 12px 18px; font-size: 9px; gap: 10px 16px; }
    .hero__strip strong { font-size: 11px; }

    .bout { padding: 28px 4px; gap: 14px; }
    .bout__num { font-size: 28px; }
    .bout__pair { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .bout__corner, .bout__corner--right { flex-direction: column; text-align: center; gap: 10px; }
    .bout__vs { justify-self: center; margin: 0 auto; }
    .bout__name { font-size: 22px; }

    .card-event { font-size: 11px; letter-spacing: .1em; padding: 14px 16px; margin-bottom: 40px; gap: 8px; }
    .card-event strong { letter-spacing: .12em; }

    .champ-bio p { font-size: 15px; line-height: 1.6; }
    .champ-stats { padding-top: 24px; margin-top: 24px; gap: 14px; }
    .champ-stat__label { font-size: 10px; letter-spacing: .18em; }

    .media-card__body { padding: 22px 20px 20px; }
    .media-card__title { font-size: 20px; }
    .media-card__desc { font-size: 13.5px; }
    .media-card__sponsor span { font-size: 9px; letter-spacing: .24em; }
    .media-card__sponsor strong { font-size: 12px; }

    .sponsor { font-size: 11px; }

    .contact-wrap { padding: 44px 20px; }
    .contact-wrap p { font-size: 15px; }
    .contact-ctas { flex-direction: column; align-items: stretch; }
    .contact-ctas .btn { justify-content: center; padding: 16px 24px; }

    .footer-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer__legal { font-size: 10.5px; }
  }
  @media (max-width: 380px) {
    .hero__strip { grid-template-columns: 1fr 1fr; }
    .ticker__item { font-size: 20px; }
    .nav__brand { font-size: 11px; letter-spacing: .12em; }
    .nav__lang button { padding: 10px 12px; }
  }

  /* =====================================================================
     ART DIRECTION VARIANT A — PRÓXIMA VELADA  → "Showtime PPV" (premium)
     ===================================================================== */
  .velada {
    background:
      radial-gradient(120% 80% at 50% -8%, rgba(0,212,255,.10), transparent 55%),
      radial-gradient(70% 50% at 50% 0%, rgba(255,255,255,.05), transparent 60%),
      linear-gradient(180deg, #07090b 0%, #000 62%);
    overflow: hidden;
  }
  .velada::before {                 /* spotlight beam */
    content: "";
    position: absolute;
    top: -12%; left: 50%;
    width: 150%; max-width: 1500px; height: 75%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse 38% 70% at 50% 0%, rgba(0,212,255,.16), transparent 70%);
    filter: blur(22px);
    pointer-events: none;
    z-index: 0;
  }
  .velada .container { position: relative; z-index: 1; }

  .velada .section__kicker::after {
    content: "PAY-PER-VIEW · DEMO";
    margin-left: 14px; padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.55);
    letter-spacing: .3em;
  }

  /* metallic NOCHE + glossy moving-sheen ELÉCTRICA */
  .velada .section__title span {
    background: linear-gradient(180deg, #fff 0%, #d4dbe0 46%, #97a1a9 62%, #fff 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .velada .section__title em {
    background: linear-gradient(110deg, #0a90b4 0%, #00d4ff 30%, #ffffff 48%, #00d4ff 66%, #0a90b4 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: ppvSheen 6s linear infinite;
  }
  @keyframes ppvSheen { 0% { background-position: 220% 0; } 100% { background-position: -40% 0; } }

  /* glassy PPV banner */
  .velada .card-event {
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)), rgba(0,0,0,.35);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    position: relative; overflow: hidden;
    padding: 22px 26px;
    letter-spacing: .2em;
  }
  .velada .card-event::after {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,.9), transparent);
  }
  .velada .ppv-pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--blue); color: #001016;
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 11px; letter-spacing: .18em; padding: 7px 13px;
    box-shadow: 0 0 26px rgba(0,212,255,.5);
  }
  .velada .ppv-pill::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: #001016; animation: ppvBlink 1.4s ease-in-out infinite;
  }
  @keyframes ppvBlink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

  /* main-event emphasis */
  .velada .bout:last-child {
    background: linear-gradient(90deg, rgba(0,212,255,.07), transparent 65%);
  }
  .velada .bout:last-child .bout__num { color: var(--blue); }
  .velada .bout:last-child .bout__vs { box-shadow: 0 0 26px rgba(0,212,255,.45); }

  /* "PRÓXIMO EVENTO" badge */
  .velada__nextbadge {
    display: flex; width: max-content; align-items: center; gap: 9px;
    margin: 0 0 18px;
    background: rgba(0,212,255,.12);
    border: 1px solid rgba(0,212,255,.5);
    color: var(--blue);
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
    padding: 8px 14px;
  }
  .velada__nextbadge::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue); box-shadow: 0 0 12px var(--blue);
    animation: ppvBlink 1.4s ease-in-out infinite;
  }

  /* live + countdown block */
  .velada__live { margin: 38px 0 30px; display: flex; flex-direction: column; gap: 18px; }

  .velada__broadcast {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px 16px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(90deg, rgba(255,59,59,.06), rgba(0,0,0,.32) 40%);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  }
  .velada__broadcast .live-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #ff3b3b;
    animation: liveDot 1.5s ease-out infinite; flex: 0 0 auto;
  }
  @keyframes liveDot {
    0%   { box-shadow: 0 0 0 0 rgba(255,59,59,.55); }
    70%  { box-shadow: 0 0 0 11px rgba(255,59,59,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
  }
  .velada__broadcast .b-live {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 12px; letter-spacing: .2em; color: #fff;
  }
  .velada__broadcast .b-lead {
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55);
  }
  .velada__broadcast .b-brands {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 13px; letter-spacing: .1em; color: var(--blue);
  }
  .velada__broadcast .b-ppv {
    margin-left: auto;
    border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
    font-size: 10px; letter-spacing: .2em; padding: 6px 11px; font-weight: 700;
  }

  .countdown { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; }
  .cd__unit {
    flex: 1 1 0; min-width: 76px;
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    padding: 16px 10px;
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012)), rgba(0,0,0,.34);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    position: relative; overflow: hidden;
  }
  .cd__unit::after {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,.85), transparent);
  }
  .cd__num {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: clamp(28px, 5vw, 46px); line-height: 1; color: #fff;
    font-variant-numeric: tabular-nums;
  }
  .cd__label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--blue); }
  .velada__live-note { margin: 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
  @media (max-width: 560px) {
    .cd__unit { flex: 1 1 calc(50% - 6px); }   /* 2×2 grid on phones */
    .velada__broadcast .b-ppv { margin-left: 0; }
  }

  /* =====================================================================
     ART DIRECTION VARIANT B — CIRCUITO NACIONAL → "Mola" (Guna textile)
     Frame + accents on a dark base; black + electric blue stay dominant.
     ===================================================================== */
  .circuit { background: #0a0908; overflow: hidden; padding-top: 150px; padding-bottom: 150px; }
  .circuit .container { position: relative; z-index: 2; }
  /* large faint mola medallion watermark */
  .circuit::after {
    content: ""; position: absolute; z-index: 1; pointer-events: none;
    top: 60px; right: -120px; width: 420px; height: 420px; opacity: .14;
    background-repeat: no-repeat; background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none'%3E%3Ccircle cx='100' cy='100' r='94' stroke='%23efe3c8' stroke-width='4'/%3E%3Ccircle cx='100' cy='100' r='80' stroke='%23b7382b' stroke-width='7'/%3E%3Ccircle cx='100' cy='100' r='64' stroke='%23e4b23c' stroke-width='7' stroke-dasharray='6 6'/%3E%3Ccircle cx='100' cy='100' r='48' stroke='%2311806a' stroke-width='5'/%3E%3Ccircle cx='100' cy='100' r='30' stroke='%23b7382b' stroke-width='5'/%3E%3Cpath d='M100 58 L100 142 M58 100 L142 100' stroke='%23efe3c8' stroke-width='3'/%3E%3C/g%3E%3Ccircle cx='100' cy='100' r='8' fill='%23e4b23c'/%3E%3C/svg%3E");
  }

  /* Mola border bands (greca / diente de sierra) top & bottom */
  .circuit__band {
    position: absolute; left: 0; right: 0; height: 22px; z-index: 1;
    pointer-events: none;
    background-repeat: repeat-x; background-position: center;
    background-size: auto 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22'%3E%3Crect width='48' height='22' fill='%230a0908'/%3E%3Crect width='48' height='3' y='0' fill='%2311806a'/%3E%3Cpath d='M0 22 L12 6 L24 22 L36 6 L48 22 Z' fill='%23b7382b'/%3E%3Cpath d='M0 22 L12 12 L24 22 L36 12 L48 22 Z' fill='%23e4b23c'/%3E%3C/svg%3E");
  }
  .circuit__band--top { top: 0; }
  .circuit__band--bottom { bottom: 0; transform: scaleY(-1); }

  /* kicker as a clean mola-gold label */
  .circuit .section__kicker { color: var(--mola-gold); }
  .circuit .section__kicker::before { background: var(--mola-red); width: 34px; }

  /* appliqué "echo" title — layered fabric depth, em stays brand blue */
  .circuit .section__title {
    color: var(--mola-cream);
    text-shadow:
      3px 3px 0 #000,
      6px 6px 0 var(--mola-red),
      9px 9px 0 var(--mola-gold);
  }
  .circuit .section__title em { color: var(--blue); -webkit-text-fill-color: var(--blue); }

  /* mola panel phase cards — concentric ring frame + emblem */
  .circuit .phase {
    background:
      /* mola labyrinth (greca) fill — faint square-spiral field */
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M6 6 H40 V40 H12 V12 H34 V34 H18 V18 H28 V28 H23' fill='none' stroke='%23e4b23c' stroke-opacity='0.08' stroke-width='2'/%3E%3C/svg%3E"),
      radial-gradient(120% 140% at 50% -20%, rgba(17,128,106,.10), transparent 60%),
      #11100e;
    background-repeat: repeat, no-repeat, no-repeat;
    color: var(--mola-cream);
    border: 0;
    padding: 46px 30px 30px;
    overflow: hidden;
    box-shadow:
      inset 0 0 0 2px var(--mola-cream),
      inset 0 0 0 5px #0a0908,
      inset 0 0 0 7px var(--mola-red),
      inset 0 0 0 10px #0a0908,
      inset 0 0 0 12px var(--mola-gold),
      0 18px 40px rgba(0,0,0,.55);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  /* sawtooth accent strip inside the frame */
  .circuit .phase::before {
    display: block; content: ""; transform: none;
    position: absolute; left: 14px; right: 14px; top: 16px; height: 9px;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='9'%3E%3Cpath d='M0 9 L8 0 L16 9 L24 0 L32 9 Z' fill='%23b7382b'/%3E%3Cpath d='M0 9 L8 3 L16 9 L24 3 L32 9 Z' fill='%23e4b23c'/%3E%3C/svg%3E");
    background-repeat: repeat-x; background-size: auto 9px;
    opacity: .9;
  }
  /* concentric-circle mola medallion (rosette + quincunx), top-right */
  .circuit .phase::after {
    content: ""; position: absolute; top: 18px; right: 16px;
    width: 44px; height: 44px; opacity: .95;
    background-repeat: no-repeat; background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Ccircle cx='32' cy='32' r='30' fill='none' stroke='%23efe3c8' stroke-width='2'/%3E%3Ccircle cx='32' cy='32' r='25' fill='none' stroke='%23b7382b' stroke-width='3'/%3E%3Ccircle cx='32' cy='32' r='19' fill='none' stroke='%23e4b23c' stroke-width='3' stroke-dasharray='3 3'/%3E%3Ccircle cx='32' cy='32' r='12' fill='none' stroke='%2311806a' stroke-width='2.5'/%3E%3Ccircle cx='32' cy='32' r='3' fill='%23e4b23c'/%3E%3Ccircle cx='32' cy='8' r='2.4' fill='%23efe3c8'/%3E%3Ccircle cx='32' cy='56' r='2.4' fill='%23efe3c8'/%3E%3Ccircle cx='8' cy='32' r='2.4' fill='%23efe3c8'/%3E%3Ccircle cx='56' cy='32' r='2.4' fill='%23efe3c8'/%3E%3C/svg%3E");
  }
  .circuit .phase:hover {
    transform: translateY(-6px);
    box-shadow:
      inset 0 0 0 2px var(--mola-cream),
      inset 0 0 0 5px #0a0908,
      inset 0 0 0 7px var(--mola-orange),
      inset 0 0 0 10px #0a0908,
      inset 0 0 0 12px var(--blue),
      0 26px 50px rgba(0,0,0,.7);
  }
  .circuit .phase__num {
    display: inline-block;
    color: #0a0908; background: var(--mola-gold);
    padding: 5px 12px; margin: 6px 0 16px;
    letter-spacing: .2em; transform: none; border: 0;
    box-shadow: 0 0 0 2px #0a0908, 0 0 0 4px var(--mola-red);
  }
  .circuit .phase__title { color: var(--mola-cream); }
  .circuit .phase__desc { color: rgba(239,227,200,.72); }
  .circuit .phase__meta { color: rgba(239,227,200,.6); border-top: 2px solid var(--mola-teal); padding-top: 16px; }

  /* phases divider → mola sawtooth in place of blue hairlines */
  .circuit .circuit__phases-head { color: var(--mola-gold); }
  .circuit .circuit__phases-head::before,
  .circuit .circuit__phases-head::after {
    height: 11px; background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='11'%3E%3Cpath d='M0 11 L8 1 L16 11 L24 1 L32 11 Z' fill='%23b7382b'/%3E%3Cpath d='M0 11 L8 5 L16 11 L24 5 L32 11 Z' fill='%23e4b23c'/%3E%3C/svg%3E");
    background-repeat: repeat-x; background-size: auto 11px;
    opacity: .85;
  }

  /* warm mola treatment for circuit stats */
  .circuit .circuit__stat { border-left: 3px solid var(--mola-red); }
  .circuit .circuit__stat-num { color: var(--mola-cream); text-shadow: 2px 2px 0 var(--mola-red); }
  .circuit .circuit__stat-label { color: rgba(239,227,200,.65); }

  /* Fallback if GSAP CDN fails to load — never leave content hidden */
  .no-gsap .reveal,
  .no-gsap .reveal-left,
  .no-gsap .reveal-right { opacity: 1 !important; transform: none !important; }
  .no-gsap .hero__eyebrow,
  .no-gsap .hero__logo,
  .no-gsap .hero__sub,
  .no-gsap .hero__tagline,
  .no-gsap .hero__cta { opacity: 1 !important; }
  .no-gsap .portrait { clip-path: none !important; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .001ms !important;
    }
    .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
    .hero__eyebrow, .hero__logo, .hero__sub, .hero__tagline, .hero__cta { opacity: 1 !important; }
    .portrait { clip-path: none !important; }
  }

  /* =====================================================================
     MULTI-PAGE CHROME — nav links, mobile menu, footer sitemap,
     explore cards, page headers, breadcrumbs, archive
     ===================================================================== */
  a.nav__brand { color: var(--white); }
  .nav__links { display: flex; gap: 24px; align-items: center; margin: 0 auto; }
  .nav__links a {
    font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.72); font-weight: 500; white-space: nowrap;
    transition: color .2s var(--ease); position: relative;
  }
  .nav__links a:hover, .nav__links a.is-active { color: var(--blue); }
  .nav__links a.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--blue);
  }
  .nav__actions { display: flex; align-items: center; gap: 14px; }
  .nav__toggle { display: none; }

  @media (max-width: 1040px) {
    .nav__links {
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0; margin: 0;
      background: rgba(0,0,0,.97); border-top: 1px solid var(--gray-line);
      max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
    }
    .nav.open .nav__links { max-height: 70vh; }
    .nav__links a { padding: 16px 28px; width: 100%; border-bottom: 1px solid var(--gray-line); letter-spacing: .2em; }
    .nav__links a.is-active::after { display: none; }
    .nav__toggle {
      display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 42px; height: 42px; padding: 0 9px;
      background: transparent; border: 1px solid var(--gray-soft); border-radius: 2px;
      touch-action: manipulation;
    }
    .nav__toggle span { height: 2px; width: 100%; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease); }
    .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
    .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }

  /* footer sitemap */
  .footer-top {
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
    padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--gray-line);
  }
  .footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-nav a {
    font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.6); transition: color .2s var(--ease);
  }
  .footer-nav a:hover { color: var(--blue); }

  /* explore cards (home → subpages) */
  .explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .explore-card {
    display: flex; flex-direction: column; gap: 12px; padding: 34px 28px;
    border: 1px solid var(--gray-line); background: #070707;
    position: relative; overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
  }
  .explore-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
  }
  .explore-card:hover { border-color: var(--blue); transform: translateY(-4px); background: #0a0a0a; }
  .explore-card:hover::before { transform: scaleY(1); }
  .explore-card__kicker { font-size: 10px; letter-spacing: .3em; color: var(--blue); font-weight: 700; text-transform: uppercase; }
  .explore-card h3 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(20px, 2.2vw, 28px); margin: 0; letter-spacing: -.01em; line-height: 1.05; }
  .explore-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.55; flex: 1; }
  .explore-card__cta { font-size: 12px; letter-spacing: .16em; color: var(--blue); font-weight: 700; }

  /* sub-page header + breadcrumb */
  .pagehead {
    padding: 170px 0 64px; position: relative; overflow: hidden;
    border-bottom: 1px solid var(--gray-line);
    background: radial-gradient(120% 80% at 50% -10%, rgba(0,212,255,.10), transparent 60%), #000;
  }
  .crumbs { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
  .crumbs a { color: rgba(255,255,255,.5); transition: color .2s var(--ease); }
  .crumbs a:hover { color: var(--blue); }
  .crumbs span[aria-current] { color: var(--blue); }
  .pagehead__kicker { font-size: 11px; letter-spacing: .4em; color: var(--blue); font-weight: 700; text-transform: uppercase; margin: 0 0 16px; display: inline-flex; align-items: center; gap: 10px; }
  .pagehead__kicker::before { content: ""; width: 28px; height: 1px; background: var(--blue); }
  .pagehead__title { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(40px, 7vw, 96px); line-height: .95; letter-spacing: -.025em; margin: 0; }
  .pagehead__title em { font-style: normal; color: var(--blue); }
  .pagehead__sub { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: clamp(16px, 1.8vw, 20px); max-width: 64ch; line-height: 1.6; }

  /* archive */
  .arch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .arch-card {
    display: flex; flex-direction: column; border: 1px solid var(--gray-line); background: #080808;
    overflow: hidden; transition: border-color .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  .arch-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 50px rgba(0,212,255,.1); }
  .arch-card__media { position: relative; aspect-ratio: 16/8; overflow: hidden; background: #000; }
  .arch-card__media img {
    width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
    filter: grayscale(100%) contrast(1.1) brightness(.78);
    transition: transform .8s var(--ease), filter .5s var(--ease);
  }
  .arch-card:hover .arch-card__media img { transform: scale(1.06); filter: grayscale(0%) contrast(1.05) brightness(.88); }
  .arch-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); }
  .arch-card__date {
    position: absolute; bottom: 14px; left: 16px; z-index: 2;
    background: var(--blue); color: #001016; font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 11px; letter-spacing: .14em; padding: 6px 11px;
  }
  .arch-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
  .arch-card__edition { margin: 0; font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(20px, 2.2vw, 28px); line-height: 1; letter-spacing: -.01em; }
  .arch-card__venue { margin: 0 0 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
  .arch-card__main { border-top: 1px solid var(--gray-line); padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
  .arch-card__label { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
  .arch-card__main p { margin: 0; font-size: 15px; color: rgba(255,255,255,.85); }
  .arch-card__main p b { color: var(--white); font-weight: 700; }
  .arch-card__result { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }

  @media (max-width: 860px) {
    .explore-grid { grid-template-columns: 1fr; }
    .arch-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .pagehead { padding: 140px 0 52px; }
  }

  /* =====================================================================
     FIGHT-NIGHT FLYER — poster hero for the next event (Panama Fight Night)
     ===================================================================== */
  .flyer {
    position: relative; overflow: hidden; isolation: isolate;
    border: 1px solid rgba(255,255,255,.14);
    background: #050608;
    margin-bottom: 44px;
  }
  .flyer__bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('https://images.pexels.com/photos/24782482/pexels-photo-24782482.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover; background-position: 50% 35%;
    filter: grayscale(100%) contrast(1.2) brightness(.3);
  }
  .flyer__bg::after {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 26% 92% at 50% 52%, rgba(0,212,255,.30), transparent 62%),
      linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.2) 38%, rgba(0,0,0,.78));
  }
  .flyer__scan {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,.03) 0 1px, transparent 1px 4px);
    mix-blend-mode: overlay;
  }
  .flyer__grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(0,212,255,.07) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,212,255,.07) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 78%);
  }
  .flyer__inner {
    position: relative; z-index: 2;
    padding: clamp(26px, 4vw, 50px) clamp(20px, 4vw, 54px) clamp(24px, 3.5vw, 42px);
    display: flex; flex-direction: column; gap: clamp(18px, 2.6vw, 30px);
  }
  .flyer__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
  .flyer__ppv {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,.35); color: #fff;
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: 11px; letter-spacing: .18em; padding: 6px 12px;
  }
  .flyer__ppv::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: #ff3b3b; animation: liveDot 1.5s ease-out infinite;
  }
  .flyer__kicker {
    margin: 0; text-align: center;
    font-size: clamp(10px, 1.2vw, 12px); letter-spacing: .4em; text-transform: uppercase;
    color: rgba(255,255,255,.62);
  }
  .flyer__title {
    margin: 0; text-align: center;
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: clamp(44px, 9.5vw, 132px); line-height: .82; letter-spacing: -.035em;
  }
  .flyer__title span {
    background: linear-gradient(180deg, #fff 0%, #d4dbe0 46%, #97a1a9 62%, #fff 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  }
  .flyer__title em {
    background: linear-gradient(110deg, #0a90b4 0%, #00d4ff 32%, #ffffff 50%, #00d4ff 68%, #0a90b4 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
    font-style: normal;
    animation: ppvSheen 6s linear infinite;
  }

  .flyer__bout {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    gap: clamp(10px, 3vw, 44px);
  }
  .flyer__fighter { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; min-width: 0; }
  .flyer__photo {
    width: 100%; max-width: 230px; aspect-ratio: 3 / 4;
    background-size: cover; background-position: 50% 18%;
    filter: grayscale(100%) contrast(1.12) brightness(.82);
    border: 1px solid rgba(255,255,255,.16);
    position: relative;
  }
  .flyer__fighter--right .flyer__photo { transform: scaleX(-1); }
  .flyer__photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent 55%),
                linear-gradient(to var(--seam, right), rgba(0,212,255,.28), transparent 45%);
  }
  .flyer__fighter--right .flyer__photo::after { --seam: left; }
  .flyer__fighter h3 {
    margin: 0; font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: clamp(18px, 2.5vw, 34px); line-height: 1; letter-spacing: -.01em;
  }
  .flyer__fighter p { margin: 0; font-size: clamp(10px, 1.1vw, 12px); letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }
  .flyer__vs {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: clamp(26px, 4.4vw, 56px); color: var(--blue);
    text-shadow: 0 0 34px rgba(0,212,255,.6); line-height: 1;
  }
  .flyer__mainlabel {
    display: block; text-align: center; margin: 0;
    font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--blue); font-weight: 700;
  }
  .flyer__mainlabel::before, .flyer__mainlabel::after { content: "— "; opacity: .5; }
  .flyer__mainlabel::after { content: " —"; }

  .flyer__meta {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    border-top: 1px solid rgba(255,255,255,.14); padding-top: clamp(18px, 2.4vw, 24px);
    text-align: center;
  }
  .flyer__meta > div { display: flex; flex-direction: column; gap: 5px; }
  .flyer__meta strong { font-family: 'Inter', sans-serif; font-weight: 900; color: #fff; font-size: clamp(13px, 1.5vw, 16px); letter-spacing: .06em; }
  .flyer__meta strong.blue { color: var(--blue); }
  .flyer__meta span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }

  @media (max-width: 640px) {
    .flyer__bout { grid-template-columns: 1fr 1fr; gap: 14px; }
    .flyer__vs {
      grid-column: 1 / -1; order: -1;
      padding: 4px 14px; border: 1px solid var(--blue); background: rgba(0,212,255,.08);
      justify-self: center; font-size: 22px;
    }
    .flyer__photo { max-width: 150px; }
    .flyer__meta { grid-template-columns: 1fr; gap: 12px; }
    .flyer__meta > div { border-top: 1px dashed rgba(255,255,255,.1); padding-top: 10px; }
    .flyer__meta > div:first-child { border-top: 0; padding-top: 0; }
  }

  /* WBA source backlink + photo credit (Campeones) */
  .champ-source { margin: 6px 0 2px; }
  .champ-source a {
    display: inline-flex; align-items: center;
    font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue); border-bottom: 1px solid rgba(0,212,255,.4); padding-bottom: 2px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }
  .champ-source a:hover { color: var(--white); border-color: var(--white); }
  .portrait__name a { color: rgba(255,255,255,.85); transition: color .2s var(--ease); }
  .portrait__name a:hover { color: var(--blue); }
