/* =============================================================
   RANKING DEL FARMEO — styles.css  (v3: dark-aura · titulares degradado)
   1 tokens · 2 reset · 3 utils · 4 type · 5 componentes · 6 header
   7 hero · 8 secciones · 9 leaderboard · 10 salón fama · 11 join
   12 premios · 13 faq · 14 footer · 14b ancla · 14c legal · 15 efectos
   16 responsive · 17 reduced-motion
   ============================================================= */

/* ============================ 1. Tokens ============================ */
:root {
  color-scheme: dark;

  --bg:      #150B26;
  --bg-2:    #1E1338;
  --bg-3:    #291A49;
  --line:    rgba(255, 255, 255, 0.08);
  --line-2:  rgba(255, 255, 255, 0.16);

  --text:      #F2ECFF;
  --text-soft: #B6A9D4;
  --text-dim:  #7F7199;

  --violet:  #A855F7;
  --violet-l:#C48BFF;
  --indigo:  #6D77F5;
  --cyan:    #22D3EE;
  --pink:    #F472D0;
  --mint:    #34E0B0;
  --amber:   #FFC24B;

  --grad-title: linear-gradient(100deg, #C48BFF 0%, #818CF8 30%, #38E0F0 60%, #F5A9E4 100%);
  --grad-cta:   linear-gradient(120deg, #A855F7, #6D77F5);

  --display: "Archivo", "Arial Black", system-ui, sans-serif;
  --sans:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:    "DM Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --wrap: 1120px;
  --gutter: clamp(1rem, 4vw, 2.25rem);
  --r: 16px;
  --r-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================ 2. Reset ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(60% 45% at 6% 0%, rgba(168, 85, 247, 0.28), transparent 60%),
    radial-gradient(55% 45% at 96% 3%, rgba(34, 211, 238, 0.20), transparent 60%),
    radial-gradient(60% 50% at 50% 104%, rgba(244, 114, 208, 0.18), transparent 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--violet); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ============================ 3. Utilities ============================ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--violet); color: #fff; z-index: 9999; border-radius: 10px; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 80%);
  pointer-events: none;
}

/* ============================ 4. Typography ============================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .35rem .85rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.section-head { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); max-width: 44ch; }
.section-head h2 {
  font-size: clamp(2rem, 6.5vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
}
.section-intro { color: var(--text-soft); margin-top: .9rem; font-size: 1.05rem; max-width: 52ch; }

/* ============================ 5. Components ============================ */
.btn {
  --bg: rgba(255, 255, 255, 0.06);
  --fg: var(--text);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  transition: transform .14s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1.05rem; font-size: .88rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn-primary {
  --fg: #fff;
  background: var(--grad-cta);
  border-color: transparent;
  box-shadow: 0 10px 30px -8px rgba(124, 58, 237, 0.6);
}
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(124, 58, 237, 0.75); filter: brightness(1.08); }
.btn-ghost { background: rgba(255, 255, 255, 0.04); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.chip {
  padding: .5rem 1rem;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  transition: color .15s var(--ease), background .15s var(--ease), transform .1s var(--ease);
}
.chip:hover { transform: translateY(-1px); color: var(--text); }
.chip.is-active { background: var(--grad-cta); color: #fff; border-color: transparent; }

.ad-slot {
  display: flex; align-items: center; justify-content: center;
  min-height: 110px;
  margin: clamp(1.8rem, 5vw, 3rem) 0;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.card {
  background: var(--bg-2);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
}

.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--mono); font-size: .7rem;
  padding: .2rem .55rem; border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--text-soft);
}
.tag--tiktok { color: #fff; border-color: rgba(255,255,255,.35); }
.tag--instagram { color: #F9A8D4; border-color: rgba(249,168,212,.4); }
.tag--youtube { color: #FCA5A5; border-color: rgba(252,165,165,.4); }
.tag--web { color: var(--text-soft); }

/* ============================ 6. Header ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21, 11, 38, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.brand-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--grad-title); box-shadow: 0 0 16px -2px rgba(168, 85, 247, .7); }
.brand-name { font-family: var(--display); font-weight: 900; font-size: clamp(.85rem, 3.3vw, 1rem); letter-spacing: -.01em; white-space: nowrap; text-transform: uppercase; }
.brand-accent { color: var(--violet-l); }
.site-nav { display: none; gap: 1.4rem; margin-left: auto; font-family: var(--mono); font-size: .82rem; }
.site-nav a { color: var(--text-soft); }
.site-nav a:hover { color: var(--cyan); }
.nav-cta { margin-left: auto; }

/* ============================ 7. Hero ============================ */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 7vw, 4rem); }
.hero-glow {
  position: absolute; left: 50%; top: -20%;
  width: min(1100px, 130vw); aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(168, 85, 247, 0.35), rgba(34, 211, 238, 0.12) 55%, transparent 75%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft);
  padding: .4rem 1rem; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(244, 114, 208, .7); animation: pulse 1.8s infinite; }
.hero-title {
  margin: 1.1rem auto .9rem;
  font-size: clamp(3.4rem, 15vw, 7.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: var(--grad-title);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 34px rgba(168, 85, 247, 0.4));
}
.hero-sub { max-width: 44ch; margin: 0 auto; color: var(--text-soft); font-size: clamp(1rem, 2.6vw, 1.18rem); }
.hero-sub strong { color: var(--text); font-weight: 700; }

.season-clock {
  display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
  margin: 1.9rem auto 0; padding: 1rem 1.7rem;
  background: var(--bg-2);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: 0 0 40px -12px rgba(34, 211, 238, 0.4);
}
.season-clock .label { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }
.season-clock .time { font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 6vw, 2.7rem); font-variant-numeric: tabular-nums; color: var(--text); }
.season-clock .sn { color: var(--cyan); }

.scoreboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1.9rem auto; max-width: 560px; }
.score-tile { padding: 1rem .5rem; background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r-sm); }
.score-num { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(1.3rem, 5vw, 2rem); font-variant-numeric: tabular-nums; }
.score-tile:nth-child(1) .score-num { color: var(--violet-l); }
.score-tile:nth-child(2) .score-num { color: var(--cyan); }
.score-tile:nth-child(3) .score-num { color: var(--pink); }
.score-label { display: block; margin-top: .15rem; font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.hero-note { margin-top: .9rem; font-family: var(--mono); font-size: .78rem; color: var(--text-dim); }

.rewards { margin-top: clamp(2.4rem, 6vw, 3.6rem); }
.rewards-head { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem; }
.rewards-row { display: grid; grid-template-columns: 1fr; gap: .9rem; }
.reward-card { padding: 1.4rem 1.2rem; text-align: left; background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r); }
.reward-ico { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.reward-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .3rem; text-transform: uppercase; }
.reward-card p { color: var(--text-soft); font-size: .95rem; }

/* ============================ 8. Secciones ============================ */
.section { position: relative; padding: clamp(3rem, 8vw, 5.5rem) 0; border-top: 1px solid var(--line); }
.section--raised { background: rgba(255, 255, 255, 0.022); }

/* ============================ 8b. Pasos ============================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.step { padding: 1.5rem 1.3rem; background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r); }
.step-n { font-family: var(--display); font-weight: 900; font-size: 2rem; line-height: 1;
  background: var(--grad-title); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.15rem; font-weight: 800; margin: .5rem 0 .3rem; text-transform: uppercase; }
.step p { color: var(--text-soft); font-size: .95rem; }

/* ============================ 9. Leaderboard (clips) ============================ */
.lb-controls { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.lb-filter { display: flex; gap: .5rem; }
.lb-search input { width: 220px; max-width: 60vw; padding: .6rem 1rem; background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: 999px; color: var(--text); }
.lb-search input::placeholder { color: var(--text-dim); }

.clip-list { display: grid; gap: .8rem; list-style: none; }
.clip {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "rank main" "vote vote";
  align-items: center;
  gap: .6rem .8rem;
  padding: 1rem 1.1rem;
  background: var(--bg-2);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  transition: box-shadow .3s var(--ease), transform .12s var(--ease);
}
.clip-rank { grid-area: rank; }
.clip-main { grid-area: main; min-width: 0; }
.clip-vote { grid-area: vote; }
.clip:hover { transform: translateY(-1px); }
.clip--top3 { box-shadow: 0 0 30px -10px var(--clip-aura, var(--violet)); }
.clip--top2 { box-shadow: 0 0 34px -8px var(--clip-aura, var(--cyan)); }
.clip--top1 { border-color: rgba(196, 139, 255, .55); box-shadow: 0 0 24px -4px var(--pink), 0 0 60px 0 rgba(168, 85, 247, .35); }

.clip-rank { font-family: var(--display); font-weight: 900; font-size: 1.5rem; color: var(--text-dim); min-width: 2ch; text-align: center; font-variant-numeric: tabular-nums; }
.clip--top1 .clip-rank, .clip--top2 .clip-rank, .clip--top3 .clip-rank { font-size: 2rem; }
.clip--top1 .clip-rank { color: var(--amber); }
.clip--top2 .clip-rank { color: var(--cyan); }
.clip--top3 .clip-rank { color: var(--pink); }

.clip-nick { font-family: var(--display); font-weight: 800; font-size: 1.08rem; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.clip-nick .flag { font-size: 1.1rem; }
.clip-meta { display: flex; align-items: center; gap: .5rem; margin-top: .3rem; flex-wrap: wrap; }
.clip-badges { letter-spacing: .08em; }
.clip-watch { font-family: var(--mono); font-size: .8rem; color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.clip-watch:hover { color: var(--violet-l); }

.clip-vote { display: flex; align-items: center; justify-content: space-between; gap: .6rem; width: 100%; padding-top: .55rem; border-top: 1px solid var(--line); }
.vote-btn {
  display: flex; align-items: center; gap: .35rem;
  padding: .6rem 1rem;
  font-family: var(--display); font-weight: 800; font-size: .92rem;
  background: var(--mint); color: #0C2A22;
  border: 0; border-radius: 999px;
  box-shadow: 0 0 22px -6px var(--mint);
  transition: transform .1s var(--ease), filter .15s var(--ease);
}
.vote-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.vote-btn[disabled] { background: rgba(255, 255, 255, 0.08); color: var(--text-dim); box-shadow: none; cursor: default; transform: none; }
.vote-count { font-family: var(--mono); font-size: .78rem; color: var(--text-soft); font-variant-numeric: tabular-nums; }
.vote-count strong { color: var(--text); font-size: .95rem; }
.clip--pending .vote-count::before { content: "pendiente · "; color: var(--text-dim); }

.lb-more { margin: 1.3rem auto 0; display: flex; }
.lb-foot { margin-top: 1rem; color: var(--text-dim); font-family: var(--mono); font-size: .85rem; }
.lb-foot a { color: var(--cyan); text-decoration: underline; }
.lb-empty { text-align: center; padding: 2rem 1rem; color: var(--text-soft); }
.lb-empty a { color: var(--cyan); text-decoration: underline; }

/* ============================ 10. Salón de la fama ============================ */
.fame-feature {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--bg-2);
  border: 1.5px solid rgba(196, 139, 255, .35);
  border-radius: var(--r);
  box-shadow: 0 0 60px -18px rgba(168, 85, 247, .5);
  margin-bottom: 1.4rem;
  position: relative; overflow: hidden;
}
.fame-feature::before { content: ""; position: absolute; inset: -40% -10% auto -10%; height: 70%; background: var(--grad-title); opacity: .16; filter: blur(50px); }
.fame-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-sm); border: 1.5px solid var(--line-2); object-fit: cover; background: var(--bg-3); width: 100%; }
.fame-photo--empty { display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.fame-body { align-self: center; position: relative; }
.fame-crown { font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); }
.fame-name { font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 6vw, 2.8rem); text-transform: uppercase; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.fame-quote { margin-top: .7rem; font-size: 1.1rem; color: var(--text-soft); font-style: italic; }
.fame-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.fame-card { padding: 1rem; background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r-sm); }
.fame-card .s { font-family: var(--mono); font-size: .72rem; color: var(--text-dim); }
.fame-card .n { font-family: var(--display); font-weight: 800; }

/* ============================ 11. Join ============================ */
.join-wrap { max-width: 680px; margin-inline: auto; }
.join-card { padding: clamp(1.4rem, 4vw, 2.2rem); background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r); box-shadow: 0 0 60px -20px rgba(168, 85, 247, .45); }
.join-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-family: var(--mono); font-size: .78rem; color: var(--text-soft); }
.field input, .field select { padding: .75rem .9rem; background: var(--bg); border: 1.5px solid var(--line-2); border-radius: var(--r-sm); color: var(--text); }
.field input:focus, .field select:focus { outline: none; border-color: var(--violet); }
.field-hint { color: var(--text-dim); font-size: .82rem; }
.field-error { color: #FF7AC0; font-size: .82rem; font-weight: 600; }
.field-error:empty { display: none; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--text-soft); }
.check input { margin-top: .2rem; accent-color: var(--violet); width: 18px; height: 18px; }
.check a { color: var(--cyan); text-decoration: underline; }
.join-privacy { font-size: .84rem; color: var(--text-dim); border-left: 2px solid var(--mint); padding-left: .8rem; }
.join-done { text-align: center; display: grid; gap: .8rem; }
.done-ico { font-size: 2.6rem; }
.join-done h3 { font-size: 1.7rem; font-weight: 900; text-transform: uppercase; }
.join-link { font-family: var(--mono); font-size: .88rem; padding: .7rem .9rem; background: var(--bg); border: 1.5px dashed var(--line-2); border-radius: var(--r-sm); word-break: break-all; color: var(--cyan); }
.share-row { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.share-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1rem; font-family: var(--mono); font-size: .82rem; border: 1.5px solid var(--line-2); border-radius: 999px; background: rgba(255,255,255,.04); transition: transform .1s var(--ease), border-color .15s var(--ease); }
.share-btn:hover { transform: translateY(-2px); border-color: var(--cyan); color: var(--cyan); }
.share-cta { margin-top: 2rem; text-align: center; display: grid; gap: .9rem; }
.share-cta p { color: var(--text-soft); }

/* ============================ 12. Premios ============================ */
.pot-banner { text-align: center; padding: clamp(1.5rem, 5vw, 2.4rem); background: var(--bg-2); border: 1.5px solid rgba(196,139,255,.35); border-radius: var(--r); box-shadow: 0 0 60px -20px rgba(168,85,247,.5); margin-bottom: 1.6rem; }
.pot-label { font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }
.pot-value { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 9vw, 4.4rem); line-height: 1; margin: .3rem 0 .5rem;
  background: var(--grad-title); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 4px 24px rgba(168,85,247,.4)); }
.pot-next { font-family: var(--mono); font-size: .85rem; color: var(--text-soft); }
.tier-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.tier { padding: 1.3rem 1.2rem; background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r); }
.tier.is-current { border-color: rgba(52, 224, 176, .5); box-shadow: 0 0 30px -12px var(--mint); }
.tier-head { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.tier-badge { font-family: var(--display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; }
.tier-state { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); border: 1px solid var(--line-2); padding: .15rem .55rem; border-radius: 999px; }
.tier.is-current .tier-state { background: var(--mint); color: #0C2A22; border-color: transparent; }
.tier-blurb { color: var(--text-soft); font-size: .93rem; }
.prize-message { margin-top: 1.8rem; padding: 1.2rem 1.4rem; text-align: center; font-size: 1.1rem; background: var(--bg-2); border: 1.5px dashed var(--line-2); border-radius: var(--r); }
.prize-smallprint { margin-top: 1rem; font-size: .82rem; color: var(--text-dim); text-align: center; }
.prize-smallprint a { color: var(--text-soft); text-decoration: underline; }

/* ============================ 13. FAQ ============================ */
.faq-list { display: grid; gap: .7rem; }
.faq-list details { background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r-sm); padding: 0 1.1rem; }
.faq-list summary { padding: 1rem 0; font-family: var(--display); font-weight: 800; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--cyan); font-family: var(--mono); font-size: 1.3rem; transition: transform .2s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding-bottom: 1.1rem; color: var(--text-soft); font-size: .95rem; }

/* ============================ 14. Footer ============================ */
.site-footer { padding: clamp(2.4rem, 6vw, 3.5rem) 0 2rem; border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.footer-brand .brand-name { font-size: 1rem; }
.footer-brand p { color: var(--text-dim); font-size: .88rem; margin-top: .4rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .8rem 1.3rem; font-family: var(--mono); font-size: .82rem; }
.footer-nav a { color: var(--text-soft); }
.footer-nav a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 999px; font-family: var(--mono); font-size: .72rem; }
.footer-social a:hover { background: var(--violet); color: #fff; border-color: transparent; }
.footer-legal { padding-top: 1.2rem; }
.footer-legal p { color: var(--text-dim); font-size: .8rem; max-width: 70ch; }

/* ============================ 14b. Ancla publicitaria ============================ */
.ad-slot--anchor { margin: 0; min-height: 52px; border: 0; background: transparent; }
.ad-anchor {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: .35rem .5rem;
  background: rgba(21, 11, 38, 0.9);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-2);
}
.ad-anchor-close { position: absolute; top: -13px; right: 10px; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: .7rem; background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 50%; color: var(--text); }
body.has-anchor { padding-bottom: 72px; }

/* ============================ 14d. Artículos / contenido ============================ */
.article { padding: 2.5rem 0 4rem; }
.article-hero { text-align: center; margin-bottom: 2.4rem; }
.article-hero .kicker { margin-bottom: .8rem; }
.article-hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.2rem); font-weight: 900; line-height: .95;
  text-transform: uppercase; letter-spacing: -.02em;
  background: var(--grad-title); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 5px 26px rgba(168, 85, 247, .35));
}
.article-lead { font-size: 1.15rem; color: var(--text-soft); max-width: 48ch; margin: 1rem auto 0; }
.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 { font-size: clamp(1.5rem, 4.5vw, 2.2rem); font-weight: 900; text-transform: uppercase; margin: 2.6rem 0 .8rem; }
.article-body h3 { font-size: 1.2rem; font-weight: 800; margin: 1.7rem 0 .5rem; color: var(--violet-l); }
.article-body p { color: var(--text-soft); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; }
.article-body ul, .article-body ol { color: var(--text-soft); padding-left: 1.3rem; margin-bottom: 1rem; }
.article-body li { margin-bottom: .5rem; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--cyan); text-decoration: underline; }
.pullquote {
  font-family: var(--display); font-weight: 900; font-size: clamp(1.35rem, 5vw, 2rem);
  text-transform: uppercase; line-height: 1.08; margin: 2rem 0; padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--violet); background: var(--bg-2); border-radius: 0 var(--r) var(--r) 0;
  color: var(--text);
}
.aura-tag {
  display: inline-block; font-family: var(--mono); font-size: .78rem; font-weight: 500;
  padding: .15rem .6rem; border-radius: 999px; background: var(--bg-3); color: var(--mint);
  border: 1px solid var(--line-2); white-space: nowrap;
}
.aura-tag--minus { color: var(--pink); }
.cta-box {
  text-align: center; margin: 3rem 0 0; padding: 2rem 1.5rem;
  background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r);
  box-shadow: 0 0 50px -18px rgba(168, 85, 247, .5);
}
.cta-box h2 { margin: 0 0 .6rem; font-size: clamp(1.5rem, 5vw, 2.2rem); }
.cta-box p { color: var(--text-soft); margin-bottom: 1.2rem; }
.article-more { margin-top: 3rem; display: grid; gap: .7rem; }
.article-more a {
  display: block; padding: 1rem 1.2rem; background: var(--bg-2);
  border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  font-family: var(--display); font-weight: 800;
}
.article-more a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ============================ 14c. Páginas legales ============================ */
.legal-page { padding: 3rem 0 5rem; }
.legal-page h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 900; text-transform: uppercase; margin: .8rem 0 .4rem; }
.legal-page h2 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin: 2rem 0 .5rem; color: var(--violet-l); }
.legal-page p, .legal-page li { color: var(--text-soft); margin-bottom: .6rem; }
.legal-page ul { padding-left: 1.2rem; margin-bottom: .6rem; }
.legal-page a { color: var(--cyan); text-decoration: underline; }
.legal-updated { font-family: var(--mono); font-size: .82rem; color: var(--text-dim); }
.legal-warning { margin: 1.4rem 0; padding: 1rem 1.2rem; border: 1.5px dashed var(--pink); border-radius: var(--r-sm); color: var(--text); font-size: .92rem; background: var(--bg-2); }

/* ============================ 15. Efectos ============================ */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(244,114,208,.55); } 70% { box-shadow: 0 0 0 10px rgba(244,114,208,0); } 100% { box-shadow: 0 0 0 0 rgba(244,114,208,0); } }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
.vote-pop { animation: pop .3s var(--bounce); }
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }

/* ============================ 16. Responsive ============================ */
@media (min-width: 560px) {
  .scoreboard { max-width: 560px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .clip { grid-template-columns: auto 1fr auto; grid-template-areas: "rank main vote"; gap: .8rem 1rem; }
  .clip-vote { flex-direction: column; align-items: center; gap: .2rem; width: auto; padding-top: 0; border-top: 0; }
}
@media (min-width: 720px) {
  .rewards-row { grid-template-columns: repeat(3, 1fr); }
  .tier-list { grid-template-columns: repeat(3, 1fr); }
  .fame-feature { grid-template-columns: 300px 1fr; align-items: center; }
  .footer-inner { grid-template-columns: 1.4fr 1fr auto; align-items: start; }
}
@media (min-width: 960px) {
  .site-nav { display: flex; }
  .nav-cta { margin-left: 0; }
  .header-inner { gap: 1.8rem; }
}

/* ============================ 17. Reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-badge .dot { animation: none; }
  .vote-pop { animation: none; }
  .reveal-ready [data-reveal] { transition-duration: .01s; }
}
