/* ─── Tokens — venue blackout / live concert ────────────────────────────
   Warm dark base (a venue right before showtime), cream text, one live-red
   accent. Photography is the only color injection. */
:root {
  /* Surfaces — warm black, never cool blue-black */
  --bg-0:  #0d0b09;       /* primary canvas: night-of-show black */
  --bg-1:  #16130f;       /* lifted surface */
  --bg-2:  #221c16;       /* card surface */
  --panel: rgba(22, 19, 15, 0.78);
  --panel-solid: #16130f;
  --border: rgba(245, 241, 234, 0.10);
  --border-strong: rgba(245, 241, 234, 0.22);
  --ink:   #f5f1ea;

  /* Type — warm cream against black, very high contrast */
  --text:  #f5f1ea;
  --muted: #9d9389;
  --dim:   #5e564d;

  /* Live recording red — single accent. Photographs do the rest of the color. */
  --accent:    #e44d2e;   /* slightly punchier than #e44d2e on dark */
  --accent-2:  #f5f1ea;   /* cream — used as on-dark "text" accent */
  --accent-3:  #ec8047;   /* warm sand-orange (status only) */
  --warn:      #e2b659;   /* amber */
  --bad:       #f66060;   /* coral */
  --good:      #4ec77f;   /* live green */

  --grad-brand: linear-gradient(180deg, #e44d2e 0%, #9c2014 100%);
  --grad-pink:  linear-gradient(180deg, #e44d2e 0%, #9c2014 100%);
  --grad-success: linear-gradient(180deg, #4ec77f 0%, #4ec77f 100%);

  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.45);

  --radius:   8px;
  --radius-s: 4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  color: var(--text);
  background: var(--bg-0);
  font-family: 'Heebo', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Per-language font stacks */
html[lang="en"] body { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif; }
html[lang="ru"] body { font-family: 'Manrope', 'Inter', system-ui, sans-serif; }

body {
  /* Warm dark canvas — like a venue at showtime, with a single hint of red glow
     in the upper-right corner suggesting stage lights from offscreen. */
  background:
    radial-gradient(900px 500px at 92% -10%, rgba(228, 77, 46, 0.10) 0%, transparent 55%),
    radial-gradient(700px 400px at 0% 110%, rgba(245, 241, 234, 0.04) 0%, transparent 55%),
    var(--bg-0);
  background-attachment: fixed;
}

button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ─── Top bar ────────────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  padding: 16px 40px;
  background: rgba(13, 11, 9, 0.78);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 4px;
  background: var(--accent);
  position: relative;
  box-shadow: 0 0 16px -4px rgba(228, 77, 46, 0.55);
}
.logo-mark::after {
  content: ''; position: absolute; inset: 7px;
  border-radius: 50%;
  background: var(--bg-0);
}
.logo-mark::before {
  content: ''; position: absolute; inset: 11px;
  border-radius: 50%;
  background: var(--accent);
}
.brand-name {
  font-weight: 800; font-size: 16px; letter-spacing: -0.3px; line-height: 1.1;
  background: none; -webkit-text-fill-color: var(--text); color: var(--text);
}
.brand-sub {
  font-size: 10px; color: var(--muted); font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
}

.topnav { display: flex; gap: 0; justify-content: center; }
.navlink {
  padding: 8px 16px; border-radius: 0; font-size: 13px; font-weight: 600;
  color: var(--muted); cursor: pointer; user-select: none;
  letter-spacing: 0.4px;
  transition: all 0.18s;
}
.navlink:hover { color: var(--text); background: transparent; }
.navlink.active {
  color: var(--text);
  background: transparent;
  border: 0;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.who { display: flex; align-items: center; gap: 10px; position: relative; }

/* ─── User menu button — discreet auth-style trigger ─────────────────── */
.user-menu-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 14px 5px 6px;
  color: var(--text); cursor: pointer;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
  transition: background 0.15s, border-color 0.15s;
}
[dir="rtl"] .user-menu-btn { padding: 5px 6px 5px 14px; }
.user-menu-btn:hover { background: rgba(245, 241, 234, 0.06); border-color: var(--text); }
.user-menu-btn .chevron {
  width: 14px; height: 14px; opacity: 0.55;
  transition: transform 0.2s;
}
.user-menu-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.user-firstname { color: var(--text); }

/* Avatar disc — round, accent-tinted by role */
.user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  border: 1px solid var(--border);
}
.user-avatar svg.icon { width: 14px; height: 14px; }
.user-avatar.lg { width: 44px; height: 44px; font-size: 16px; }
.user-avatar.lg svg.icon { width: 18px; height: 18px; }
.user-avatar.role-organizer { background: rgba(228, 77, 46, 0.14); color: var(--accent); border-color: rgba(228, 77, 46, 0.30); }
.user-avatar.role-artist    { background: rgba(78, 199, 127, 0.12); color: var(--good);  border-color: rgba(78, 199, 127, 0.30); }
.user-avatar.role-venue     { background: rgba(226, 182, 89, 0.14); color: var(--warn);  border-color: rgba(226, 182, 89, 0.30); }
.user-avatar.role-customer  { background: rgba(245, 241, 234, 0.06); color: var(--muted); }

/* ─── User drawer panel ──────────────────────────────────────────────── */
.user-drawer {
  position: absolute; top: calc(100% + 8px);
  /* RTL/LTR neutral horizontal alignment */
  inset-inline-end: 0;
  width: 320px; max-width: calc(100vw - 32px);
  background: var(--panel-solid);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  animation: drawer-in 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.user-drawer.hidden { display: none; }
@keyframes drawer-in {
  from { transform: translateY(-6px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.user-drawer-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.user-drawer-id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.user-fullname  { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.1px; }
.user-role-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; color: var(--muted);
  letter-spacing: 1.2px; text-transform: uppercase;
}

.user-balance-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.user-balance-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; color: var(--muted); font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.user-balance-val {
  font-family: 'Heebo', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--text);
  letter-spacing: -0.3px;
}

.user-switch-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; color: var(--muted); font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 14px 0 8px;
}

.user-list { display: flex; flex-direction: column; max-height: 280px; overflow-y: auto; gap: 2px; }
.user-list .role-group { padding-top: 4px; }
.user-list .role-group-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; color: var(--dim); font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 8px 4px 4px;
}
.user-list .user-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
}
.user-list .user-row:hover { background: rgba(245, 241, 234, 0.06); }
.user-list .user-row.active {
  background: rgba(228, 77, 46, 0.10);
  border: 1px solid rgba(228, 77, 46, 0.35);
  padding: 5px 7px;        /* compensate for added border */
}
.user-list .user-row .name { font-size: 13px; font-weight: 500; color: var(--text); }

.user-demo-tag {
  margin: 14px -18px -14px;
  padding: 9px 18px;
  background: rgba(228, 77, 46, 0.07);
  border-top: 1px solid rgba(228, 77, 46, 0.20);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; color: var(--accent); font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  text-align: center;
}

/* ─── Pages ──────────────────────────────────────────────────────────────── */
.page { display: none; padding: 0 40px 80px; max-width: 1320px; margin: 0 auto; }
.page.active { display: block; animation: fadein 0.3s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ─── Hero — full-bleed concert silhouette photo with Ken Burns motion ── */
.hero {
  position: relative;
  border: 0;
  padding: 120px 0 90px;
  margin: 0 -40px;       /* break out of .page padding for full-bleed */
  border-bottom: 0;
  overflow: hidden;
  min-height: 620px;
  background: var(--text);
  color: #fff;
  isolation: isolate;
}
.hero > .hero-inner { padding-inline: 40px; }

/* Photo backdrop with slow zoom + pan (Ken Burns) */
.hero-bg-photo {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photo img {
  position: absolute;
  top: 50%; left: 50%;
  width: 110%; height: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1);
  animation: kenburns 24s ease-in-out infinite alternate;
  filter: grayscale(0.35) contrast(1.05);
  transform-origin: center center;
}
@keyframes kenburns {
  0%   { transform: translate(-50%, -50%) scale(1.0)  translate(0, 0); }
  100% { transform: translate(-50%, -50%) scale(1.12) translate(-2%, 1%); }
}

/* Dark gradient overlay so the headline reads against any photo region */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.40) 0%, rgba(20,16,12,0.20) 35%, rgba(20,16,12,0.85) 100%),
    linear-gradient(90deg,  rgba(0, 0, 0, 0.65) 0%, rgba(20,16,12,0.10) 60%);
  z-index: 1;
}
[dir="rtl"] .hero-bg-overlay {
  background:
    linear-gradient(180deg, rgba(20,16,12,0.40) 0%, rgba(20,16,12,0.20) 35%, rgba(20,16,12,0.85) 100%),
    linear-gradient(270deg, rgba(0, 0, 0, 0.65) 0%, rgba(20,16,12,0.10) 60%);
}

/* Photo failed to load? Fall back to ink black */
.hero-bg-photo.photo-failed { background: var(--text); }

/* Hero text → white over the photo */
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero h1 em { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.hero-sub { color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 12px rgba(0,0,0,0.3); }

/* Hero CTAs over photo */
.hero .btn { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); color: #fff; backdrop-filter: blur(6px); }
.hero .btn:hover { background: #fff; color: var(--text); }
.hero .btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero .btn.primary:hover { background: #9c2014; border-color: #9c2014; color: #fff; }

/* Stats inside hero — invert for dark backdrop */
.hero-stats { border-color: rgba(255,255,255,0.20); }
.hero-stats .stat + .stat { border-inline-start-color: rgba(255,255,255,0.20); }
.hero-stats .stat-num { color: #fff; -webkit-text-fill-color: #fff; }
.hero-stats .stat-label { color: rgba(255,255,255,0.65); }

/* On reduced motion, freeze the Ken Burns zoom */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo img { animation: none; }
}

@media (max-width: 700px) {
  .hero { min-height: 480px; padding: 90px 0 70px; }
}

/* ─── Tab banner — slim photographic header for non-discover tabs ───── */
.tab-banner {
  position: relative;
  height: 220px;
  margin: 0 -40px 56px;
  overflow: hidden;
  background: var(--text);
  isolation: isolate;
}
.tab-banner img {
  position: absolute;
  top: 50%; left: 50%;
  width: 110%; height: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1);
  animation: kenburns 30s ease-in-out infinite alternate;
  filter: grayscale(0.5) contrast(1.05);
}
.tab-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,11,9,0.30) 0%, rgba(13,11,9,0.55) 70%, rgba(13,11,9,0.95) 100%),
    linear-gradient(90deg,  rgba(13,11,9,0.55) 0%, rgba(13,11,9,0.10) 60%);
}
[dir="rtl"] .tab-banner-overlay {
  background:
    linear-gradient(180deg, rgba(13,11,9,0.30) 0%, rgba(13,11,9,0.55) 70%, rgba(13,11,9,0.95) 100%),
    linear-gradient(270deg, rgba(13,11,9,0.55) 0%, rgba(13,11,9,0.10) 60%);
}

/* Per-tone color treatment — slight tint per tab so they feel distinct */
.tab-banner[data-tone="create"]  img { filter: grayscale(0.40) contrast(1.10) brightness(0.85); }
.tab-banner[data-tone="how"]     img { filter: grayscale(0.55) contrast(1.05) brightness(0.78) sepia(0.18); }
.tab-banner[data-tone="roadmap"] img { filter: grayscale(0.20) contrast(1.10) brightness(0.85) hue-rotate(-8deg); }

.tab-banner-eyebrow {
  position: absolute; left: 0; right: 0; bottom: 26px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.tab-banner-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: live-dot 1.6s ease-out infinite;
}

.tab-banner.photo-failed img { display: none; }
.tab-banner.photo-failed { background: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .tab-banner img { animation: none; }
}
@media (max-width: 700px) {
  .tab-banner { height: 160px; margin: 0 -16px 36px; }
  .tab-banner-eyebrow { padding: 0 16px; bottom: 18px; }
}
/* Hero-bg neutralized — paper-white canvas, no animated mesh */
.hero-bg { display: none; }
@keyframes mesh-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(2%, -1%) scale(1.05); }
  100% { transform: translate(-1%, 2%) scale(1.02); }
}
/* Grid overlay */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 241, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
/* Noise grain texture overlay */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  z-index: 1;
  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.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.32 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.45; mix-blend-mode: overlay;
}
/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.55; pointer-events: none; z-index: 0;
  animation: orb-float 12s ease-in-out infinite alternate;
}
.orb-1 { width: 280px; height: 280px; background: var(--accent);   top: -40px;   right: -40px; }
.orb-2 { width: 220px; height: 220px; background: var(--accent-2); bottom: -60px; left: 30%;    animation-duration: 16s; animation-delay: -3s; }
.orb-3 { width: 180px; height: 180px; background: var(--accent-3); top: 30%; left: -40px;       animation-duration: 14s; animation-delay: -7s; }
@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-inner {
  position: relative; z-index: 2; padding: 0;
  display: flex; flex-direction: column; gap: 24px;
  max-width: 660px;     /* keep text on one side, leaving room for silhouette */
}

/* Live red dot + label — like a recording indicator */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 600;
  text-shadow: none;
}
.hero-eyebrow::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  animation: live-dot 1.6s ease-out infinite;
}
@keyframes live-dot {
  0%   { box-shadow: 0 0 0 0 rgba(228, 77, 46, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(214, 64, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 64, 44, 0); }
}

/* Editorial display headline — black ink, no gradient text, no shadow */
.hero h1 {
  margin: 0;
  font-family: 'Heebo', 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8.5vw, 124px);
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--text);
  text-shadow: none;
}
html[lang="en"] .hero h1, html[lang="ru"] .hero h1 {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  letter-spacing: -3.5px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: italic;
  font-family: 'Fraunces', 'Heebo', serif;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  background: none;
  filter: none;
  font-weight: 700;
  margin: 0 0.05em;
}
.hero-sub {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  margin: 8px 0 0;
  font-weight: 400;
}
/* Editorial stats — like a magazine sidebar */
.hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0; margin-top: 36px; max-width: 900px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 20px 22px 18px 0;
  backdrop-filter: none;
}
.stat + .stat { border-inline-start: 1px solid var(--border); padding-inline-start: 22px; }
.stat-num {
  font-family: 'Heebo', 'Space Grotesk', sans-serif;
  font-size: 36px; font-weight: 800; line-height: 1;
  background: none;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  letter-spacing: -1px;
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: var(--muted); margin-top: 8px;
  letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600;
}

/* ─── Filters ────────────────────────────────────────────────────────────── */
.filters {
  display: flex; gap: 0;
  margin: 36px 0 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.filter-chip {
  background: transparent; border: 0;
  color: var(--muted);
  padding: 14px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.filter-chip:hover { color: var(--text); border-color: transparent; }
.filter-chip.active {
  color: var(--text);
  background: transparent;
  border-color: var(--accent);
}

/* ─── Event grid — generous gaps, photo-led cards ────────────────────── */
.events-grid {
  display: grid; gap: 48px 32px;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  margin-top: 12px;
}

/* Editorial event card — photo dominates, clean info row underneath */
.event-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
}
.event-card:hover { transform: translateY(-4px); }
.event-card:hover .event-cover img.cover-photo { transform: scale(1.04); }

.event-cover {
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);  /* fallback while image loads */
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.7);
}
.event-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(13, 11, 9, 0.85) 100%);
  z-index: 1; pointer-events: none;
}
.event-cover::after { display: none; }   /* drop the diagonal hatching */

.event-cover img.cover-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  opacity: 0;
}
.event-cover img.cover-photo.loaded { opacity: 1; }

.event-cover-content {
  position: absolute; inset: 0;
  padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
  gap: 8px;
}
.cover-genre {
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(13, 11, 9, 0.55);
  border: 1px solid rgba(245, 241, 234, 0.18);
  padding: 4px 10px; color: #fff; font-weight: 600;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.cover-status {
  position: absolute; top: 18px; right: 18px; left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 4px;
  background: rgba(13, 11, 9, 0.55);
  border: 1px solid rgba(245, 241, 234, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
[dir="rtl"] .cover-status { right: auto; left: 18px; }
.cover-date {
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95); font-weight: 600;
}

/* Editorial info row below the cover */
.event-body {
  padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.event-body h3 {
  margin: 0;
  font-family: 'Heebo', 'Inter', sans-serif;
  font-size: 22px; font-weight: 700; line-height: 1.18;
  letter-spacing: -0.4px;
  color: var(--text);
}
.event-meta {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; letter-spacing: 0.8px;
  color: var(--muted);
  text-transform: uppercase;
}
.event-meta .dot { color: var(--dim); }

.bar {
  height: 7px; background: rgba(245, 241, 234, 0.08);
  border-radius: 999px; overflow: hidden; position: relative;
}
.bar > span {
  display: block; height: 100%;
  background: var(--grad-brand);
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.bar { background: rgba(245, 241, 234, 0.08); height: 4px; }
.bar > span {
  background: var(--accent);
  animation: none;            /* drop the shimmer; keep it editorial */
}

.progress-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; margin-top: 2px;
}
.progress-row .pct { color: var(--accent); font-weight: 700; }
.progress-row .raised { color: var(--text); font-weight: 700; }
.progress-row small { color: var(--muted); font-weight: 400; }

.next-tier-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0;
  color: var(--text); font-size: 12px; font-weight: 600;
  padding: 0; align-self: flex-start;
  letter-spacing: 0.4px;
}
.next-tier-badge::before {
  content: '↓'; font-weight: 800; color: var(--accent);
}

/* ─── Editorial status badges — uppercase letterspaced labels ──────────── */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase;
}
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status.draft     { background: rgba(226, 182, 89, 0.14); color: var(--warn); }
.status.funding   { background: rgba(228, 77, 46, 0.16);  color: var(--accent); animation: pulse 2.4s ease infinite; }
.status.funded    { background: rgba(78, 199, 127, 0.16); color: var(--good); }
.status.cancelled { background: rgba(246, 96, 96, 0.14);  color: var(--bad); }
.status.completed { background: rgba(245, 241, 234, 0.08); color: var(--text); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(168, 85, 247, 0); }
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
/* Editorial buttons — sharp corners, monochrome with one accent */
.btn {
  background: transparent; border: 1px solid var(--text);
  color: var(--text); padding: 11px 22px; border-radius: 4px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--text); color: var(--bg-0); transform: none; border-color: var(--text); }
.btn.primary {
  background: var(--accent); border: 1px solid var(--accent);
  color: #fff; font-weight: 700;
  box-shadow: 0 6px 24px -8px rgba(228, 77, 46, 0.55);
}
.btn.primary:hover { background: #c0381f; border-color: #c0381f; transform: none; color: #fff; }
.btn.primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn.ghost:hover { background: var(--text); color: var(--bg-0); }
.btn.danger { color: var(--bad); border-color: var(--bad); background: transparent; }
.btn.danger:hover { background: var(--bad); color: #fff; }
.btn.small { padding: 8px 14px; font-size: 11px; }
.btn.big { padding: 16px 36px; font-size: 14px; }
.btn.tiny { padding: 5px 10px; font-size: 10px; border-radius: 3px; letter-spacing: 0.8px; }

/* ─── Form ───────────────────────────────────────────────────────────────── */
.form-wrap {
  background: transparent; border: 0;
  border-radius: 0; padding: 60px 0 80px;
  max-width: 760px; margin: 0 auto;
  backdrop-filter: none;
}
.form-head h2 {
  margin: 0 0 8px; font-family: 'Heebo', sans-serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  letter-spacing: -1.4px; line-height: 1.05;
}
.form-head p { color: var(--muted); margin: 0 0 36px; font-size: 17px; line-height: 1.55; max-width: 600px; }

.form-section { margin: 36px 0; padding-top: 24px; border-top: 1px solid var(--border); }
.form-section h3 {
  margin: 0 0 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; color: var(--text); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px;
}
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hint-inline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: var(--muted); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 500;
  margin-inline-start: 8px;
}

.grid-2 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-wrap label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: var(--muted); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600;
}
.form-wrap input, .form-wrap select {
  background: transparent; color: var(--text);
  border: 0; border-bottom: 1px solid var(--border-strong); border-radius: 0;
  padding: 10px 0; font-size: 16px; font-weight: 500;
  font-family: 'Heebo', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.15s;
}
.form-wrap input::placeholder { color: var(--dim); }
.form-wrap select option { background: var(--bg-1); color: var(--text); }
.form-wrap input:focus, .form-wrap select:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: transparent;
}

.rows { display: flex; flex-direction: column; gap: 8px; }
.row-item {
  display: grid; gap: 12px; align-items: center;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 36px;
  background: transparent; border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0; padding: 14px 0;
}
.row-item input, .row-item select {
  background: transparent; color: var(--text);
  border: 0; border-bottom: 1px solid var(--border); border-radius: 0;
  padding: 8px 4px; font-size: 14px;
  font-family: inherit;
  text-transform: none; letter-spacing: 0;
}
.row-item input:focus, .row-item select:focus { border-bottom-color: var(--accent); }
.row-item .del {
  background: transparent; border: 0; color: var(--muted);
  border-radius: 0; padding: 8px; font-size: 18px;
}
.row-item .del:hover { color: var(--bad); }

.form-actions { display: flex; justify-content: flex-end; margin-top: 36px; }

/* ─── How it works — editorial step list ─────────────────────────────── */
.how-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 0 80px; }
.how-wrap h2 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 800;
  letter-spacing: -1.6px; line-height: 1.05; margin: 0 0 48px;
}
.how-steps {
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.step {
  background: transparent; border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0; padding: 28px 24px 28px 0;
  position: relative;
  transition: none;
}
.step + .step { border-inline-start: 1px solid var(--border); padding-inline-start: 24px; }
.step:hover { transform: none; }
.step-num {
  position: static; width: auto; height: auto; border-radius: 0;
  background: none; box-shadow: none;
  display: block;
  font-family: 'Heebo', sans-serif;
  font-weight: 800; font-size: 36px; color: var(--accent);
  margin-bottom: 14px; line-height: 1;
  letter-spacing: -1px;
}
.step h3 {
  margin: 0 0 10px; font-size: 18px; font-weight: 700;
  padding: 0; letter-spacing: -0.2px;
}
.step p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.6; }

/* ─── Modal ──────────────────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: modalfade 0.2s;
}
.modal.hidden { display: none; }
@keyframes modalfade { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  background: var(--panel-solid);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 0;
  width: min(980px, 100%); max-height: 92vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: modalscale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalscale { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-cover {
  height: 320px; position: relative; flex-shrink: 0;
  background: var(--bg-2);
}
.modal-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.30) 0%, rgba(20,16,12,0.10) 50%, rgba(20,16,12,0.85) 100%);
  z-index: 1;
}
.modal-cover::after { display: none; }
.modal-cover-content {
  position: absolute; inset: 0; padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
  gap: 14px;
}
.modal-close {
  position: absolute; top: 18px; right: 18px; left: auto; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,241,234,0.30); color: #fff;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.modal-close:hover { background: var(--accent); border-color: var(--accent); }
[dir="rtl"] .modal-close { right: auto; left: 18px; }
.modal-title-block h2 {
  margin: 8px 0 4px;
  font-family: 'Heebo', 'Inter', sans-serif;
  font-size: 36px; line-height: 1.05; letter-spacing: -1px; font-weight: 800;
  color: #fff;
}
.modal-meta {
  color: rgba(255,255,255,0.85);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}

.modal-content {
  padding: 32px 36px; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 28px;
}

.kv-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kv {
  background: transparent; border: 0; border-radius: 0; padding: 16px 18px 14px 0;
}
.kv + .kv { border-inline-start: 1px solid var(--border); padding-inline-start: 18px; }
.kv dt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; color: var(--muted); letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 6px; font-weight: 600;
}
.kv dd {
  margin: 0; font-size: 22px; font-weight: 800;
  font-family: 'Heebo', sans-serif; letter-spacing: -0.6px;
  color: var(--text);
}
.kv dd small { font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0; }

.section-title {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--text); padding-bottom: 10px;
}
.section-title h4 {
  margin: 0; font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--text); text-transform: uppercase; letter-spacing: 1.4px;
}

.tier-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; margin-top: 6px;
  border-bottom: 1px solid var(--border);
}
.tier-pill {
  display: flex; flex-direction: column; gap: 4px;
  background: transparent; border: 0; border-top: 1px solid var(--border);
  border-radius: 0; padding: 14px 16px 14px 0; min-width: 0;
}
.tier-pill + .tier-pill { border-inline-start: 1px solid var(--border); padding-inline-start: 16px; }
.tier-pill .tier-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.tier-pill .tier-price {
  font-size: 20px; font-weight: 800;
  font-family: 'Heebo', sans-serif; letter-spacing: -0.4px; color: var(--text);
}
.tier-pill .tier-prog {
  height: 2px; background: rgba(20,16,12,0.08); border-radius: 0; margin-top: 4px; overflow: hidden;
}
.tier-pill .tier-prog > span { display: block; height: 100%; background: var(--accent); }
.tier-pill .tier-sold {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.6px;
}
.tier-pill.active .tier-price { color: var(--accent); }
.tier-pill.active { background: rgba(228, 77, 46, 0.06); }
.tier-pill.full { opacity: 0.4; }
.tier-pill.full .tier-name { text-decoration: line-through; }

.party-list, .ticket-list {
  display: flex; flex-direction: column; gap: 0;
}
.party-row, .ticket-row {
  display: grid; grid-template-columns: 38px 1fr auto auto auto;
  gap: 14px; align-items: center;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--border);
  border-radius: 0; padding: 14px 0;
}
.party-row:last-child, .ticket-row:last-child { border-bottom: 0; }
.party-row .avatar, .ticket-row .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--text);
  color: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.party-row .who-info { display: flex; flex-direction: column; gap: 2px; }
.party-row .who-name { font-weight: 700; font-size: 15px; color: var(--text); letter-spacing: -0.1px; }
.party-row .who-bio {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: var(--muted); letter-spacing: 0.6px;
}
.party-row .quote {
  font-weight: 800; font-family: 'Heebo', sans-serif; font-size: 17px; color: var(--text);
}
.ticket-row .tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted) !important;
}
.ticket-row .who { font-size: 14px; color: var(--text); font-weight: 500; }
.ticket-row .price { font-weight: 800; font-family: 'Heebo', sans-serif; font-size: 16px; }

.platform-row .avatar { background: var(--accent); }
.platform-row .who { color: var(--accent); font-weight: 600; }

.action-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: transparent;
  border: 0; border-radius: 0; padding: 0;
  margin: 8px 0;
}

.ledger-list { display: flex; flex-direction: column; gap: 0; }
.ledger-row {
  display: grid; grid-template-columns: 100px 1fr auto auto;
  gap: 16px; padding: 12px 0; align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.ledger-row:last-child { border-bottom: 0; }
.ledger-kind {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent; padding: 0;
  border-radius: 0; text-align: start;
  color: var(--muted);
}
.ledger-row .amt { font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.ledger-row .amt.neg { color: var(--bad); }
.ledger-row .amt.pos { color: var(--good); }
.ledger-time { color: var(--dim); font-size: 11px; }

table.tickets, table.vendors { display: none; }

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--panel-solid); border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 4px; padding: 14px 22px; z-index: 100;
  font-weight: 500; box-shadow: var(--shadow-lg);
  animation: toast-in 0.3s ease;
}
.toast.hidden { display: none; }
.toast.success { border-color: var(--good); border-left: 3px solid var(--good); }
.toast.error   { border-color: var(--bad); border-left: 3px solid var(--bad); }
@keyframes toast-in { from { transform: translate(-50%, 20px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

/* ─── Language switcher ──────────────────────────────────────────────────── */
.lang-switch {
  display: inline-flex; gap: 0;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: 4px; padding: 0;
}
.lang-btn {
  background: transparent; border: 0; color: var(--muted);
  padding: 6px 11px; border-radius: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.6px;
  transition: background 0.15s, color 0.15s; min-width: 32px;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--text); color: var(--bg-0);
  box-shadow: none;
}

/* ─── Hero CTAs ──────────────────────────────────────────────────────────── */
.hero-ctas {
  display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}

/* ─── Trust strip ────────────────────────────────────────────────────────── */
/* ─── Editorial section headings ──────────────────────────────────────── */
.trust-strip,
.testimonials,
.faq,
.newsletter {
  margin: 88px 0 0;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.trust-strip h2,
.testimonials h2,
.faq h2,
.roadmap-wrap h2 {
  font-family: 'Heebo', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 36px;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: var(--text);
  max-width: 760px;
}

/* ─── Trust — clean text, no card chrome, no glowing icons ──────────── */
.trust-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.trust-card {
  background: transparent; border: 0;
  border-top: 2px solid var(--text);
  border-radius: 0; padding: 22px 0 0;
  transition: none;
}
.trust-card:hover { transform: none; border-color: var(--accent); }
.trust-icon {
  width: auto; height: auto; border-radius: 0;
  background: none;
  font-size: 18px; color: var(--accent);
  margin-bottom: 10px;
  display: inline-flex; align-items: center;
}
.trust-icon svg.icon { width: 22px; height: 22px; }
.trust-card h3 {
  margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.2px;
}
.trust-card p {
  margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6;
}

/* ─── Testimonials — magazine pull-quote treatment ────────────────────── */
.testimonial-grid {
  display: grid; gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: transparent;
  border: 0;
  border-top: 2px solid var(--text);
  border-radius: 0;
  padding: 22px 0 0;
  position: relative; overflow: visible;
}
.testimonial::before { display: none; }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 72px; line-height: 0.6;
  color: var(--accent); opacity: 1;
  margin: 0 0 12px;
  font-weight: 700;
}
.testimonial p {
  margin: 0 0 22px;
  font-family: 'Fraunces', 'Heebo', serif;
  font-size: 19px; line-height: 1.45;
  color: var(--text); font-weight: 500;
  font-style: italic;
  letter-spacing: -0.2px;
}
.testimonial footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--text);
  color: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.t-name { font-weight: 700; font-size: 14px; color: var(--text); letter-spacing: -0.1px; }
.t-role {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--muted); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}

/* ─── FAQ — flat list with hairline dividers ─────────────────────────── */
.faq { max-width: 920px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  background: transparent; border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0; padding: 0; overflow: hidden;
  transition: none;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item[open] { border-color: var(--border); }
.faq-item summary {
  cursor: pointer; padding: 22px 0;
  font-size: 18px; font-weight: 700; letter-spacing: -0.2px;
  color: var(--text);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--accent); font-size: 28px; font-weight: 300; line-height: 1;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0; padding: 0 0 22px;
  color: var(--muted); font-size: 16px; line-height: 1.65;
  max-width: 720px;
}

/* ─── Newsletter — the one red moment of the page ────────────────────── */
.newsletter {
  background: var(--accent);
  color: #fff;
  border-radius: 0;
  border: 0;
  padding: 80px 56px;
  position: relative; overflow: hidden;
  margin: 88px -40px 0;
}
.newsletter::before { display: none; }
/* Subtle texture noise on the red panel for richness */
.newsletter::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 60%),
    radial-gradient(800px 400px at 90% -10%, rgba(0,0,0,0.18) 0%, transparent 55%);
}
.newsletter-inner {
  position: relative; z-index: 1;
  display: grid; gap: 36px;
  grid-template-columns: 1.4fr 1fr; align-items: end;
  max-width: 1320px; margin: 0 auto;
}
.newsletter-copy h2 {
  margin: 0 0 12px;
  font-family: 'Heebo', sans-serif;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.05; letter-spacing: -1.5px;
  color: #fff;
}
.newsletter-copy p {
  margin: 0; color: rgba(255,255,255,0.85);
  font-size: 16px; line-height: 1.55; max-width: 520px;
}
.newsletter-form { display: flex; gap: 0; align-items: stretch; }
.newsletter-form input {
  flex: 1; min-width: 0;
  background: transparent;
  border: 0; border-bottom: 2px solid rgba(255,255,255,0.45);
  border-radius: 0; padding: 14px 0;
  color: #fff; font-size: 17px;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus {
  outline: none; border-bottom-color: #fff;
}
.newsletter-form .btn {
  padding: 14px 24px; font-size: 12px; border-radius: 0;
  background: #fff; border-color: #fff; color: var(--accent);
  margin-inline-start: 12px;
}
.newsletter-form .btn:hover { background: var(--bg-0); border-color: var(--bg-0); color: var(--accent); }

/* ─── Roadmap ────────────────────────────────────────────────────────────── */
.roadmap-wrap { max-width: 1200px; margin: 0 auto; }
.roadmap-intro { color: var(--muted); margin: -12px 0 28px; font-size: 16px; }
.roadmap-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.roadmap-cat {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px;
}
.roadmap-cat h3 {
  margin: 0 0 14px; font-size: 14px; font-weight: 700;
  color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.6px;
  display: flex; align-items: center; gap: 8px;
}
.roadmap-cat h3::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
}
.roadmap-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px; line-height: 1.4;
}
.roadmap-item:last-child { border-bottom: 0; }
.roadmap-status {
  flex-shrink: 0;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
  padding: 3px 8px; border-radius: 999px; min-width: 60px; text-align: center;
}
.roadmap-status.done  { background: rgba(78, 199, 127, 0.16);  color: var(--good); }
.roadmap-status.next  { background: rgba(228, 77, 46, 0.10);  color: var(--accent); }
.roadmap-status.later { background: rgba(245, 241, 234, 0.06);   color: var(--text); }
.roadmap-text { color: var(--text); }

/* ─── Footer — deepest black, contrast with the body's near-black ─────── */
.footer {
  margin-top: 0;
  background: #000;
  color: var(--text);
  border-top: 0;
  padding: 80px 40px 32px;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; gap: 40px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { color: var(--bg-0); -webkit-text-fill-color: var(--bg-0); }
.footer-brand .logo-mark { background: var(--accent); }
.footer-brand .logo-mark::after { background: var(--text); }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 13.5px; max-width: 280px; line-height: 1.55; margin: 0; }
.footer-col h4 {
  margin: 0 0 16px; font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.4px;
}
.footer-col a {
  display: block; padding: 6px 0;
  color: rgba(255,255,255,0.85); font-size: 14px; text-decoration: none;
  cursor: pointer; transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1320px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  text-align: start;
}

/* ─── Confirm dialog ─────────────────────────────────────────────────────── */
.confirm-card {
  background: var(--panel-solid); border: 1px solid var(--border-strong);
  border-radius: 4px; padding: 28px;
  width: min(440px, 100%);
  box-shadow: var(--shadow-lg);
  animation: modalscale 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.confirm-card p { margin: 0 0 22px; font-size: 15px; line-height: 1.55; }
.confirm-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ─── Inline SVG icons (uniform sizing) ──────────────────────────────────── */
svg.icon {
  display: inline-block; vertical-align: -0.15em;
  width: 1em; height: 1em;
  flex-shrink: 0;
}
[data-icon] {
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-icon svg.icon   { width: 24px; height: 24px; color: var(--accent-2); }
.avatar svg.icon       { width: 18px; height: 18px; color: rgba(255,255,255,0.95); }
.t-avatar svg.icon     { width: 18px; height: 18px; color: white; }
.party-row .avatar svg.icon { width: 18px; height: 18px; }
.modal-meta svg.icon   { width: 14px; height: 14px; opacity: 0.9; vertical-align: middle; }
.modal-meta { display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.meta-sep { opacity: 0.4; }
.roadmap-cat h3 svg.icon { width: 14px; height: 14px; }

/* ─── Custom cursor — system cursor HIDDEN when this is active ─────────── */
body.cursor-on,
body.cursor-on *  { cursor: none !important; }
body.cursor-on input,
body.cursor-on textarea,
body.cursor-on [contenteditable="true"],
body.cursor-on select { cursor: text !important; }

.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: none;
  opacity: 1;
}
body.cursor-on .cursor { display: block; }

/* ─── Cursor outer container — JS controls width/height continuously ───── */
.cursor-ring {
  /* Initial size; JS smoothly drives it from 12 (rest) up to ~64 (active). */
  width: 12px; height: 12px;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  /* No CSS transition — JS interpolates the size each frame for full control. */
}

/* Wavy SVG circle — gentle tremble only (no scale animation that fights JS sizing) */
.ring-svg {
  position: absolute; inset: -10%;
  width: 120%; height: 120%;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(228, 77, 46, 0.5));
  --circle-stroke: rgba(228, 77, 46, 0.95);   /* live-red */
  --circle-fill:   rgba(228, 77, 46, 0.08);
  /* Three layered animations:
     - tremble: tiny sub-pixel jitter (alive feel)
     - dance-rotate: slow back-and-forth wobble — gives "dancing" rhythm
     - dance-pulse: gentle breathing scale */
  animation:
    tremble       0.22s steps(2, end)        infinite,
    dance-rotate  6s    ease-in-out          infinite,
    dance-pulse   2.4s  ease-in-out          infinite;
  transform-origin: center;
}
@keyframes dance-rotate {
  0%, 100% { rotate: -7deg; }
  50%      { rotate: 7deg;  }
}
@keyframes dance-pulse {
  0%, 100% { scale: 1;     }
  50%      { scale: 1.04;  }
}
.ring-circle {
  fill:   var(--circle-fill);
  stroke: var(--circle-stroke);
  stroke-width: 2.4;
  filter: url(#wavyEdge);
  vector-effect: non-scaling-stroke;
}

/* Tremble — sub-pixel jitter, always running. Pure translate (no scale → no growth/shrink kicks). */
@keyframes tremble {
  0%   { translate: 0.3px -0.2px; }
  25%  { translate: -0.4px 0.3px; }
  50%  { translate: 0.2px 0.4px;  }
  75%  { translate: -0.3px -0.3px; }
  100% { translate: 0.3px -0.2px; }
}

/* Hover/card states — size is velocity-driven; here we only adjust color */
.cursor.hover .ring-svg { --circle-stroke: var(--text); --circle-fill: rgba(245, 241, 234, 0.10); }
.cursor.card  .ring-svg { --circle-stroke: var(--accent); --circle-fill: rgba(228, 77, 46, 0.18);
                          filter: drop-shadow(0 0 18px rgba(228, 77, 46, 0.6)); }

@media (hover: none) { .cursor { display: none !important; } body.cursor-on, body.cursor-on * { cursor: auto !important; } }

/* ─── Cursor trail — music notes & sparkles floating up ────────────────── */
.trail-host { position: fixed; inset: 0; pointer-events: none; z-index: 9998; }
.cursor-trail {
  position: fixed; pointer-events: none;
  font-size: 18px; font-weight: 700;
  text-shadow: 0 0 12px currentColor, 0 0 24px currentColor;
  animation: trail-rise 1.3s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
  will-change: transform, opacity;
}
@keyframes trail-rise {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(0deg) scale(0.6); }
  18%  { opacity: 1; transform: translate(-50%, -90%) rotate(8deg) scale(1.1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% - 140px)) rotate(var(--tr, 30deg)) scale(0.4); }
}

/* ─── Click burst sparkles ──────────────────────────────────────────────── */
.spark {
  position: fixed; pointer-events: none; z-index: 9997;
  width: 8px; height: 8px; border-radius: 50%;
  text-shadow: 0 0 12px currentColor;
  animation: spark-fly 0.7s ease-out forwards;
}
@keyframes spark-fly {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--bx, 0px)), calc(-50% + var(--by, 0px))) scale(0.2); }
}

/* ─── Stage — slow integrated atmospheric backdrop ───────────────────────
   5 huge drifting orbs + 3 morphing SVG blobs + 1 rotating conic halo.
   Everything moves on 50-100s cycles → meditative, alive, never repeating
   the same composition twice. */

.stage {
  /* Editorial redesign: stage decorations removed for a clean newsprint canvas. */
  display: none !important;
}

/* Slowly rotating multicolor conic halo — the "aurora" foundation */
.s-halo {
  position: absolute; inset: -50%;
  background: conic-gradient(from 0deg,
    rgba(168, 85, 247, 0.22),
    rgba(16, 185, 129, 0.18),
    rgba(236, 72, 153, 0.20),
    rgba(16, 185, 129, 0.14),
    rgba(245, 158, 11, 0.16),
    rgba(168, 85, 247, 0.22));
  filter: blur(70px);             /* was 110px — large blur was very GPU-heavy */
  opacity: 0.5;
  animation: halo-spin 110s linear infinite;
}
@keyframes halo-spin { to { transform: rotate(360deg); } }

/* Big blurred gradient orbs — lower blur radius for cheaper GPU paint */
.s-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.s-orb-5 { display: none; }   /* drop the 5th orb to lighten compositor work */
.s-orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, var(--accent)   0%, transparent 65%);
            top: -8%;  left: -10%; animation: orb-d1 65s ease-in-out infinite alternate; }
.s-orb-2 { width: 720px; height: 720px; background: radial-gradient(circle, var(--accent-2) 0%, transparent 65%);
            top: 30%;  right: -18%; animation: orb-d2 82s ease-in-out infinite alternate; animation-delay: -22s; }
.s-orb-3 { width: 540px; height: 540px; background: radial-gradient(circle, var(--accent-3) 0%, transparent 65%);
            top: 60%;  left: 15%;  animation: orb-d3 74s ease-in-out infinite alternate; animation-delay: -36s; }
.s-orb-4 { width: 480px; height: 480px; background: radial-gradient(circle, #86efac 0%, transparent 65%);
            top: 8%;   right: 18%; animation: orb-d4 90s ease-in-out infinite alternate; animation-delay: -14s; }
.s-orb-5 { width: 580px; height: 580px; background: radial-gradient(circle, #fcd34d 0%, transparent 65%);
            bottom: -12%; left: 35%; animation: orb-d5 104s ease-in-out infinite alternate; animation-delay: -48s; }

@keyframes orb-d1 { 0% { transform: translate(0,0) scale(1); }   100% { transform: translate(22vw, 24vh) scale(1.18); } }
@keyframes orb-d2 { 0% { transform: translate(0,0) scale(1); }   100% { transform: translate(-26vw, -18vh) scale(0.85); } }
@keyframes orb-d3 { 0% { transform: translate(0,0) scale(1); }   100% { transform: translate(18vw, -22vh) scale(1.15); } }
@keyframes orb-d4 { 0% { transform: translate(0,0) scale(1); }   100% { transform: translate(-22vw, 26vh) scale(1.10); } }
@keyframes orb-d5 { 0% { transform: translate(0,0) scale(1); }   100% { transform: translate(16vw, -28vh) scale(0.92); } }

/* Morphing SVG blobs — feTurbulence + feDisplacementMap creates real organic shapes
   that morph continuously. Each drifts slowly across the viewport too. */
.s-blob {
  position: absolute;
  width: 65vw; height: 65vw;
  max-width: 760px; max-height: 760px;
  mix-blend-mode: screen;
  opacity: 0.65;
  filter: blur(6px);
  will-change: transform;
}
.s-blob-1 { top: -15%; left: -10%; animation: blob-d1 78s ease-in-out infinite alternate; }
.s-blob-2 { bottom: -20%; right: -10%; animation: blob-d2 92s ease-in-out infinite alternate; animation-delay: -30s; }
.s-blob-3 { top: 30%; left: 30%; animation: blob-d3 110s ease-in-out infinite alternate; animation-delay: -55s; opacity: 0.55; }

@keyframes blob-d1 { 0% { transform: translate(0,0)         rotate(0deg); }
                     100% { transform: translate(20vw, 24vh) rotate(45deg); } }
@keyframes blob-d2 { 0% { transform: translate(0,0)          rotate(0deg); }
                     100% { transform: translate(-22vw, -16vh) rotate(-35deg); } }
@keyframes blob-d3 { 0% { transform: translate(0,0)          rotate(0deg) scale(1); }
                     100% { transform: translate(-18vw, 18vh) rotate(60deg) scale(1.2); } }

/* Concert spotlight beams — soft vertical light cones that sweep slowly */
.s-beam {
  position: absolute;
  width: 280px; height: 130vh;
  top: -15vh;
  filter: blur(40px);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform-origin: 50% 0%;
  pointer-events: none;
  will-change: transform;
}
.s-beam-1 {
  left: 18%;
  background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.30) 25%,
                              rgba(236, 72, 153, 0.18) 65%, transparent 100%);
  animation: beam-sweep-a 38s ease-in-out infinite alternate;
}
.s-beam-2 {
  right: 14%;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.28) 25%,
                              rgba(245, 158, 11, 0.14) 65%, transparent 100%);
  animation: beam-sweep-b 46s ease-in-out infinite alternate;
  animation-delay: -12s;
}
@keyframes beam-sweep-a {
  0%   { transform: rotate(-14deg) translateX(-3vw); }
  100% { transform: rotate(12deg)  translateX(4vw); }
}
@keyframes beam-sweep-b {
  0%   { transform: rotate(15deg)  translateX(2vw); }
  100% { transform: rotate(-13deg) translateX(-5vw); }
}

/* Spinning vinyl records — outer wrapper drifts, inner SVG <g> spins via SMIL */
.s-vinyl-wrap {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
  will-change: transform;
}
.s-vinyl-wrap svg { width: 100%; height: 100%; display: block; }
.s-vinyl-wrap-1 {
  width: 240px; height: 240px;
  top: 12%; left: 6%;
  animation: vinyl-drift-a 88s ease-in-out infinite alternate;
}
.s-vinyl-wrap-2 {
  width: 300px; height: 300px;
  bottom: 10%; right: 8%;
  animation: vinyl-drift-b 102s ease-in-out infinite alternate;
  animation-delay: -38s;
  filter: drop-shadow(0 0 22px rgba(236, 72, 153, 0.4));
}
@keyframes vinyl-drift-a {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(28vw, 35vh); }
}
@keyframes vinyl-drift-b {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-32vw, -28vh); }
}

/* Sideways drifters — small bright particles streaking horizontally */
.drifter {
  position: absolute;
  pointer-events: none;
  font-size: 14px;
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
  animation: drift-side linear infinite;
  will-change: transform;
}
@keyframes drift-side {
  0%   { transform: translateX(0)      translateY(0);    opacity: 0; }
  10%  { opacity: 0.5; }
  50%  { transform: translateX(50vw)   translateY(-10px); opacity: 0.45; }
  90%  { opacity: 0.3; }
  100% { transform: translateX(110vw)  translateY(20px); opacity: 0; }
}
.drifter.reverse { animation-direction: reverse; }

/* Ambient layer hidden — too playful for an editorial event platform */
.ambient {
  display: none !important;
}
/* The ambient layer is fixed-positioned, so page content MUST be explicitly
   raised above it via a stacking context. Otherwise the ambient (positioned)
   paints over normal-flow content (which is at z-index 0). */
.page, .footer { position: relative; z-index: 1; }
.ambient-note {
  position: absolute; bottom: -40px;
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  text-shadow: 0 0 12px currentColor, 0 0 30px currentColor;
  animation: note-rise linear infinite;
  will-change: transform, opacity;
}
@keyframes note-rise {
  0%   { opacity: 0; transform: translate(0, 0) rotate(-6deg); }
  10%  { opacity: 0.55; }
  35%  { transform: translate(30px, -30vh) rotate(8deg); }
  60%  { transform: translate(-20px, -55vh) rotate(-4deg); opacity: 0.5; }
  85%  { transform: translate(20px, -85vh) rotate(10deg); opacity: 0.25; }
  100% { opacity: 0; transform: translate(0, -110vh) rotate(0); }
}

/* ─── Twinkle stars (random sparkles pulsing in place) ─────────────────── */
.twinkle {
  position: absolute; pointer-events: none;
  width: 4px; height: 4px; border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px white, 0 0 12px var(--accent-2);
  animation: twinkle 3s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50%      { opacity: 0.85; transform: scale(1); }
}

/* ─── Hero h1 breathing glow (subtle living pulse) ─────────────────────── */
.hero h1 em {
  /* the existing gradient-shift handles color motion */
}
.hero h1::after {
  /* hidden — keep h1 clean; breathing handled by em filter */
}

/* z-index ordering reminder:
   ambient: 0  ·  page+footer: 1  ·  topbar: 30 (sticky)
   modal: 50 (fixed)  ·  confetti: 200 (fixed)
   trail/spark: 9998  ·  cursor: 10000 */

/* ─── Card 3D tilt ───────────────────────────────────────────────────────── */
.event-card {
  transform-style: preserve-3d;
  will-change: transform;
  --spot-x: 50%; --spot-y: 50%;
}
.event-card .event-cover, .event-card .event-body {
  transform: translateZ(0);
}

/* Card mouse-tracked spotlight (fades in on hover) */
/* Card spotlight + shine — disabled for editorial cleanliness */
.event-card::before { display: none; }
.card-shine { display: none; }

/* ─── Live indicator with multi-ring pulse ──────────────────────────────── */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #f87171; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  margin-inline-end: 6px;
  position: relative;
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7), 0 0 0 0 rgba(239, 68, 68, 0.5); }
  60%  { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0), 0 0 0 14px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Equalizer bars — minimal, no chrome, just bars on the cover */
.eq {
  position: absolute; bottom: 22px; right: 22px; left: auto; z-index: 3;
  display: inline-flex; gap: 3px; align-items: flex-end; height: 16px;
  padding: 0; border-radius: 0;
  background: transparent; backdrop-filter: none;
  border: 0;
}
[dir="rtl"] .eq { right: auto; left: 22px; }
.eq i {
  display: block; width: 2px; background: #fff; border-radius: 0;
  animation: eq-bounce 0.85s ease-in-out infinite;
}
.eq i:nth-child(1) { animation-delay: -0.4s; }
.eq i:nth-child(2) { animation-delay: -0.7s; }
.eq i:nth-child(3) { animation-delay: -0.2s; }
.eq i:nth-child(4) { animation-delay: -0.5s; }
@keyframes eq-bounce {
  0%, 100% { height: 4px; }
  50%      { height: 16px; }
}

/* ─── Marquee — editorial ticker, monochrome ─────────────────────────── */
.marquee {
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 -40px;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 24px;
  white-space: nowrap;
  animation: marquee-roll 60s linear infinite;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
[dir="rtl"] .marquee-track { animation-direction: reverse; }
.m-piece {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.95);
}
.m-piece.m-art   { color: var(--accent); }
.m-piece.m-venue { color: rgba(255, 255, 255, 0.55); }
.m-piece svg.icon { width: 12px; height: 12px; }
.m-sep {
  color: rgba(255, 255, 255, 0.25); font-size: 6px;
}
.m-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.m-dot.funding   { background: var(--accent); }
.m-dot.funded    { background: var(--good); }
.m-dot.cancelled { background: var(--bad); }
.m-dot.draft     { background: var(--warn); }
@keyframes marquee-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Magnetic-feeling buttons ──────────────────────────────────────────── */
.btn.primary {
  position: relative; overflow: hidden;
}
.btn.primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn.primary:hover::before { transform: translateX(110%); }
.btn.primary:hover { transform: translateY(-2px) scale(1.02); }

/* ─── Cover image overlay ────────────────────────────────────────────────── */
.event-cover img.cover-photo,
.modal-cover img.cover-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0; /* fades in on load */
  transition: opacity 0.6s ease, transform 8s linear;
  /* On light bg, leave the photo's true colors. */
}
.event-cover img.cover-photo.loaded,
.modal-cover img.cover-photo.loaded { opacity: 0.85; }
.event-card:hover .cover-photo.loaded { transform: scale(1.06); }

/* Gradient stays as base, image blends on top — works perfectly even if image fails */
.event-cover, .modal-cover { isolation: isolate; }
.event-cover-content, .modal-cover-content { z-index: 2; }

/* ─── Stat counter — subtle ticking effect ───────────────────────────────── */
.stat-num { font-variant-numeric: tabular-nums; }

/* ─── Confetti canvas ────────────────────────────────────────────────────── */
.confetti-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  width: 100%; height: 100%;
}

/* ─── Hero parallax helpers ──────────────────────────────────────────────── */
.hero-bg { will-change: transform; }
.hero-inner { position: relative; z-index: 1; }

/* ─── Magnetic / gentle button hover ─────────────────────────────────────── */
.btn.primary { transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s, background-position 0.4s; }

/* ─── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cursor { display: none; }
}

/* ─── Skeleton loader ────────────────────────────────────────────────────── */
.skeleton-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 18px; height: 320px;
  position: relative; overflow: hidden;
}
.skeleton-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 241, 234, 0.06), transparent);
  animation: skeleton-sweep 1.6s infinite;
}
@keyframes skeleton-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .topbar { grid-template-columns: 1fr auto; padding: 12px 16px; gap: 12px; }
  .topnav { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-inner { padding: 32px 24px; }
  .page { padding: 16px 16px 60px; }
  .row-item { grid-template-columns: 1fr 1fr; }
  .modal-content { padding: 16px; }
  .modal-cover-content { padding: 16px 20px; }
  .newsletter { padding: 28px 22px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .who { gap: 6px; }
  .who-pick { display: none; }
}
