/* ===== TOKENS ===== */
:root {
  --bg: #fbf7f2;
  --bg-alt: #fff;
  --ink: #1d1b2e;
  --ink-soft: #5b5870;
  --line: #ece5dc;
  --card: #ffffff;
  --coral: #ff5c7a;
  --orange: #ff9a3c;
  --purple: #7b5cff;
  --violet: #b06cff;
  --green: #1fbf8f;
  --grad: linear-gradient(120deg, #ff5c7a 0%, #ff9a3c 50%, #b06cff 100%);
  --grad-soft: linear-gradient(120deg, #fff0f3 0%, #fff5ec 50%, #f4eeff 100%);
  --shadow-sm: 0 2px 8px rgba(40, 20, 60, .06);
  --shadow: 0 14px 40px rgba(60, 30, 80, .12);
  --shadow-lg: 0 30px 70px rgba(60, 30, 80, .18);
  --r: 18px;
  --r-lg: 28px;
  --maxw: 1140px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1 var(--font);
  padding: 14px 22px; border-radius: 999px; cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; padding: 16px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(255, 92, 122, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 92, 122, .45); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 242, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; }
.brand__mark { font-size: 22px; }
.brand__name { font-family: var(--display); letter-spacing: -.3px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-weight: 500; color: var(--ink-soft); font-size: 15px; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__inner > .btn { margin-left: 4px; }

/* language switch */
.langswitch { display: inline-flex; background: var(--bg-alt); border: 1.5px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; }
.langswitch button { border: 0; background: none; cursor: pointer; font: 700 13px var(--font); color: var(--ink-soft); padding: 6px 12px; border-radius: 999px; transition: all .15s; letter-spacing: .3px; }
.langswitch button:hover { color: var(--ink); }
.langswitch button.is-active { background: var(--ink); color: #fff; }

/* ===== HERO ===== */
.hero { position: relative; padding: 64px 0 72px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 600px; z-index: 0;
  background:
    radial-gradient(40% 50% at 18% 20%, rgba(255, 92, 122, .25), transparent 70%),
    radial-gradient(40% 50% at 80% 10%, rgba(123, 92, 255, .22), transparent 70%),
    radial-gradient(35% 45% at 55% 40%, rgba(255, 154, 60, .20), transparent 70%);
  filter: blur(8px);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .9fr; gap: 48px; align-items: center; }
.hero__title { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -1px; margin: 18px 0; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 18px; color: var(--ink-soft); max-width: 540px; }
.hero__sub strong { color: var(--ink); }
.hero__cta { display: flex; gap: 14px; margin: 28px 0 30px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--display); font-size: 26px; line-height: 1; }
.hero__stats span { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.pill--live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 92, 122, .6); animation: pulse 1.8s infinite; }
.dot--green { background: var(--green) !important; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,92,122,.5);} 70%{ box-shadow: 0 0 0 8px rgba(255,92,122,0);} 100%{ box-shadow:0 0 0 0 rgba(255,92,122,0);} }

/* feed */
.hero__feed { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow); }
.feed__head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.feed__head .dot { width: 8px; height: 8px; border-radius: 50%; }
.feed__list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.feed__item { display: flex; gap: 11px; align-items: flex-start; padding: 9px 8px; border-radius: 12px; font-size: 14px; animation: slideIn .4s ease; }
.feed__item:hover { background: var(--grad-soft); }
.feed__av { width: 30px; height: 30px; border-radius: 50%; flex: 0 0 30px; display: grid; place-items: center; font-size: 14px; color: #fff; font-weight: 700; }
.feed__txt b { font-weight: 700; }
.feed__time { color: var(--ink-soft); font-size: 12px; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: none; } }

/* ===== BAND ===== */
.band { padding: 16px 0 8px; }
.band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.band__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.band__emoji { font-size: 30px; }
.band__item h3 { font-size: 18px; margin: 12px 0 6px; }
.band__item p { color: var(--ink-soft); font-size: 15px; }
.band__item em { color: var(--purple); font-style: normal; font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--coral); margin-bottom: 8px; }
.eyebrow--center { display: block; text-align: center; }
.eyebrow--light { color: #ffd9c2; }
h2 { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.5px; line-height: 1.1; }
.center { text-align: center; }
.lead { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 14px auto 0; }
.muted { color: var(--ink-soft); font-size: 14px; }

/* ===== FILTERS ===== */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1.5px solid var(--line); background: var(--card);
  padding: 8px 16px; border-radius: 999px; font: 600 14px var(--font);
  cursor: pointer; color: var(--ink-soft); transition: all .15s;
}
.chip:hover { border-color: var(--violet); color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== SPOTLIGHT ===== */
.spotlight {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  margin-bottom: 34px; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.spotlight:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.spotlight__media { position: relative; min-height: 320px; display: grid; place-items: center; font-size: 90px; }
.spotlight__badge { position: absolute; top: 18px; left: 18px; background: rgba(255,255,255,.92); color: var(--ink); font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.spotlight__body { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
.spotlight__cat { font-size: 13px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .6px; }
.spotlight__body h3 { font-family: var(--display); font-size: 30px; font-weight: 600; margin: 8px 0 6px; line-height: 1.1; }
.spotlight__tag { color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; }
.spotlight__meta { display: flex; align-items: center; gap: 16px; margin-top: 6px; }

/* ===== GRID CARDS ===== */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { height: 168px; display: grid; place-items: center; font-size: 56px; position: relative; }
.card__cat { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .4px; }
.card__hot { position: absolute; top: 12px; right: 12px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-weight: 700; font-size: 18px; line-height: 1.2; }
.card__creator { font-size: 13px; color: var(--ink-soft); margin: 3px 0 8px; }
.card__tag { font-size: 14px; color: var(--ink-soft); flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }

/* clap button */
.clap {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--grad-soft); border: 1.5px solid #ffd9d9;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  font: 700 14px var(--font); color: var(--coral); transition: transform .12s, background .2s;
  user-select: none;
}
.clap:hover { transform: scale(1.05); }
.clap:active { transform: scale(.94); }
.clap.is-clapped { background: var(--grad); color: #fff; border-color: transparent; }
.clap__icon { font-size: 16px; display: inline-block; }
.clap.is-bounce .clap__icon { animation: clapPop .4s ease; }
@keyframes clapPop { 0%{transform:scale(1);} 40%{transform:scale(1.5) rotate(-12deg);} 100%{transform:scale(1);} }
.card__msgs { font-size: 13px; color: var(--ink-soft); }

/* ===== ESENCIA ===== */
.ethos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.ethos__card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); }
.ethos__emoji { font-size: 34px; }
.ethos__card h3 { font-family: var(--display); font-weight: 600; font-size: 21px; margin: 14px 0 8px; }
.ethos__card p { color: var(--ink-soft); font-size: 16px; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 44px 0 36px; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; position: relative; }
.step__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--grad); color: #fff; font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }
.pledge { display: flex; gap: 18px; align-items: center; background: var(--grad-soft); border: 1px solid #f0e3ff; border-radius: var(--r-lg); padding: 24px 28px; max-width: 820px; margin: 0 auto; }
.pledge__emoji { font-size: 36px; }
.pledge p { font-size: 16px; color: var(--ink-soft); }
.pledge strong { color: var(--ink); }

/* ===== RANKING ===== */
.ranking { list-style: none; display: flex; flex-direction: column; gap: 12px; counter-reset: rank; max-width: 820px; }
.rank {
  display: flex; align-items: center; gap: 18px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r); padding: 14px 20px;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .15s, box-shadow .2s;
}
.rank:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.rank__pos { font-family: var(--display); font-size: 26px; font-weight: 700; width: 40px; color: var(--ink-soft); }
.rank:nth-child(1) .rank__pos { color: var(--orange); }
.rank:nth-child(2) .rank__pos { color: var(--violet); }
.rank:nth-child(3) .rank__pos { color: var(--coral); }
.rank__media { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; font-size: 26px; flex: 0 0 52px; }
.rank__info { flex: 1; }
.rank__info b { font-size: 16px; }
.rank__info span { display: block; font-size: 13px; color: var(--ink-soft); }
.rank__claps { font-weight: 700; color: var(--coral); font-size: 16px; white-space: nowrap; }

/* ===== CTA ===== */
.section--cta { background: linear-gradient(135deg, #2a1830 0%, #3a1f3e 45%, #4a2240 100%); color: #fff; position: relative; overflow: hidden; }
.section--cta::before { content: ""; position: absolute; inset: -30% -10% auto auto; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,92,122,.35), transparent 65%); }
.section--cta::after { content: ""; position: absolute; bottom: -40%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(123,92,255,.3), transparent 65%); }
.cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta__copy h2 { color: #fff; margin: 8px 0 14px; }
.cta__copy p { color: #e9dbef; font-size: 17px; }
.cta__list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.cta__list li { color: #f0e6f4; font-size: 15px; }
.cta__form { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.cta__form h3 { font-family: var(--display); font-size: 22px; margin-bottom: 18px; }
.cta__form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.cta__form input, .cta__form select, .cta__form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 12px; font: 400 15px var(--font); background: var(--bg); color: var(--ink);
  transition: border-color .15s; resize: vertical;
}
.cta__form input:focus, .cta__form select:focus, .cta__form textarea:focus { outline: none; border-color: var(--purple); }
.form__hint { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* tarjeta "escríbenos un correo" */
.cta__mail { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.cta__mail h3 { font-family: var(--display); font-size: 23px; margin-bottom: 8px; }
.cta__mail > p { color: var(--ink-soft); font-size: 15px; }
.mail__addr { display: inline-block; margin: 12px 0 22px; font-weight: 800; font-size: 23px; letter-spacing: -.3px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; word-break: break-all; }
.mail__include { font-weight: 700; color: var(--ink) !important; margin-bottom: 12px; }
.mail__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.mail__list li { font-size: 15px; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.qa { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.qa__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font: 600 17px var(--font); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.qa__q::after { content: "+"; font-size: 24px; color: var(--violet); transition: transform .2s; }
.qa.is-open .qa__q::after { transform: rotate(45deg); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.qa__a p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }
.qa.is-open .qa__a { max-height: 240px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 48px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__tag { color: var(--ink-soft); font-size: 14px; margin-top: 8px; max-width: 320px; }
.footer__contact-btn { display:inline-block; margin-top:.5rem; padding:.4rem .9rem; background:var(--bg); border:1.5px solid var(--line); border-radius:8px; color:var(--coral); font-size:.85rem; font-weight:600; text-decoration:none; transition:border-color .15s, background .15s; }
.footer__contact-btn:hover { border-color:var(--coral); background:rgba(255,92,122,.06); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; align-items: flex-start; }
.footer__links a { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.footer__links a:hover { color: var(--ink); }
.footer__note { text-align: center; color: var(--ink-soft); font-size: 12px; margin-top: 30px; opacity: .8; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(29, 27, 46, .55); backdrop-filter: blur(4px); animation: fade .2s; }
@keyframes fade { from { opacity: 0; } }
.modal__panel { position: relative; z-index: 1; width: 100%; max-width: 760px; max-height: 90vh; overflow-y: auto; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); animation: popIn .25s cubic-bezier(.2,.9,.3,1.2); }
@keyframes popIn { from { opacity: 0; transform: scale(.96) translateY(10px); } }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); cursor: pointer; font-size: 16px; box-shadow: var(--shadow-sm); }
.modal__close:hover { background: #fff; transform: scale(1.05); }

/* lightbox */
.lightbox { position:fixed; inset:0; z-index:500; background:rgba(0,0,0,.93); display:flex; align-items:center; justify-content:center; padding:1.25rem; cursor:zoom-out; animation:fade .15s; }
.lightbox[hidden] { display:none; }
.lightbox__img { max-width:100%; max-height:90vh; object-fit:contain; border-radius:6px; box-shadow:0 8px 48px rgba(0,0,0,.7); cursor:default; display:block; }
.lightbox__close { position:absolute; top:1rem; right:1.25rem; background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.25); color:#fff; font-size:1.4rem; width:2.4rem; height:2.4rem; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s; }
.lightbox__close:hover { background:rgba(255,255,255,.25); }
#modalBody img { cursor:zoom-in; }

/* modal content */
.ficha__hero { height: 240px; display: grid; place-items: center; font-size: 96px; position: relative; }
.ficha__cat { position: absolute; bottom: 16px; left: 24px; background: rgba(255,255,255,.92); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; }
.ficha__body { padding: 28px 32px 32px; }
.ficha__title { font-family: var(--display); font-size: 30px; font-weight: 600; line-height: 1.1; }
.ficha__creator { color: var(--ink-soft); font-size: 15px; margin: 6px 0 2px; }
.ficha__tag { font-size: 18px; color: var(--ink); margin: 14px 0; font-weight: 500; }
.ficha__desc { color: var(--ink-soft); font-size: 16px; }
.ficha__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.ficha__shot { height: 100px; border-radius: 12px; display: grid; place-items: center; font-size: 34px; }
.ficha__links { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.ficha__link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 14px; font-weight: 600; transition: all .15s; }
.ficha__link:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.ficha__clapbar { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 20px 0; }
.ficha__clapbar .clap { font-size: 16px; padding: 12px 20px; }
.ficha__clapcount { font-size: 15px; color: var(--ink-soft); }
.ficha__clapcount b { color: var(--ink); font-size: 17px; }

/* mensajes de ánimo */
.cheers h4 { font-size: 16px; margin-bottom: 14px; }
.cheer { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.cheer:last-child { border: 0; }
.cheer__av { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; }
.cheer__name { font-weight: 700; font-size: 14px; }
.cheer__text { font-size: 14px; color: var(--ink-soft); }
.cheer__form { display: flex; gap: 10px; margin-top: 16px; }
.cheer__form input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 999px; font: 400 14px var(--font); background: var(--bg); }
.cheer__form input:focus { outline: none; border-color: var(--purple); }
.cheer__warn { margin-top: 12px; background: #fff4f4; border: 1px solid #ffd0d0; color: #b23b53; border-radius: 12px; padding: 11px 14px; font-size: 14px; font-weight: 600; }

/* confetti */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 200; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__feed { order: 2; }
  .band__grid, .grid, .steps, .ethos__grid { grid-template-columns: 1fr; }
  .spotlight, .cta__inner { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 200px; }
  .nav__links { display: none; }
  .langswitch { margin-left: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .nav__inner > .btn { display: none; }
  .nav__inner { gap: 14px; }
  .hero__stats { gap: 22px; }
  .ficha__gallery { grid-template-columns: repeat(2, 1fr); }
  .cheer__form { flex-direction: column; }
}


.feed__empty { list-style:none; color:var(--ink-soft); font-size:.85rem; padding:.5rem 0; text-align:center; }

/* ===== COMMUNITY CARDS ===== */
.comm-card__real { position:absolute; top:.6rem; right:.6rem; background:rgba(255,255,255,.92); color:var(--green,#1fbf8f); font-size:.65rem; font-weight:700; padding:.2rem .5rem; border-radius:2rem; }
.comm-card__status { font-size:.72rem; font-weight:700; color:var(--ink-soft); background:var(--line); padding:.2rem .55rem; border-radius:2rem; white-space:nowrap; }
.comm-card__link { font-size:.75rem; font-weight:600; color:var(--coral); text-decoration:none; margin-left:auto; }
.comm-card__link:hover { text-decoration:underline; }
.card__media { position:relative; }
.comm-card__img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.ficha__hero--img { padding:0; overflow:hidden; }
.ficha__img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.ficha__videos { display:flex; gap:8px; flex-wrap:wrap; margin:14px 0 4px; }
.ficha__video-link { display:inline-flex; align-items:center; gap:6px; padding:8px 14px; border-radius:999px; background:var(--coral); color:#fff; font-size:.8rem; font-weight:700; text-decoration:none; transition:opacity .15s; }
.ficha__video-link:hover { opacity:.85; }

/* ===== BOOK VIEWER ===== */
.book-viewer { margin:20px 0 8px; }
.book-viewer__heading { font-size:.78rem; font-weight:700; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.05em; margin:0 0 10px; }
.book-viewer__stage { display:flex; align-items:center; gap:10px; }
.book-viewer__frame { flex:1; border-radius:8px; overflow:hidden; box-shadow:3px 4px 18px rgba(0,0,0,.18),0 1px 4px rgba(0,0,0,.08); background:#f7f4ef; display:flex; align-items:center; justify-content:center; min-height:160px; }
.book-viewer__img { width:100%; height:auto; display:block; max-height:440px; object-fit:contain; }
.book-viewer__nav { flex-shrink:0; width:38px; height:38px; border-radius:50%; border:none; background:var(--card); box-shadow:var(--shadow-sm); cursor:pointer; font-size:1.5rem; line-height:1; color:var(--ink); display:flex; align-items:center; justify-content:center; transition:background .15s,color .15s,transform .1s; }
.book-viewer__nav:hover:not(:disabled) { background:var(--coral); color:#fff; transform:scale(1.08); }
.book-viewer__nav:disabled { opacity:.25; cursor:default; }
.book-viewer__foot { display:flex; justify-content:space-between; align-items:center; padding:7px 48px 0; }
.book-viewer__label { font-size:.78rem; font-weight:700; color:var(--ink); }
.book-viewer__counter { font-size:.72rem; color:var(--ink-soft); font-variant-numeric:tabular-nums; }
.ficha__desc + .ficha__desc { margin-top:.75em; }

/* ===== ADMIN MODERATION ===== */
.admin-bar { position:fixed; bottom:1.5rem; right:1.5rem; z-index:300; }
.admin-bar__btn { background:var(--purple); color:#fff; border:none; padding:.55rem 1.1rem; border-radius:999px; cursor:pointer; font-size:.82rem; font-weight:700; box-shadow:0 4px 16px rgba(0,0,0,.22); transition:opacity .15s,transform .1s; }
.admin-bar__btn:hover { opacity:.88; transform:scale(1.05); }
.mod-item { border:1.5px solid var(--line); border-radius:10px; padding:14px 16px; margin-bottom:12px; }
.mod-item__meta { font-size:.78rem; color:var(--ink-soft); margin-bottom:5px; }
.mod-item__text { font-size:.9rem; margin:0 0 10px; color:var(--ink); }
.mod-item__actions { display:flex; gap:8px; }
.mod-reject { background:var(--line); color:var(--ink); border:none; cursor:pointer; }
.mod-reject:hover { background:#ffd5d5; color:#c00; }
.mod__empty { text-align:center; color:var(--ink-soft); padding:2rem 0; font-size:.9rem; }
.mod-section { margin-bottom:2rem; }
.mod-section__title { font-size:.95rem; font-weight:700; color:var(--ink); margin:0 0 1rem; padding-bottom:.5rem; border-bottom:1.5px solid var(--line); }
.mod-spotlight { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.mod-spotlight__select { flex:1; min-width:180px; padding:.45rem .7rem; border:1.5px solid var(--line); border-radius:8px; font-size:.88rem; background:var(--bg); color:var(--ink); cursor:pointer; }
.mod-spotlight__select:focus { outline:none; border-color:var(--coral); }
.mod-spotlight__current { font-size:.8rem; color:var(--ink-soft); margin:.6rem 0 0; }
.cheer__pending { font-size:.78rem; color:var(--ink-soft); font-style:italic; margin:8px 0 0; padding:0; }

/* ===== ONBOARDING OVERLAY ===== */
.onboarding-overlay { position:fixed; inset:0; z-index:600; background:rgba(0,0,0,.55); display:flex; align-items:center; justify-content:center; padding:1.5rem; animation:fade .2s; }
.onboarding-card { background:var(--bg); border-radius:20px; padding:2rem 2rem 2rem; max-width:400px; width:100%; text-align:center; box-shadow:0 20px 64px rgba(0,0,0,.28); }
.onboarding-emoji { font-size:2.6rem; margin-bottom:.6rem; }
.onboarding-title { font-size:1.35rem; font-weight:700; margin:0 0 .5rem; color:var(--ink); }
.onboarding-sub { color:var(--ink-soft); margin:0 0 1.5rem; font-size:.93rem; line-height:1.5; }
.onboarding-btns { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; }
.onboarding-label { display:block; text-align:left; font-size:.85rem; font-weight:600; color:var(--ink); margin-bottom:.25rem; }

/* ===== COMPLIANCE TABLE ===== */
.comp-table { width:100%; border-collapse:collapse; font-size:.82rem; margin-top:.25rem; }
.comp-table th { text-align:left; padding:.35rem .5rem; border-bottom:2px solid var(--line); color:var(--ink-soft); font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }
.comp-table td { padding:.5rem .5rem; border-bottom:1px solid var(--line); vertical-align:top; }
.comp-table tbody tr:last-child td { border-bottom:none; }
.comp-row--expired { background:rgba(255,92,122,.06); }
.comp-ok   { color:#1fbf8f; font-weight:700; }
.comp-warn { color:#ffb648; font-weight:700; }
.comp-fail { color:#ff5c7a; font-weight:700; }
.comp-expired { background:#ff5c7a; color:#fff; font-size:.68rem; font-weight:700; padding:.12rem .35rem; border-radius:4px; margin-left:.3rem; vertical-align:middle; }
.comp-unknown { color:var(--ink-soft); font-style:italic; }
.comp-gname { font-size:.8rem; }
.comp-date--expired { color:#ff5c7a; font-weight:600; }

/* ===== AUTH WIDGET ===== */
.auth-widget { display: flex; align-items: center; }
.auth__login-btn { font-size:.8rem; padding:.4rem .9rem; border:1.5px solid var(--coral); background:transparent; color:var(--coral); border-radius:var(--r); cursor:pointer; font-weight:600; transition:background .15s,color .15s; white-space:nowrap; }
.auth__login-btn:hover { background:var(--coral); color:#fff; }
.auth__user { display:flex; align-items:center; gap:.45rem; background:var(--card); border-radius:2rem; padding:.25rem .7rem .25rem .35rem; box-shadow:var(--shadow-sm); }
.auth__photo { width:26px; height:26px; border-radius:50%; object-fit:cover; }
.auth__initial { width:26px; height:26px; border-radius:50%; background:var(--grad); color:#fff; font-weight:700; font-size:.8rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.auth__name { font-size:.82rem; font-weight:600; color:var(--ink); }
.auth__logout { background:none; border:none; cursor:pointer; font-size:.75rem; color:var(--ink-soft); padding:0 .1rem; }
.auth__logout:hover { color:var(--coral); }
.cheer__gate { background:color-mix(in srgb,var(--coral) 8%,var(--card)); border:1.5px solid color-mix(in srgb,var(--coral) 30%,transparent); border-radius:var(--r); padding:1rem 1.25rem; display:flex; align-items:center; gap:1rem; flex-wrap:wrap; margin-bottom:.75rem; }
.cheer__gate p { flex:1; margin:0; font-size:.9rem; }
.cheer__real { font-size:.7rem; color:var(--green); font-weight:700; }
.login-toast { position:fixed; bottom:2rem; left:50%; transform:translateX(-50%) translateY(6rem); background:var(--card); border-radius:var(--r-lg); box-shadow:var(--shadow); padding:1rem 1.5rem; display:flex; align-items:center; gap:1rem; z-index:1000; transition:transform .3s ease; white-space:nowrap; }
.login-toast.is-visible { transform:translateX(-50%) translateY(0); }
.login-toast p { margin:0; font-size:.9rem; }
.toast__close { background:none; border:none; cursor:pointer; font-size:1rem; color:var(--ink-soft); padding:0; margin-left:.25rem; }
.toast__close:hover { color:var(--coral); }
@media (max-width:620px) { .auth__name { display:none; } }
