/* ============================================================
   Tango Tantra — landing in RA editorial/brutalist voice.
   ============================================================ */
:root {
  --bg: #0b0b0b;
  --bg-2: #141414;
  --fg: #f5f2ec;
  --muted: #8c8680;
  --line: #232323;
  --line-strong: #3a3a3a;
  --accent: #ff3b5f;
  --accent-hover: #ff6a85;
}

/* Full-bleed override only on landing (body.is-landing); other pages keep the default tt-main container. */
body.is-landing .tt-main { max-width: none !important; padding: 0 !important; }
body.tt-body { background: var(--bg); color: var(--fg); }

/* ───── Cover tile (shared: hero, news, card, club) ───── */
.ra-cover {
  position: relative;
  overflow: hidden;
  background: #151114;
  isolation: isolate;
}
.ra-cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.3s;
}
.ra-cover-fb {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.ra-cover-fb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.ra-cover-fb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 100%, rgba(0,0,0,0.55), transparent 60%);
  pointer-events: none;
}
.ra-cover-glyph {
  position: relative;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 6px 30px rgba(0,0,0,0.45);
  mix-blend-mode: overlay;
  z-index: 1;
}
.ra-cover-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ───── Secondary nav / category rail ───── */
.ra-subnav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,11,11,0.9);
  backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.ra-subnav-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 0.75rem 2rem;
  max-width: 1400px; margin: 0 auto;
}
.ra-cats {
  display: flex; gap: 1.4rem;
  flex: 1 1 auto; min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 2rem), transparent 100%);
          mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 2rem), transparent 100%);
}
.ra-cats::-webkit-scrollbar { display: none; }
.ra-cat {
  color: var(--fg); font-weight: 500; font-size: 0.9rem;
  white-space: nowrap; padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.ra-cat:hover { color: var(--accent); border-bottom-color: var(--accent); }
.ra-citypick { display: flex; align-items: center; gap: 0.5rem; }
.ra-citypick label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin: 0; }
.ra-citypick select {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line-strong); border-radius: 0;
  padding: 0.35rem 0.6rem; font-size: 0.9rem; width: auto;
}

/* ───── Hero featured banner ───── */
.ra-hero {
  max-width: 1400px; margin: 2rem auto; padding: 0 2rem;
}
.ra-hero-link {
  position: relative;
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.ra-hero-link .ra-cover { aspect-ratio: 16 / 6; }
.ra-hero-link:hover .ra-cover-img { transform: scale(1.03); }
.ra-hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem; color: var(--fg); z-index: 3;
}
.ra-kicker {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.72rem; color: var(--accent);
  margin-bottom: 0.6rem;
}
.ra-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02; font-weight: 600;
  margin: 0; color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.ra-hero-meta { margin: 0.6rem 0 0; color: #d7d2cc; font-size: 0.95rem; }

/* ───── Block wrapper ───── */
.ra-block {
  max-width: 1400px; margin: 0 auto;
  padding: 2.4rem 2rem;
  border-top: 1px solid var(--line);
}
.ra-block:first-of-type { border-top: 0; }
.ra-block--split { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .ra-block--split { grid-template-columns: 1fr 2fr; } }
.ra-block-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.4rem;
}
.ra-h2 {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg); margin: 0;
  position: relative; padding-left: 1.4rem;
}
.ra-h2::before {
  content: ''; position: absolute;
  left: 0; top: 0.35rem;
  width: 0.8rem; height: 0.8rem;
  background: var(--accent);
}
.ra-more {
  font-size: 0.82rem; font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.ra-more:hover { color: var(--accent); border-bottom-color: var(--accent); }
.ra-muted { color: var(--muted); font-size: 0.9rem; margin: 0; }
.ra-lede { font-size: 1.05rem; color: #d7d2cc; max-width: 32ch; margin: 0 0 1.2rem; line-height: 1.55; }

/* ───── Meta chips ───── */
.ra-news-meta {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.72rem; color: var(--muted);
  margin: 0 0 0.4rem;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.ra-chip {
  display: inline-block; padding: 0.2rem 0.5rem;
  background: var(--accent); color: #fff;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ra-chip--ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line-strong);
}

/* ───── Latest news grid ───── */
.ra-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem 1.4rem;
}
.ra-news { display: grid; grid-template-rows: auto auto; gap: 0.8rem; }
.ra-news-img { display: block; aspect-ratio: 16/10; }
.ra-news:hover .ra-cover-img { transform: scale(1.04); }
.ra-news:hover .ra-cover-fb { filter: brightness(1.1); }
.ra-news-title {
  font-size: 1.05rem; line-height: 1.25;
  margin: 0 0 0.3rem; font-weight: 600;
}
.ra-news-title a { color: var(--fg); border-bottom: 1px solid transparent; }
.ra-news-title a:hover { color: var(--accent); }
.ra-news-sub { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ───── Popular ranked list ───── */
.ra-ranks {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
}
.ra-rank {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem; align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.ra-rank:hover { background: rgba(255,59,95,0.04); }
.ra-rank-n {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--accent); min-width: 3rem;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.ra-rank-title {
  font-size: 1.1rem; font-weight: 600; line-height: 1.3;
  margin: 0 0 0.2rem;
}
.ra-rank-title a { color: var(--fg); }
.ra-rank-title a:hover { color: var(--accent); }
.ra-rank-sub { color: var(--muted); font-size: 0.85rem; margin: 0; }
.ra-rank-sub a { color: var(--muted); border-bottom: 1px solid transparent; }
.ra-rank-sub a:hover { color: var(--fg); border-bottom-color: var(--fg); }
.ra-rank-att {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ───── Next six cards ───── */
.ra-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.ra-card {
  position: relative;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.ra-card-img { display: block; aspect-ratio: 4/5; }
.ra-card:hover .ra-cover-img { transform: scale(1.04); }
.ra-card:hover .ra-cover-fb { filter: brightness(1.1); }
.ra-card-date-over {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.ra-card-date-over b {
  display: block;
  font-size: 2.4rem; letter-spacing: 0;
  line-height: 1; margin-bottom: 0.15rem;
}
.ra-card-title { font-size: 1rem; font-weight: 600; margin: 0 0 0.15rem; color: var(--fg); line-height: 1.25; }
.ra-card-sub { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ───── Chip row ───── */
.ra-chips-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ra-chip-big {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: 0.88rem; font-weight: 500;
  transition: all 0.15s;
}
.ra-chip-big em {
  color: var(--muted); font-style: normal;
  font-variant-numeric: tabular-nums;
}
.ra-chip-big:hover { border-color: var(--accent); color: var(--accent); }
.ra-chip-big:hover em { color: var(--accent); }

/* ───── Top venues ───── */
.ra-clubs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.ra-club { display: flex; flex-direction: column; gap: 0.6rem; }
.ra-club-img { display: block; aspect-ratio: 3/2; }
.ra-club:hover .ra-cover-img { transform: scale(1.04); }
.ra-club:hover .ra-cover-fb { filter: brightness(1.1); }
.ra-club-title { font-size: 1.15rem; font-weight: 600; margin: 0; color: var(--fg); }
.ra-club:hover .ra-club-title { color: var(--accent); }
.ra-ratings {
  font-size: 0.78rem; color: var(--muted); margin: 0;
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.ra-ratings em { font-style: normal; color: var(--line-strong); }

/* ───── Editorial ───── */
.ra-edit-list { display: grid; gap: 1.4rem; }
.ra-edit {
  display: block;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.ra-edit:first-child { border-top: 0; padding-top: 0; }
.ra-edit-date { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 0.35rem; }
.ra-edit-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem; line-height: 1.15;
  font-weight: 600; margin: 0 0 0.5rem;
  color: var(--fg);
}
.ra-edit:hover .ra-edit-title { color: var(--accent); }

/* ───── Cities strip ───── */
.ra-cities-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  border: 1px solid var(--line);
}
.ra-city {
  padding: 1rem 1.1rem;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  transition: background 0.15s, color 0.15s;
}
.ra-city:hover { background: rgba(255,59,95,0.06); color: var(--accent); }
.ra-city.is-selected { background: rgba(255,59,95,0.12); color: var(--accent); }
.ra-city-name { font-weight: 600; }
.ra-city-cc { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.12em; }
.ra-city-n {
  display: inline-block; min-width: 1.6rem; text-align: center;
  color: var(--muted); font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

/* ───── Stats bar ───── */
.ra-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.ra-stats > div {
  padding: 2rem 1rem;
  border-left: 1px solid var(--line);
}
.ra-stats > div:first-child { border-left: 0; }
.ra-stats b {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem; line-height: 1; color: var(--fg);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.3rem;
}
.ra-stats span {
  font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.18em;
}

/* ───── Responsive ───── */
@media (max-width: 760px) {
  .ra-subnav { padding: 0.25rem 0; }
  .ra-subnav-inner {
    flex-direction: column; align-items: stretch;
    padding: 0.55rem 0; gap: 0.55rem;
    position: relative;
  }

  /* Swipe hint chevron — sits over the right edge of the pill rail,
     pulses until the user scrolls the rail for the first time. */
  .ra-cats-wrap { position: relative; }
  .ra-cats-wrap::after {
    content: '';
    position: absolute;
    top: 50%; right: 0.45rem;
    width: 0.55rem; height: 0.55rem;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    animation: ra-swipe-hint 1.4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.4s ease;
  }
  .ra-cats-wrap.is-scrolled::after { opacity: 0; animation: none; }

  @keyframes ra-swipe-hint {
    0%, 100% { transform: translate(0, -50%) rotate(45deg); opacity: 0.45; }
    50%      { transform: translate(5px, -50%) rotate(45deg); opacity: 1; }
  }

  /* Horizontal pill rail with snap + edge fades */
  .ra-cats {
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.45rem;
    padding: 0.15rem 1rem 0.4rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: 1rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 1.2rem, #000 calc(100% - 1.6rem), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 1.2rem, #000 calc(100% - 1.6rem), transparent 100%);
  }
  .ra-cat {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255,255,255,0.025);
    color: var(--fg);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.15s ease, transform 0.15s ease;
  }
  .ra-cat:first-child {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .ra-cat:hover, .ra-cat:active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
  }
  .ra-cat:hover { border-bottom-color: var(--accent); } /* override the desktop underline rule */

  /* City picker — full width, cleaner on mobile */
  .ra-citypick {
    width: 100%;
    padding: 0 1rem;
    gap: 0.65rem;
    justify-content: flex-start;
  }
  .ra-citypick label { font-size: 0.7rem; letter-spacing: 0.18em; }
  .ra-citypick select {
    flex: 1;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.025);
  }
  .ra-block { padding: 1.8rem 1rem; }
  .ra-hero { margin: 1rem auto; padding: 0 1rem; }
  .ra-hero-content { padding: 1.2rem; }
  .ra-ranks { grid-template-columns: 1fr; }
  .ra-rank-n { font-size: 1.8rem; min-width: 2.4rem; }
}

/* ───── Event detail page ───── */
body.is-detail .tt-main { max-width: none !important; padding: 0 !important; }

.ra-detail { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.ra-detail-hero {
  position: relative;
  margin: 1.4rem 0 2rem;
  border: 1px solid var(--line);
}
.ra-detail-hero .ra-cover { aspect-ratio: 16 / 8; }
.ra-detail-hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem; z-index: 3; color: var(--fg);
}
.ra-detail-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.05; font-weight: 600;
  margin: 0.3rem 0 0.4rem;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.ra-detail-meta { color: #d7d2cc; font-size: 0.95rem; margin: 0; }
.ra-detail-meta a { color: #d7d2cc; border-bottom: 1px solid var(--line-strong); }
.ra-detail-meta a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.ra-detail-grid {
  display: grid; gap: 2.4rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 900px) {
  .ra-detail-grid { grid-template-columns: 2fr 1fr; }
}

.ra-detail-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.ra-detail-section { margin: 2rem 0; }
.ra-detail-section .ra-h2 { margin-bottom: 0.9rem; }
.ra-prose { line-height: 1.65; color: var(--fg); max-width: 62ch; }
.ra-prose p { margin: 0 0 1rem; }

/* Location block */
.ra-location-city { margin: 0.2rem 0 1rem; color: var(--muted); }
.ra-location-revealed {
  padding: 1.2rem; background: var(--bg-2); border: 1px solid var(--accent);
}
.ra-location-address {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem; font-weight: 600; margin: 0.4rem 0 0.6rem;
}
.ra-house-rules { margin-top: 1rem; }
.ra-house-rules summary { cursor: pointer; color: var(--muted); font-size: 0.9rem; }
.ra-location-hidden {
  padding: 1.2rem; background: var(--bg-2); border: 1px dashed var(--line-strong);
}
.ra-countdown {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem; font-weight: 600;
  margin: 0.8rem 0 0; color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* Join form */
.ra-join-form label { color: var(--muted); font-size: 0.85rem; }
.ra-join-form textarea { background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--fg); border-radius: 0; padding: 0.8rem; width: 100%; resize: vertical; }
.ra-join-form .tt-cta { border-radius: 0; }
.ra-join-state {
  padding: 0.9rem 1.1rem; border: 1px solid var(--line-strong);
  background: var(--bg-2);
}
.ra-join-state--approved { border-color: #49c27c; }
.ra-join-state--rejected { border-color: #e24040; }
.ra-join-state--pending { border-color: var(--accent); }

/* Sidebar */
.ra-detail-side { display: grid; gap: 1rem; align-content: start; }
.ra-side-card {
  padding: 1.1rem 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.ra-side-name { font-size: 1.15rem; font-weight: 600; margin: 0.2rem 0 0.3rem; }
.ra-side-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem; font-weight: 600; margin: 0.3rem 0 0;
}
.ra-side-list { list-style: none; padding: 0; margin: 0.4rem 0 0; display: grid; gap: 0.4rem; font-size: 0.9rem; }
.ra-side-list a { border-bottom: 1px solid transparent; }
.ra-side-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.ra-share-btn {
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.ra-share-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ───── Organiser dashboard & form chrome ───── */
.tt-hidden { display: none; }
.ra-fieldset {
  border: 1px solid var(--line);
  padding: 1.2rem 1.4rem 0.6rem;
  margin: 0 0 1.5rem;
}
.ra-fieldset legend {
  padding: 0 0.4rem;
  color: var(--accent);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.ra-form-actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.ra-action-btn {
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.ra-action-btn:hover:not([disabled]) { color: var(--accent); border-color: var(--accent); }
.ra-action-btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.ra-action-danger:hover:not([disabled]) { color: #e24040; border-color: #e24040; }
/* Highlight for the Invites button on invite-only events — signals "this is the live channel". */
.ra-action-accent { border-color: var(--accent); color: var(--accent); }
.ra-action-accent:hover:not([disabled]) { background: var(--accent); color: #fff; }

.ra-event-status {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}
.ra-event-status .ra-kicker { color: var(--muted); margin: 0; }

.ra-dash-events { list-style: none; padding: 0; margin: 0; }
.ra-dash-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.ra-dash-row:first-child { border-top: 0; }
.ra-dash-main { flex: 1; min-width: 0; }
.ra-dash-title { font-size: 1.05rem; font-weight: 600; margin: 0.25rem 0; }
.ra-dash-title a { color: var(--fg); }
.ra-dash-title a:hover { color: var(--accent); }
.ra-dash-actions { flex-shrink: 0; }

@media (max-width: 640px) {
  .ra-dash-row { flex-direction: column; align-items: flex-start; }
}

/* ───── Badges on event cards ───── */
.ra-badges {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 3;
  display: inline-flex; flex-wrap: wrap; gap: 0.3rem;
  max-width: calc(100% - 3.2rem);
}
.ra-badge {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid transparent;
}
.ra-badge--pick     { background: var(--accent); }
.ra-badge--warn     { background: #f59e0b; color: #0b0b0b; }
.ra-badge--verify   { background: rgba(0,0,0,0.55); border-color: var(--line-strong); color: #d7d2cc; }
.ra-badge--new      { background: rgba(0,0,0,0.55); border-color: var(--accent); color: var(--accent); }
.ra-badge--promoted { background: rgba(241, 196, 15, 0.92); color: #0b0b0b; }  /* honest-gold: "organiser paid", not "we endorse" */

/* Compact inline badges (agenda rows, detail hero) */
.ra-agenda-title .ra-badges,
.ra-detail-title + .ra-badges {
  position: static;
  margin-left: 0.5rem;
}

/* Attending inline chip */
.ra-attending {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  white-space: nowrap;
}

/* ───── View toggle (grid ⇆ agenda) ───── */
.ra-view-toggle { display: flex; gap: 0; }
.ra-view {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-right-width: 0;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.ra-view:last-child { border-right-width: 1px; }
.ra-view:hover { color: var(--fg); }
.ra-view.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ───── Filter bar ───── */
.ra-filter-bar { margin: 1.4rem 0; }
.ra-filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.ra-filter-row .ra-form-row { margin-bottom: 0; }

/* ───── Agenda view ───── */
.ra-agenda { display: grid; gap: 1.6rem; }
.ra-agenda-day { display: grid; gap: 0.4rem; }
.ra-agenda-head {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.3rem;
}
.ra-agenda-day-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem; font-weight: 600; line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.ra-agenda-day-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.ra-agenda-day-meta b { font-size: 0.95rem; font-weight: 600; }
.ra-agenda-day-meta em {
  font-style: normal; color: var(--muted);
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.ra-agenda-rows { list-style: none; padding: 0; margin: 0; }
.ra-agenda-row {
  display: flex; align-items: center;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding: 0.15rem 0;
}
.ra-agenda-row:first-child { border-top: 0; }
.ra-agenda-row:hover { background: rgba(255,59,95,0.04); }
.ra-agenda-link {
  flex: 1;
  display: grid;
  grid-template-columns: 70px auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.5rem;
  color: var(--fg);
}
.ra-agenda-time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}
.ra-agenda-title { font-weight: 500; }
.ra-agenda-link:hover .ra-agenda-title { color: var(--accent); }
.ra-agenda-venue { color: var(--muted); font-size: 0.85rem; text-align: right; }
.ra-agenda-save { padding-right: 0.4rem; }

@media (max-width: 640px) {
  .ra-agenda-link { grid-template-columns: 60px 1fr; }
  .ra-agenda-link .ra-chip,
  .ra-agenda-venue { display: none; }
}

/* ───── Tabs ───── */
.ra-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.4rem;
}
.ra-tab {
  padding: 0.7rem 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.ra-tab:hover { color: var(--fg); }
.ra-tab.is-active { color: var(--fg); border-bottom-color: var(--accent); }

/* ───── Organizer index ───── */
.ra-org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.ra-org-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.15s;
}
.ra-org-card:hover { border-color: var(--line-strong); }
.ra-org-link { display: block; color: var(--fg); }
.ra-org-cover {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #151114;
  overflow: hidden;
  display: grid; place-items: center;
}
.ra-org-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.ra-org-card:hover .ra-org-cover img { transform: scale(1.04); }
.ra-org-glyph {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem; font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: -0.04em;
}
.ra-org-body { padding: 1rem 1.1rem 1.1rem; }
.ra-org-name { font-size: 1.15rem; font-weight: 600; margin: 0 0 0.3rem; }
.ra-org-follow {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 3;
}

/* ───── Organizer hero (reuses ra-detail-hero scaffold) ───── */
.ra-org-hero { min-height: 340px; }
.ra-detail-hero-cover {
  position: relative;
  aspect-ratio: 16 / 7;
  background: #151114;
  overflow: hidden;
  display: grid; place-items: center;
}
.ra-detail-hero-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ra-org-hero-glyph {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 9rem; font-weight: 600;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
}
.ra-detail-hero-cta {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 4;
}

/* ───── Past events list ───── */
.ra-past-list { list-style: none; padding: 0; margin: 0; }
.ra-past-list li { border-top: 1px solid var(--line); }
.ra-past-list li:first-child { border-top: 0; }
.ra-past-list a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  color: var(--fg);
}
.ra-past-list a:hover { color: var(--accent); }
.ra-past-date {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.ra-past-title { font-weight: 500; }

/* ───── Lineup (event detail) ───── */
.ra-lineup {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}
.ra-lineup-item { border-top: 1px solid var(--line); }
.ra-lineup-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0; color: var(--fg);
}
.ra-lineup-link:hover { color: var(--accent); }
.ra-lineup-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  display: grid; place-items: center;
}
.ra-lineup-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ra-lineup-glyph {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem; color: var(--muted);
}
.ra-lineup-text {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.ra-lineup-name {
  font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ra-lineup-role {
  font-size: 0.78rem;
  letter-spacing: 0.02em; text-transform: uppercase;
}

/* ───── Lineup edit page ───── */
.ra-lineup-edit { gap: 0.4rem; }
.ra-lineup-edit .ra-dash-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.4rem;
  border-top: 1px solid var(--line);
}
.ra-lineup-edit-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  display: grid; place-items: center;
}
.ra-lineup-edit-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ra-lineup-edit-form {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 100px auto;
  gap: 0.5rem;
  align-items: end;
  margin-top: 0.35rem;
}
.ra-lineup-edit-label {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ra-lineup-edit-label select,
.ra-lineup-edit-label input {
  font-size: 0.85rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
}
.ra-lineup-edit-actions {
  display: flex; flex-direction: column; gap: 0.3rem;
  align-items: stretch;
}
.ra-lineup-edit-actions .tt-inline { display: contents; }
.ra-lineup-edit-actions form button { min-width: 64px; }
@media (max-width: 720px) {
  .ra-lineup-edit .ra-dash-row { grid-template-columns: 48px 1fr; }
  .ra-lineup-edit-actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .ra-lineup-edit-form { grid-template-columns: 1fr 90px; }
}

/* ───── Performer picker (autocomplete) ───── */
.ra-picker-results { margin-top: 0.5rem; }
.ra-picker-list {
  list-style: none; padding: 0; margin: 0;
  border: 1px solid var(--line);
  background: var(--bg);
  max-height: 280px; overflow-y: auto;
}
.ra-picker-row { border-top: 1px solid var(--line); }
.ra-picker-row:first-child { border-top: 0; }
.ra-picker-row.is-picked { background: var(--line); }
.ra-picker-pick {
  width: 100%; text-align: left;
  background: transparent; border: 0; color: var(--fg);
  padding: 0.6rem 0.85rem; cursor: pointer; font: inherit;
}
.ra-picker-pick:hover { color: var(--accent); }
.ra-picker-empty { margin: 0.6rem 0 0; }
.ra-picker-chosen {
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0.7rem;
  border-left: 2px solid var(--line);
  font-size: 0.85rem;
}

/* ───── Form row (reusable) ───── */
.ra-form-row { margin-bottom: 1.1rem; }
.ra-form-row label {
  display: block;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 0.4rem;
}
.ra-form-row input,
.ra-form-row textarea,
.ra-form-row select {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  padding: 0.7rem 0.9rem;
  width: 100%;
  border-radius: 0;
  font: inherit;
}
.ra-form-row input:focus,
.ra-form-row textarea:focus,
.ra-form-row select:focus {
  outline: none; border-color: var(--accent);
}

/* ───── Follow button ───── */
.ra-follow {
  display: inline-flex;
}
.ra-follow button,
.ra-follow {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.ra-follow button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: transparent;
  border: 0;
  color: inherit;
  line-height: 1;
}
.ra-follow:hover { border-color: var(--accent); color: var(--accent); }
.ra-follow.is-following { border-color: var(--accent); color: var(--accent); }
.ra-follow.is-following:hover { color: #fff; background: var(--accent); }
.ra-follow.is-anon {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--muted);
}

/* ───── Attendees table ───── */
.ra-attendee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.ra-attendee-table th,
.ra-attendee-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.ra-attendee-table th {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ra-attendee-table tbody tr:hover { background: rgba(255, 59, 95, 0.03); }

/* ───── Check-in panel (staff-facing scanner) ───── */
.ra-ci-main {
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .ra-ci-main { grid-template-columns: 3fr 2fr; } }
.ra-ci-cam { display: flex; flex-direction: column; gap: 0.9rem; }
.ra-ci-video {
  width: 100%; aspect-ratio: 4/3;
  background: #111; border: 1px solid var(--line);
  object-fit: cover;
}
.ra-ci-side { display: flex; flex-direction: column; gap: 1rem; }
.ra-ci-result { padding: 1rem 1.2rem; background: var(--bg-2); border: 1px solid var(--line); }
.ra-ci-status {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem; font-weight: 600; margin: 0.3rem 0 0.2rem;
}
.ra-ci-status--info { color: var(--muted); }
.ra-ci-status--ok   { color: #49c27c; }
.ra-ci-status--warn { color: #f59e0b; }
.ra-ci-status--err  { color: #e24040; }
.ra-ci-guest { margin: 0; color: var(--fg); font-weight: 500; }

.ra-ci-manual { display: grid; gap: 0.5rem; padding: 1rem 1.2rem; background: var(--bg-2); border: 1px solid var(--line); }
.ra-ci-manual input { background: var(--bg); border: 1px solid var(--line-strong); color: var(--fg); padding: 0.7rem 0.8rem; }

.ra-ci-feed { list-style: none; padding: 0; margin: 0; font-family: ui-monospace, monospace; font-size: 0.85rem; }
.ra-ci-feed-item { padding: 0.35rem 0.6rem; border-top: 1px solid var(--line); }
.ra-ci-feed-item:first-child { border-top: 0; }
.ra-ci-feed-item--ok   { color: #49c27c; }
.ra-ci-feed-item--warn { color: #f59e0b; }
.ra-ci-feed-item--err  { color: #e24040; }

/* ───── QR ticket (on event_detail for approved guest) ───── */
.ra-qr {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  padding: 1.2rem; background: #f5f2ec; border: 1px solid var(--line);
  color: #0b0b0b;
}
.ra-qr img, .ra-qr svg { width: 240px; height: 240px; max-width: 100%; }
.ra-qr-code {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem; letter-spacing: 0.04em;
  word-break: break-all; text-align: center;
  color: #666;
}
.ra-qr-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600; margin: 0; color: #0b0b0b;
}
.ra-qr-note { color: #555; font-size: 0.82rem; margin: 0; text-align: center; }

/* Permissions-Policy allows camera=() globally; for /check-in/ pages we
   expose it via a same-origin page hook below. We can't override the site-wide
   Permissions-Policy header from template, so /check-in/ explicitly drops the
   restriction on the view's response (see SecurityHeadersMiddleware bypass). */

/* ───── Verified badge ───── */
/* Visible-from-across-the-room ✓ chip. Three tiers share the base class and
   differ in colour so Photo / Referred / Trusted are distinguishable at a
   glance, but all read as "verified" (green family + gold for trusted).
   Unverified never renders — the tag returns empty. */
.ra-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  vertical-align: middle;
}
.ra-verified svg { flex-shrink: 0; }
.ra-verified--photo     { background: rgba(73, 194, 124, 0.15); color: #49c27c; border: 1px solid rgba(73, 194, 124, 0.5); }
.ra-verified--referred  { background: rgba(73, 194, 124, 0.22); color: #6adf95; border: 1px solid rgba(73, 194, 124, 0.7); }
.ra-verified--trusted   { background: rgba(241, 196, 15, 0.18); color: #f1c40f; border: 1px solid rgba(241, 196, 15, 0.6); }
.ra-verified--inline { padding: 0.22rem 0.55rem 0.22rem 0.45rem; font-size: 0.7rem; }
.ra-verified--large  { padding: 0.45rem 0.9rem  0.45rem 0.75rem; font-size: 0.8rem; }
.ra-verified--mini   { padding: 0.2rem; font-size: 0; gap: 0; }
.ra-verified--mini svg { width: 12px; height: 12px; stroke-width: 3.2; }

/* ───── Save / bookmark heart ───── */
.ra-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ra-save button,
.ra-save {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  width: 34px; height: 34px;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}
.ra-save button { display: inline-flex; align-items: center; justify-content: center; border: 0; background: transparent; color: inherit; width: 100%; height: 100%; }
.ra-save:hover { color: var(--accent); border-color: var(--accent); }
.ra-save.is-saved { color: var(--accent); border-color: var(--accent); }
.ra-save.is-saved:hover { transform: scale(1.05); }
.ra-save.is-anon { color: var(--muted); }

/* Position the save button on cards */
.ra-card { position: relative; }
.ra-card-save { position: absolute; top: 0.8rem; right: 0.8rem; z-index: 4; }
.ra-news { position: relative; }
.ra-news-save { position: absolute; top: 0.6rem; right: 0.6rem; z-index: 4; }
.ra-hero-save { position: absolute; top: 1.4rem; right: 1.4rem; z-index: 4; }
.ra-rank-save { display: inline-flex; }

/* ───── Photo verification ───── */
.ra-verify-card { max-width: 640px; margin: 2rem auto; }
.ra-verify-status {
  padding: 0.85rem 1.1rem;
  border-left: 3px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  margin: 1.2rem 0;
  border-radius: 0 6px 6px 0;
}
.ra-verify-status--approved { border-left-color: #49c27c; }
.ra-verify-status--rejected { border-left-color: #e24040; }
.ra-verify-status em { font-style: normal; color: var(--accent); }

.ra-verify-challenge { margin: 1.2rem 0 1.6rem; }
.ra-verify-code {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem; font-weight: 600;
  letter-spacing: 0.18em;
  padding: 0.8rem 1rem;
  margin: 0.6rem 0;
  background: rgba(224, 62, 124, 0.08);
  border: 1px dashed var(--accent);
  border-radius: 10px;
  text-align: center;
  user-select: all;
  color: #fff;
}
.ra-verify-gesture-lede { margin: 1rem 0 0.3rem; }
.ra-verify-gesture {
  font-size: 1.1rem; font-weight: 500;
  padding: 0.7rem 0.9rem;
  margin: 0 0 0.4rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  color: #fff;
}
.ra-verify-rules {
  list-style: disc; padding-left: 1.1rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.55;
  margin: 0.6rem 0 0;
}

/* ───── Profile page ───── */
.ra-profile-head {
  max-width: 960px; margin: 2rem auto 0;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  align-items: start;
}
.ra-profile-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--line);
}
.ra-profile-avatar--placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card); color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem; font-weight: 600;
}
.ra-profile-meta h1 { margin: 0 0 0.4rem; font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
.ra-profile-badges { margin: 0 0 0.8rem; }
.ra-profile-bio { color: #d7d2cc; line-height: 1.55; margin: 0.2rem 0 0.6rem; max-width: 50ch; }
.ra-profile-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin: 1rem 0 0; }

.ra-review-list, .ra-vouch-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.ra-review-item, .ra-vouch-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 1rem 1.2rem;
}
.ra-review-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.4rem; }
.ra-review-event { font-weight: 600; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.ra-review-scores {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.85rem; margin: 0.2rem 0 0.5rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.ra-review-scores b { color: var(--fg); font-weight: 600; }
.ra-review-body { color: #d7d2cc; margin: 0; line-height: 1.55; }

.ra-vouch-item { display: flex; gap: 0.9rem; align-items: baseline; flex-wrap: wrap; }
.ra-vouch-from { font-weight: 600; }
.ra-vouch-note { color: #d7d2cc; font-style: italic; flex: 1 1 50%; }

@media (max-width: 640px) {
  .ra-profile-head { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .ra-profile-bio { max-width: 100%; }
  .ra-profile-actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
