/* ¡VAMOS! — LaLiga Webtoon fan competition
   Design system extracted from "VAMOS Site.dc.html" (Claude Design canvas).
   Created by ALTAVA Group. */

/* ---------------------------------------------------------------- tokens */
:root {
  --red:        #FF2A14;   /* action / buttons */
  --red-accent: #FF3B1E;   /* kickers / rules / accents */
  --red-deep:   #C10E06;
  --red-dark:   #5C0502;

  --black:  #000000;
  --ink-1:  #050505;
  --ink-2:  #060606;
  --ink-3:  #0A0A0A;

  --white:      #FFFFFF;
  --tx-strong:  rgba(255,255,255,0.86);
  --tx:         rgba(255,255,255,0.74);
  --tx-soft:    rgba(255,255,255,0.66);
  --tx-mute:    rgba(255,255,255,0.55);
  --tx-faint:   rgba(255,255,255,0.42);

  --line:        rgba(255,255,255,0.14);
  --line-strong: rgba(255,255,255,0.30);
  --line-soft:   rgba(255,255,255,0.16);

  --display: 'Anton', 'Black Han Sans', 'Noto Sans KR', sans-serif;
  --cond:    'Barlow Condensed', 'Noto Sans KR', sans-serif;
  --body:    'Barlow', 'Noto Sans KR', sans-serif;

  --shell: 1240px;
  --gut:   44px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Korean typography wants a touch more line-height and no uppercase */
html[lang="ko"] {
  --display: 'Black Han Sans', 'Anton', sans-serif;
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
  overflow-x: hidden;
}

img { max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: var(--red-accent); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--white); }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--white); color: #000;
  padding: 12px 18px; font-family: var(--cond); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #000; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ animations */
@keyframes vamosSpin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes vamosRise  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes vamosFade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes vamosPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* -------------------------------------------------------------- typography */
.kicker {
  font-family: var(--cond); font-weight: 700; font-size: 12px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--red-accent);
  margin: 0 0 14px;
}
.kicker--light { color: var(--tx); }

.h-hero {
  font-family: var(--display);
  font-size: clamp(66px, 11vw, 164px);
  line-height: .82; letter-spacing: -.02em; margin: 0;
  text-transform: uppercase; color: var(--white);
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.h-page {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 116px);
  line-height: .86; margin: 0; text-transform: uppercase; color: var(--white);
}
.h-sec {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: .92; margin: 0; text-transform: uppercase; color: var(--white);
}
.h-sub {
  font-family: var(--display); font-size: clamp(24px, 3vw, 42px);
  line-height: 1; letter-spacing: .01em; margin: 0;
  text-transform: uppercase; color: var(--white);
}
.h-card { font-family: var(--display); font-size: 26px; line-height: 1.02; text-transform: uppercase; margin: 0; }
.h-mini { font-family: var(--display); font-size: 24px; text-transform: uppercase; margin: 0 0 18px; }

html[lang="ko"] .h-hero,
html[lang="ko"] .h-page,
html[lang="ko"] .h-sec,
html[lang="ko"] .h-sub,
html[lang="ko"] .h-card,
html[lang="ko"] .h-mini { letter-spacing: -.01em; line-height: 1.02; }

.lede  { font-size: clamp(15px, 1.3vw, 19px); line-height: 1.5; color: var(--tx-strong); font-weight: 500; margin: 20px 0 0; max-width: 50ch; }
.body  { font-size: 17px; line-height: 1.55; color: var(--tx); margin: 0; }
.body--sm { font-size: 15px; line-height: 1.5; color: var(--tx-soft); }
.fine  { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.46); }

/* ------------------------------------------------------------- primitives */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--cond); font-weight: 700; font-size: 15px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 17px 28px; border: 1px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn--solid   { background: var(--white); color: #000; }
.btn--solid:hover   { background: var(--red); color: #fff; }
.btn--red     { background: var(--red); color: #fff; }
.btn--red:hover     { background: #fff; color: #000; }
.btn--ghost   { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover   { background: #fff; color: #000; }
.btn--sm      { padding: 14px 22px; font-size: 13px; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

.tag {
  font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--red-accent);
}
.meta {
  font-family: var(--cond); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; color: var(--tx-mute);
}

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* grid with hairline gaps, as in the source design */
.hairgrid {
  display: grid; gap: 2px;
  background: var(--line); border: 1px solid var(--line);
}
.hairgrid > * { background: var(--ink-1); }

.band { border-top: 1px solid var(--line); background: var(--black); }
.band--dim { background: var(--ink-1); }
.band > .shell { padding-top: 90px; padding-bottom: 90px; }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 42px;
}
.sec-head p { font-size: 16px; line-height: 1.55; color: var(--tx-soft); max-width: 44ch; margin: 0; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 78px; padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.brand img { height: 36px; width: auto; display: block; }
.brand__div { width: 1px; height: 26px; background: var(--line-strong); }
.brand__word { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: .02em; color: #fff; }

.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav__link {
  position: relative; padding: 10px 13px;
  font-family: var(--cond); font-weight: 600; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.72); white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 3px; background: var(--red-accent);
}

.utils { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.lang { display: flex; border: 1px solid var(--line-strong); }
.lang button {
  padding: 6px 11px; font-family: var(--cond); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; color: rgba(255,255,255,.62); background: transparent;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.lang button[aria-pressed="true"] { background: #fff; color: #000; }

.header__notify { padding: 12px 20px; font-size: 14px; letter-spacing: .16em; }
.nav .nav__cta { display: none; }

.burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: #fff;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.burger span::before { transform: translateY(-6px); }
.burger span::after  { transform: translateY(4px); }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-2px); }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; overflow: hidden; }
.hero__burst {
  position: absolute; inset: -40%;
  background: repeating-conic-gradient(from 6deg at 50% 50%,
    var(--red-accent) 0deg 2.6deg, var(--red-deep) 2.6deg 6deg,
    var(--red-dark) 6deg 10deg, var(--red-deep) 10deg 13.5deg);
  animation: vamosSpin 240s linear infinite; opacity: .95;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 66% 62% at 46% 44%,
    rgba(0,0,0,.18) 0%, rgba(0,0,0,.7) 44%, #000 76%);
}
.hero__inner {
  position: relative; display: flex; align-items: center;
  gap: 52px; flex-wrap: wrap; padding-top: 72px; padding-bottom: 84px;
}
.hero__copy { flex: 1 1 480px; min-width: 300px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.6); padding: 8px 14px; margin-bottom: 30px;
}
.hero__dot { width: 7px; height: 7px; background: var(--red-accent); border-radius: 50%; animation: vamosPulse 2.4s ease-in-out infinite; }
.hero__badge span:last-child { font-family: var(--cond); font-weight: 700; font-size: 12px; letter-spacing: .24em; color: #fff; }
.hero h2 { margin-top: 20px; max-width: 17ch; }
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }

.hero__art { flex: 0 1 420px; min-width: 280px; display: flex; justify-content: center; }
.hero__frame {
  position: relative; width: 100%; max-width: 420px; aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,.5); background: #000; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__glow {
  position: absolute; left: -20%; right: -20%; bottom: -30%; height: 90%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(255,42,20,.5) 0%, rgba(255,42,20,.12) 42%, rgba(0,0,0,0) 72%);
}
.hero__frame img { position: relative; height: 104%; width: auto; display: block; object-fit: contain; }
.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.92) 46%);
  padding: 40px 16px 16px;
}
.hero__caption strong { font-family: var(--display); font-size: 20px; text-transform: uppercase; line-height: 1; display: block; }
.hero__caption .meta { display: block; margin-top: 5px; font-size: 11px; letter-spacing: .18em; }
.hero__num { font-family: 'Anton', sans-serif; font-size: 46px; line-height: .8; color: var(--red-accent); }

/* countdown */
.countdown { margin-top: 38px; }
.countdown__label {
  font-family: var(--cond); font-weight: 700; font-size: 12px;
  letter-spacing: .26em; color: rgba(255,255,255,.78); margin-bottom: 12px;
}
.countdown__row { display: flex; gap: 8px; flex-wrap: wrap; }
.cd {
  background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.34);
  padding: 12px 16px; min-width: 84px; text-align: center;
}
.cd__n { font-family: 'Anton', sans-serif; font-size: 36px; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.cd--sec .cd__n { color: var(--red-accent); }
.cd__u { font-family: var(--cond); font-weight: 600; font-size: 10px; letter-spacing: .22em; color: var(--tx-mute); margin-top: 5px; }

/* --------------------------------------------------------- feature blocks */
.feature { display: flex; gap: 56px; flex-wrap: wrap; align-items: center; }
.feature__art { flex: 1 1 380px; min-width: 280px; position: relative; }
.feature__art img { width: 100%; display: block; border: 1px solid var(--line-strong); }
.feature__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: #fff; padding: 7px 12px;
  font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
}
.feature__caption { margin-top: 12px; }
.feature__copy { flex: 1 1 420px; min-width: 300px; display: flex; flex-direction: column; gap: 18px; }

.sig { display: flex; gap: 20px; flex-wrap: wrap; align-items: stretch; margin-top: 34px; }
.sig__plate {
  position: relative; flex: 0 0 210px; height: 191px;
  border: 1px solid rgba(255,255,255,.4); background: var(--ink-1); overflow: hidden;
}
.sig__plate img {
  position: absolute; left: 50%; top: 54%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 92%; display: block; filter: invert(1); mix-blend-mode: screen;
}
.sig__plate figcaption {
  position: absolute; left: 0; right: 0; bottom: 10px; text-align: center;
  font-family: var(--cond); font-weight: 700; font-size: 10px;
  letter-spacing: .2em; color: var(--red-accent);
}
.sig__copy { flex: 1 1 220px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.sig__copy .btn { align-self: flex-start; }

.shirt-hero { flex: 0 0 425px; max-width: 100%; }
.shirt-hero img { width: 100%; display: block; }

/* ------------------------------------------------------------------ cast */
.cast { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.cast__card { position: relative; overflow: hidden; background: #000 !important; }
.cast__card .frame { aspect-ratio: 3/4; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.cast__card img { height: 100%; width: auto; display: block; transition: transform .5s var(--ease); }
.cast__card:hover img { transform: scale(1.05); }
.cast__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 16px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.88) 45%);
}
.cast__label strong { font-family: var(--display); font-size: 18px; text-transform: uppercase; color: #fff; line-height: 1; display: block; }
.cast__label span { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: .18em; color: var(--tx-mute); margin-top: 5px; display: block; }

/* ----------------------------------------------------------------- clubs */
.crest-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 10px; }
.crest {
  background: #fff; aspect-ratio: 1/1; display: flex;
  align-items: center; justify-content: center; padding: 10px;
  transition: transform .2s var(--ease);
}
.crest:hover { transform: translateY(-3px); }
.crest img { width: 100%; height: 100%; object-fit: contain; display: block; }

.club-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.club-row { padding: 24px 20px; display: flex; align-items: center; gap: 16px; background: var(--ink-2) !important; }
.club-row__crest { background: #fff; width: 54px; height: 54px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 6px; }
.club-row__crest img { width: 100%; height: 100%; object-fit: contain; display: block; }
.club-row strong { font-family: var(--cond); font-weight: 700; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: #fff; line-height: 1.1; display: block; }
.club-row span { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.45); display: block; margin-top: 3px; }

/* ----------------------------------------------------------------- tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tile { text-align: left; padding: 46px 34px; border-right: 1px solid var(--line); transition: background .18s var(--ease); }
.tile:first-child { padding-left: 0; }
.tile:last-child  { padding-right: 0; border-right: 0; }
.tile:hover { background: rgba(255,42,20,.08); }
.tile__n { font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: .26em; color: var(--red-accent); margin-bottom: 14px; }
.tile__t { font-family: var(--display); font-size: 28px; text-transform: uppercase; color: #fff; line-height: 1; }
.tile__b { font-size: 15px; color: var(--tx-soft); margin-top: 10px; line-height: 1.45; }

/* ------------------------------------------------------------------ page */
.page { padding-top: 80px; padding-bottom: 130px; }
.page__lede { font-size: 18px; line-height: 1.5; color: var(--tx); max-width: 60ch; margin: 22px 0 54px; }

.view { animation: vamosFade .28s var(--ease) both; }

/* ------------------------------------------------------------------ vote */
.vote-banner {
  background: var(--red); padding: 12px var(--gut); text-align: center;
  font-family: var(--cond); font-weight: 700; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase; color: #fff;
}
.vote-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ballot-meter { border: 1px solid rgba(255,255,255,.26); padding: 22px 26px; min-width: 210px; }
.ballot-meter__l { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: .22em; color: var(--tx-soft); }
.ballot-meter__n { font-family: 'Anton', sans-serif; font-size: 52px; line-height: 1; color: #fff; margin-top: 8px; font-variant-numeric: tabular-nums; }
.bar { height: 4px; background: rgba(255,255,255,.16); margin-top: 14px; }
.bar > i { display: block; height: 100%; background: var(--red); transition: width .3s var(--ease); }

.vote-group { margin-bottom: 56px; }
.vote-group__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.vote-group__title { display: flex; align-items: baseline; gap: 14px; }
.vote-group__n { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--red); }
.vote-group__label { font-family: var(--display); font-size: 30px; text-transform: uppercase; color: #fff; line-height: 1; }
.vote-group__note { font-size: 15px; color: var(--tx-soft); }

.vote-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.sub { position: relative; display: flex; flex-direction: column; }
.sub__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: linear-gradient(160deg, #150403 0%, #000 62%); }
.sub__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sub__ghost { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.sub__ghost span { font-family: 'Anton', sans-serif; font-size: 150px; line-height: 1; color: rgba(255,59,30,.16); }
.sub__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.72); border: 1px solid var(--line-strong); padding: 5px 9px;
  font-family: var(--cond); font-weight: 700; font-size: 10px; letter-spacing: .2em; color: #fff;
}
.sub__sel { position: absolute; inset: 0; border: 3px solid var(--red); background: rgba(255,42,20,.2); pointer-events: none; }
.sub__rank {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif; font-size: 17px; color: #fff;
}
.sub__body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sub__title { font-family: var(--display); font-size: 21px; line-height: 1.06; color: #fff; text-transform: uppercase; }
.sub__meta { font-family: var(--cond); font-weight: 600; font-size: 13px; letter-spacing: .12em; color: rgba(255,255,255,.56); }
.sub__share { margin-top: 10px; }
.sub__share-row {
  display: flex; justify-content: space-between;
  font-family: var(--cond); font-weight: 700; font-size: 12px;
  letter-spacing: .16em; color: rgba(255,255,255,.8);
}
.sub__share .bar { height: 6px; margin-top: 7px; }
.sub__btn { margin: 0 20px 20px; border: 1px solid rgba(255,255,255,.4); padding: 13px; }

.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  background: rgba(0,0,0,.94); border-top: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  animation: vamosRise .2s var(--ease) both;
}
.stickybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 18px; }
.stickybar__text { font-family: var(--cond); font-weight: 700; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: #fff; }

/* ----------------------------------------------------------------- enter */
.steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.step { padding: 38px 32px 42px; display: flex; flex-direction: column; gap: 14px; background: var(--ink-2) !important; }
.step__n { font-family: 'Anton', sans-serif; font-size: 64px; line-height: .9; color: var(--red); }

.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; margin-top: 74px; }
.deflist { display: flex; flex-direction: column; border-top: 1px solid var(--line-soft); }
.deflist > div { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.deflist dt { font-family: var(--cond); font-weight: 700; font-size: 15px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin: 0; }
.deflist dd { font-size: 15px; color: var(--tx-soft); text-align: right; margin: 0; }

.bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--tx); }
.bullets li::before { content: ""; width: 6px; height: 6px; background: var(--red); margin-top: 8px; flex-shrink: 0; }

/* ---------------------------------------------------------------- prizes */
.prize { display: flex; gap: 2px; background: var(--line); border: 1px solid var(--line); flex-wrap: wrap; }
.prize + .prize { border-top: 0; }
.prize__media {
  flex: 1 1 320px; min-width: 280px; background: #000; position: relative;
  display: flex; align-items: center; justify-content: center; min-height: 520px; overflow: hidden;
}
.prize__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prize__sig {
  position: absolute; left: 50%; top: 55%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 76%; height: auto !important; object-fit: contain !important;
  filter: invert(1); mix-blend-mode: screen;
}
.prize__sig-label {
  position: absolute; left: 0; right: 0; bottom: 18px; text-align: center;
  font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .22em; color: var(--red-accent);
}
.prize__copy {
  flex: 1 1 360px; min-width: 300px; padding: 46px 38px 44px;
  display: flex; flex-direction: column; gap: 16px; min-height: 360px;
  background: linear-gradient(150deg, #1A0403 0%, #000 60%);
}
.prize--b .prize__copy { background: var(--ink-2); }
.prize__name { font-family: var(--display); font-size: clamp(34px, 4vw, 54px); line-height: .94; text-transform: uppercase; color: #fff; }
.prize__qty {
  margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px;
}
.prize__qty span:first-child { font-family: var(--cond); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-soft); }
.prize__qty span:last-child  { font-family: 'Anton', sans-serif; font-size: 44px; line-height: .9; color: #fff; }

/* ---------------------------------------------------------------- events */
.events { display: flex; flex-direction: column; border-top: 1px solid var(--line-soft); }
.event { display: flex; gap: 28px; flex-wrap: wrap; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.event__n { font-family: 'Anton', sans-serif; font-size: 26px; color: var(--red); min-width: 44px; }
.event__where { flex: 1 1 180px; min-width: 150px; display: flex; flex-direction: column; gap: 5px; }
.event__city { font-family: var(--display); font-size: 26px; text-transform: uppercase; color: #fff; line-height: 1; }
.event__date { flex: 0 0 150px; font-family: var(--cond); font-weight: 700; font-size: 14px; letter-spacing: .16em; color: #fff; }
.event__body { flex: 2 1 260px; font-size: 16px; line-height: 1.5; color: var(--tx-soft); }
.event__status { flex: 0 0 auto; font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--red-accent); align-self: center; }

/* ----------------------------------------------------------------- about */
.about { display: flex; gap: 44px; flex-wrap: wrap; align-items: flex-start; }
.about__copy { flex: 1 1 420px; min-width: 300px; display: flex; flex-direction: column; gap: 22px; }
.about__copy p { font-size: 19px; line-height: 1.55; margin: 0; }
.about__copy p:first-child { color: var(--tx-strong); }
.about__copy p + p { color: var(--tx-soft); }
.about__art { flex: 0 1 380px; min-width: 260px; border: 1px solid rgba(255,255,255,.4); overflow: hidden; }
.about__art img { width: 100%; display: block; }

.facts { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-top: 64px; }
.fact { padding: 26px 24px; background: var(--ink-2) !important; }
.fact dt { font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--red-accent); margin: 0 0 10px; }
.fact dd { font-family: var(--display); font-size: 22px; line-height: 1.05; text-transform: uppercase; color: #fff; margin: 0; }

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); margin-top: 24px; }
.quote { background: var(--ink-1); padding: 34px 30px; display: flex; flex-direction: column; gap: 18px; }
.quote blockquote { margin: 0; font-size: 16px; line-height: 1.55; color: var(--tx); }
.quote blockquote::before { content: "\201C"; font-family: 'Anton', sans-serif; display: block; font-size: 46px; line-height: .6; color: var(--red); margin-bottom: 10px; }
.quote figcaption { margin-top: auto; }
.quote figcaption strong { font-family: var(--display); font-size: 18px; text-transform: uppercase; color: #fff; display: block; line-height: 1; }
.quote figcaption span { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: .18em; color: var(--tx-mute); display: block; margin-top: 6px; }

/* ---------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line-soft); background: #000; }
.site-footer__inner { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; padding-top: 64px; padding-bottom: 44px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 22px; flex: 1 1 420px; }
.site-footer__brand > img { height: 111px; width: auto; align-self: flex-start; object-fit: contain; display: block; }
.stamp { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.stamp span:first-child { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.45); }
.stamp span:last-child { border: 1px solid rgba(255,255,255,.4); padding: 9px 13px; font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.82); }
.legal { font-size: 13px; line-height: 1.6; color: var(--tx-faint); max-width: 62ch; }
.site-footer nav { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.site-footer nav a { font-family: var(--cond); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------- modals */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center; padding: 28px;
}
.modal__panel {
  background: var(--ink-3); border: 1px solid rgba(255,255,255,.28);
  max-width: 560px; width: 100%; padding: 44px 40px;
  animation: vamosRise .24s var(--ease) both;
  max-height: calc(100vh - 56px); overflow-y: auto;
}
.modal--notify .modal__panel { max-width: 480px; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.modal__title { font-family: var(--display); font-size: 34px; line-height: .98; text-transform: uppercase; margin: 0; color: #fff; }
.modal--notify .modal__title { font-size: 32px; }
.modal__close { font-family: var(--cond); font-weight: 700; font-size: 22px; color: var(--tx-soft); line-height: 1; padding: 4px 8px; }
.modal__close:hover { color: #fff; }
.modal__body { font-size: 15px; line-height: 1.5; color: var(--tx-soft); margin: 14px 0 26px; }
.modal__list { display: flex; flex-direction: column; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.modal__list > div { background: var(--ink-1); padding: 16px 18px; display: flex; align-items: center; gap: 16px; }
.modal__list .rank { font-family: 'Anton', sans-serif; font-size: 20px; color: var(--red); min-width: 24px; }
.modal__list .title { flex: 1; font-family: var(--cond); font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.modal__list .cat { font-family: var(--cond); font-weight: 600; font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.modal__actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.modal__actions .btn { flex: 1; min-width: 180px; }
.modal__actions .btn--ghost { flex: 0 0 auto; min-width: 0; padding: 17px 24px; }

.field {
  width: 100%; background: #000; border: 1px solid rgba(255,255,255,.34);
  color: #fff; padding: 16px; font-family: var(--body); font-size: 16px; outline: none;
  transition: border-color .18s var(--ease);
}
.field:focus { border-color: var(--red-accent); }
.field::placeholder { color: rgba(255,255,255,.38); }
.field[aria-invalid="true"] { border-color: var(--red); }
.form-msg { font-size: 13px; line-height: 1.5; margin-top: 10px; min-height: 1.2em; }
.form-msg--err { color: #FF6A57; }
.form-msg--ok  { color: #6EE7A0; }
.form-fine { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,.4); margin-top: 14px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1080px) {
  :root { --gut: 32px; }
  .nav__link { padding: 10px 9px; font-size: 13px; letter-spacing: .1em; }
  .brand__word { font-size: 19px; }
}

@media (max-width: 900px) {
  :root { --gut: 24px; }

  .burger { display: flex; }
  .site-header__inner { min-height: 66px; }

  .nav {
    position: fixed; inset: 66px 0 auto; z-index: 69;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(0,0,0,.97); border-bottom: 1px solid var(--line);
    padding: 8px 0 18px; max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .nav[hidden] { display: none; }
  .nav__link { padding: 16px var(--gut); font-size: 16px; letter-spacing: .16em; border-bottom: 1px solid var(--line); }
  .nav__link[aria-current="page"]::after { left: var(--gut); right: auto; width: 28px; bottom: 10px; }

  .header__notify { display: none; }
  .nav .nav__cta { display: block; margin: 16px var(--gut) 0; text-align: center; }

  .band > .shell { padding-top: 64px; padding-bottom: 64px; }
  .page { padding-top: 56px; padding-bottom: 90px; }
  .hero__inner { padding-top: 48px; padding-bottom: 56px; gap: 36px; }

  .feature { gap: 32px; }
  .two-col { margin-top: 48px; gap: 32px; }
  .facts { margin-top: 44px; }

  .tile { padding: 34px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .tile:first-child { padding-left: 0; }
  .tile:last-child  { padding-right: 0; border-bottom: 0; }

  .prize__media { min-height: 340px; }
  .prize__copy  { padding: 34px 26px; min-height: 0; }

  .event { gap: 14px 20px; }
  .event__date { flex-basis: 100%; }
  .event__status { align-self: flex-start; }

  .site-footer__brand > img { height: 78px; }
  .modal__panel { padding: 32px 24px; }
  .modal__title { font-size: 28px; }
}

@media (max-width: 560px) {
  .h-hero { font-size: clamp(54px, 17vw, 96px); }
  .cd { min-width: 0; flex: 1 1 66px; padding: 10px 8px; }
  .cd__n { font-size: 28px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .sig__plate { flex: 1 1 100%; }
  .shirt-hero { flex: 1 1 100%; }
  .deflist > div { flex-direction: column; gap: 4px; }
  .deflist dd { text-align: left; }
  .modal__actions .btn { flex: 1 1 100%; }
  .stickybar__inner { gap: 12px; }
  .stickybar__inner > div { display: flex; gap: 8px; width: 100%; }
  .stickybar__inner .btn { flex: 1; }
}

@media print {
  .site-header, .stickybar, .modal, .hero__burst { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ------------------------------------------------ competition system v2 */
.vote-banner--closed { background: #1A1A1A; color: rgba(255,255,255,.78); border-bottom: 1px solid var(--line); }

.closed-panel {
  border: 1px solid rgba(255,255,255,.26);
  padding: 26px;
  min-width: 300px;
  max-width: 420px;
}
.closed-panel .countdown { margin-top: 0; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); padding: 9px 14px;
  font-family: var(--cond); font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.82);
  margin: 18px 0 4px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; }
.pill--open  .pill__dot { background: #48D97B; animation: vamosPulse 2.4s ease-in-out infinite; }
.pill--closed .pill__dot { background: var(--red-accent); }
.pill--open  { border-color: rgba(72,217,123,.5); }

.ig-card {
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, #1A0403 0%, #000 60%);
  padding: 38px 34px; margin-top: 44px;
}
.ig-card__copy { flex: 1 1 340px; min-width: 280px; }
.ig-card__chips { flex: 1 1 300px; display: flex; flex-direction: column; gap: 10px; }
.ig-chip {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  border: 1px solid var(--line-strong); padding: 13px 16px;
}
.ig-chip > span {
  font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .22em; color: var(--tx-mute); text-transform: uppercase; flex-shrink: 0;
}
.ig-chip a, .ig-chip strong {
  font-family: var(--cond); font-weight: 700; font-size: 15px;
  letter-spacing: .06em; color: #fff; text-align: right; word-break: break-word;
}
.ig-chip a:hover { color: var(--red-accent); }

.field-label {
  display: block; font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--tx-soft);
  margin-bottom: 8px;
}
.field--otp {
  font-family: 'Anton', sans-serif; font-size: 28px; letter-spacing: .4em;
  text-align: center;
}
.verify-row { display: flex; gap: 10px; margin-top: 12px; }
.consent {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 16px;
  font-size: 13px; line-height: 1.5; color: var(--tx-soft); cursor: pointer;
}
.consent input { margin-top: 3px; accent-color: var(--red); width: 16px; height: 16px; flex-shrink: 0; }

/* dev-mode OTP display (visible only while no SMS provider is connected) */
.devbox {
  border: 1px dashed rgba(255,201,71,.65);
  background: rgba(255,201,71,.08);
  padding: 14px 16px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.devbox span {
  font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: #FFC947;
}
.devbox strong {
  font-family: 'Anton', sans-serif; font-size: 34px; letter-spacing: .3em;
  color: #fff; line-height: 1;
}

/* ----------------------------------------------------------------- store */
.store-tabs { display: flex; border: 1px solid var(--line-strong); margin: 30px 0 22px; max-width: 560px; }
.store-tab {
  flex: 1; padding: 16px 12px;
  font-family: var(--cond); font-weight: 700; font-size: 15px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--tx-mute);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.store-tab + .store-tab { border-left: 1px solid var(--line-strong); }
.store-tab:hover { color: #fff; }
.store-tab[aria-selected="true"] { background: var(--red); color: #fff; }

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); padding: 8px 14px;
  font-family: var(--cond); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--tx-mute);
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.chip img { width: 18px; height: 18px; object-fit: contain; background: #fff; padding: 1px; }
.chip:hover { color: #fff; border-color: rgba(255,255,255,.6); }
.chip[aria-pressed="true"] { background: #fff; color: #000; border-color: #fff; }

.store-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.prod { background: var(--ink-1) !important; display: flex; flex-direction: column; }
.prod__media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(160deg, #150403 0%, #000 62%);
  display: flex; align-items: center; justify-content: center;
}
.prod__crest {
  width: 96px; height: 96px; background: #fff; padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.prod__crest img { width: 100%; height: 100%; object-fit: contain; display: block; }
.prod__ghost span { font-family: 'Anton', sans-serif; font-size: 84px; line-height: 1; color: rgba(255,59,30,.18); }
.prod__onsite {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--red); color: #fff; padding: 4px 8px;
  font-family: var(--cond); font-weight: 700; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
}
.prod__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod__club {
  font-family: var(--cond); font-weight: 700; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--tx-mute);
}
.prod__club--w { color: var(--red-accent); }
.prod__name { font-family: var(--display); font-size: 18px; line-height: 1.12; text-transform: uppercase; color: #fff; flex: 1; }
.prod__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 8px; border-top: 1px solid var(--line); padding-top: 12px; }
.prod__type { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.prod__price { font-family: 'Anton', sans-serif; font-size: 20px; color: #fff; font-variant-numeric: tabular-nums; }

/* store nav link — separate identity from the ¡VAMOS! initiative */
.nav__sep { width: 1px; height: 22px; background: var(--line-strong); margin: 0 8px; align-self: center; }
.nav__link--store {
  font-family: 'Anton', 'Black Han Sans', sans-serif;
  font-weight: 400; font-size: 14px; letter-spacing: .08em;
  color: var(--red-accent);
  border: 1px solid rgba(255,59,30,.55);
  padding: 8px 15px; margin-left: 2px;
}
.nav__link--store:hover { background: var(--red-accent); color: #fff; }
.nav__link--store[aria-current="page"] { background: var(--red-accent); color: #fff; }
.nav__link--store[aria-current="page"]::after { display: none; }

@media (max-width: 900px) {
  .nav__sep { width: auto; height: 1px; background: var(--line-strong); margin: 8px var(--gut); align-self: stretch; }
  .nav__link--store { margin: 10px var(--gut) 0; text-align: center; justify-content: center; display: flex; }
}
