:root {
  --bg: #F8FAFC;
  --ink: #0A0A0A;
  --muted: #3F3F46;
  --line: rgba(10, 10, 10, 0.1);
  --accent: #E11D48;
  --cyan: #22D3EE;
  --live: #047857;
  --card: #FFFFFF;
  --panel: #FFFFFF;
  --shadow: 0 0 0 1px rgba(10, 10, 10, 0.06), 0 16px 36px rgba(10, 10, 10, 0.06);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: Oxanium, Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(720px 320px at 100% 0%, rgba(225, 29, 72, 0.06), transparent 58%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  min-height: 100vh;
  letter-spacing: -0.011em;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 68%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.015) 0 1px,
    transparent 1px 6px
  );
  opacity: 0.4;
}
header, main, footer, .sticky-cta, .cookie-banner { position: relative; z-index: 2; }
.sticky-cta { z-index: 40; }
.cookie-banner { z-index: 50; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
code { font-size: 0.85em; background: rgba(225, 29, 72, 0.08); color: var(--accent); padding: 0.1em 0.35em; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 0.5rem; top: 0.5rem; background: #fff; padding: 0.4rem; z-index: 20; }

.wrap { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 1rem;
}
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--ink);
}
.nav { display: flex; gap: 1.1rem; align-items: center; }
.nav a { text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.nav a.is-on, .nav a:hover { color: var(--ink); }
.nav .btn { color: #fff; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem 0 2.5rem;
}
.profile-hero {
  padding-top: 1.25rem;
}
.profile-hero .podest {
  position: sticky;
  top: 4.6rem;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0.4rem 0 0.8rem;
}
.kicker {
  margin: 0;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.lede { color: var(--muted); max-width: 38rem; margin: 0 0 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.stats { color: var(--muted); font-size: 0.9rem; margin: 0.6rem 0 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 0;
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.35);
}
.btn:hover { filter: brightness(1.08); }
.btn-ghost {
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid rgba(10, 10, 10, 0.18);
  box-shadow: none;
}
.btn-live { background: var(--live); box-shadow: 0 0 18px rgba(74, 222, 128, 0.3); }

.spot-stage {
  position: relative;
  background: #F8FAFC;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
}
.spot-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spot-stage.is-dropzone {
  background: rgba(255, 255, 255, 0.9);
  border: 2px dashed rgba(34, 211, 238, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.spot-stage.is-dropzone.is-dragover {
  border-color: var(--accent);
  background: rgba(225, 29, 72, 0.08);
}
.spot-stage.is-dropzone img { display: none; }
.dropzone-hint {
  margin: 0;
  padding: 1.5rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.02em;
  pointer-events: none;
  max-width: 16rem;
}
.spot-stage.has-photo {
  background: #F8FAFC;
  border: 1px solid var(--line);
  cursor: default;
}
.spot-stage.has-photo .dropzone-hint { display: none; }
.spot-stage.has-photo img { display: block; }
.hero-stage { min-height: 520px; max-height: 78vh; aspect-ratio: 3 / 4; }
.spot-box {
  position: absolute;
  border: 2px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.2rem 0.35rem;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  z-index: 2;
}
.spot-box span { background: var(--accent); padding: 0.08rem 0.28rem; }
.spot-box.is-selected {
  border-width: 3px;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--accent);
  z-index: 3;
}
.spot-stage.is-edit .spot-box { cursor: grab; }
.spot-stage.is-edit .spot-box.is-dragging { cursor: grabbing; }
.spot-handle {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid var(--accent);
  cursor: nwse-resize;
}

.band { padding: 2.2rem 0 3rem; }
.band-alt { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.55); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-head h2, .aside-title, .page-hero h1 {
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
  font-family: var(--display);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.35rem 0 0.6rem; }
.inventory-card:hover { border-color: var(--accent); }
.stack-form input, .stack-form select, .stack-form textarea { color: var(--ink); }
.stack-form input:focus, .stack-form select:focus, .stack-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.bid-panel {
  border: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.16), var(--shadow);
}
.book-form {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.podest {
  --face-w: 380px;
  --face-h: 478px;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}
.podest.is-compact {
  --face-w: 340px;
  --face-h: 428px;
}
.podest-hint {
  margin: 0;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.podest-viewport {
  perspective: 1400px;
  perspective-origin: 50% 42%;
  width: 100%;
  min-height: calc(var(--face-h) + 120px);
  touch-action: none;
  cursor: grab;
  user-select: none;
}
.podest.is-dragging .podest-viewport { cursor: grabbing; }
.podest-world {
  position: relative;
  height: calc(var(--face-h) + 120px);
  transform-style: preserve-3d;
}
.podest-rig {
  position: absolute;
  left: 50%;
  top: 8px;
  width: var(--face-w);
  height: var(--face-h);
  margin-left: calc(var(--face-w) / -2);
  transform-style: preserve-3d;
  z-index: 2;
  transform: rotateX(-8deg) rotateY(0deg);
}
.podest-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}
.podest-front,
.podest-back,
.podest-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #FFFFFF;
}
.podest-front { transform: translateZ(1px); }
.podest-back { transform: rotateY(180deg); }
.podest-face {
  transform: translateZ(1px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s linear;
}
.podest[data-facing="front"] .podest-face[data-angle="front"],
.podest[data-facing="three_quarter"] .podest-face[data-angle="three_quarter"],
.podest[data-facing="side"] .podest-face[data-angle="side"],
.podest[data-facing="back"] .podest-face[data-angle="back"] {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.podest-front .spot-stage,
.podest-front .hero-stage,
.podest-face .spot-stage,
.podest-face .hero-stage,
.podest-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podest .hero-stage {
  min-height: 0;
  max-height: none;
  height: 100%;
  aspect-ratio: auto;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 16px 32px rgba(10, 10, 10, 0.08);
}
.podest-plinth {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: min(420px, 88%);
  height: 72px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}
.podest-disc {
  width: 100%;
  height: 28px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, #FFFFFF 0%, #F8FAFC 52%, #E4E4E7 78%);
  border: 1px solid rgba(10, 10, 10, 0.1);
  transform: rotateX(70deg);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.2), 0 12px 22px rgba(10, 10, 10, 0.08);
}
.podest-glow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(225, 29, 72, 0.22), transparent 70%);
  filter: blur(8px);
}
@media (max-width: 900px) {
  .podest, .podest.is-compact {
    --face-w: 320px;
    --face-h: 404px;
  }
  .profile-hero .podest { position: static; }
  .podest-viewport, .podest-world { min-height: calc(var(--face-h) + 108px); }
  .podest-world { height: calc(var(--face-h) + 108px); }
}
.section-head a, .text-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.page-hero { padding: 2rem 0 0.5rem; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.35rem 0 0.6rem; }

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.inventory-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.inventory-card .spot-stage { aspect-ratio: 3 / 4; border: 0; }
.inventory-card-body { padding: 0.85rem 0.9rem 1rem; }
.inventory-card h3 { margin: 0 0 0.25rem; letter-spacing: -0.04em; font-size: 1.05rem; }
.meta, .muted { color: var(--muted); }
.bid-row { display: flex; justify-content: space-between; gap: 0.5rem; margin-top: 0.45rem; font-weight: 650; }
.countdown { color: var(--accent); font-variant-numeric: tabular-nums; font-weight: 700; }
.countdown.is-ended { color: var(--muted); }
.countdown.is-urgent { color: var(--accent); }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--live);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.live-pill i {
  width: 7px;
  height: 7px;
  background: var(--live);
  border-radius: 50%;
  display: inline-block;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.event-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
}
.event-card-media { aspect-ratio: 16 / 10; background: #F8FAFC; overflow: hidden; }
.event-card-media img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 0.85rem; }
.event-card h3 { margin: 0.2rem 0 0.35rem; letter-spacing: -0.04em; }

.country-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.country-pill {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.country-pill:hover { border-color: var(--ink); }
.niche-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 0.2rem; }
.niche-chip {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  font-weight: 650;
  font-size: 0.82rem;
  background: var(--panel);
}
.niche-chip span { color: var(--muted); margin-left: 0.25rem; }
.niche-chip:hover { border-color: var(--ink); }
.niche-chip.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.niche-chip.is-on span { color: rgba(255,255,255,0.85); }

.book-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.book-steps li { display: grid; gap: 0.4rem; }
.step-n {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.book-receipt { border: 1px solid var(--line); padding: 0.9rem; display: grid; gap: 0.4rem; margin: 1rem 0; }
.book-receipt a { color: var(--accent); }

.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.6rem; }
.crumbs a { color: var(--ink); text-decoration: none; }
.crumbs span { margin: 0 0.35rem; color: var(--muted); }

.browse-layout { display: grid; grid-template-columns: 210px 1fr; gap: 1.5rem; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list a {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.filter-list a.is-on { font-weight: 700; }
.filter-list em { font-style: normal; color: var(--muted); font-size: 0.8rem; }

.event-hero { position: relative; min-height: 240px; background: #F8FAFC; color: var(--ink); }
.event-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.event-hero-copy { position: relative; padding: 3.2rem 0 2rem; }
.event-hero-copy .meta, .event-hero-copy .crumbs a, .event-hero-copy .kicker { color: var(--ink); }
.event-detail-body { padding: 1.5rem 0 3rem; }

.listing-stack { display: grid; gap: 1rem; }
.listing-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.listing-card .spot-stage { min-height: 280px; border: 0; }
.listing-body { padding: 1rem 1rem 1rem 0; }
.listing-top { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.listing-top h3 { margin: 0; letter-spacing: -0.04em; }
.chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.4rem 0; }
.chip {
  border: 1px solid var(--line);
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stack-form { display: grid; gap: 0.9rem; }
.stack-form label, .stack-form legend { display: grid; gap: 0.3rem; font-weight: 600; font-size: 0.9rem; }
.stack-form input, .stack-form select, .stack-form textarea {
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--panel);
  width: 100%;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.7rem; }
.check-row, .palette { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.check { display: flex; align-items: center; gap: 0.35rem; font-weight: 500; }
fieldset { border: 1px solid var(--line); padding: 0.75rem 0.9rem; }
.palette button {
  background: var(--panel);
  border: 1px dashed var(--accent);
  color: var(--accent);
  padding: 0.4rem 0.6rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.flash { background: rgba(5, 150, 105, 0.1); border: 1px solid rgba(5, 150, 105, 0.35); color: #065f46; padding: 0.7rem 0.9rem; }
.flash-error { background: rgba(225, 29, 72, 0.08); border-color: rgba(225, 29, 72, 0.4); color: #9f1239; }
.empty-block, .empty { border: 1px dashed var(--line); padding: 1.3rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-mark { color: var(--ink); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 0.4rem; font-family: var(--display); }

.bid-panel strong { font-size: 1.35rem; letter-spacing: -0.04em; }

.spot-picks {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 1rem;
}
.spot-pick {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.8rem;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  background: var(--panel);
}
.spot-pick strong { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.spot-pick.is-on { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.spot-pick .muted { font-size: 0.82rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--panel); }
.rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.rank-table th, .rank-table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.rank-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.rank-table tr:last-child td { border-bottom: 0; }
.rank-table a { font-weight: 650; text-decoration: none; }
.rank-table a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .hero, .inventory-grid, .event-grid, .browse-layout, .listing-card, .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stage { min-height: 360px; max-height: none; }
  .podest .hero-stage { min-height: 0; }
  .listing-body { padding: 0 1rem 1rem; }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .wrap { width: min(1180px, calc(100% - 1.25rem)); }
  .nav { gap: 0.7rem; }
  .nav a:not(.btn) { font-size: 0.82rem; }
  .hero-copy h1 { font-size: 2.05rem; }
  .page-hero { padding-top: 1.25rem; }
  .rank-table th, .rank-table td { padding: 0.55rem 0.6rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.7rem 1rem; }
.footer-nav a { color: var(--ink); font-weight: 600; text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { width: 100%; }

.cookie-banner {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 50;
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
html.has-consent .cookie-banner,
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.cookie-banner a { color: var(--accent); font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: flex-end; }

.field-error { color: #9f1239; font-size: 0.82rem; font-weight: 600; margin: 0; }
.stack-form input.is-invalid,
.stack-form select.is-invalid,
.stack-form textarea.is-invalid,
fieldset.is-invalid { border-color: #e11d48; }
.btn.is-busy { opacity: 0.72; pointer-events: none; }
.form-busy { color: var(--muted); font-weight: 600; margin: 0; }
form[aria-busy="true"] .form-busy { display: block; }

.legal h2 { letter-spacing: -0.04em; margin: 1.5rem 0 0.45rem; font-size: 1.15rem; }
.legal ul, .legal p { color: var(--muted); }
.legal li { margin: 0.3rem 0; }
.event-hero .btn-ghost { background: #FFFFFF; color: var(--ink); border-color: rgba(10, 10, 10, 0.18); }
.event-hero .hero-actions { margin-top: 1rem; }

.podest-compass {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}
.podest-compass-btn {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  cursor: pointer;
}
.podest-compass-btn.is-on,
.podest-compass-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.angle-pack {
  display: grid;
  gap: 0.7rem;
}
.angle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.angle-tab {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--display);
}
.angle-tab.is-on {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.angle-panel {
  display: none;
  gap: 0.45rem;
}
.angle-panel.is-on { display: grid; }
.angle-panel img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.event-feed {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.event-feed-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 0.75rem;
}
.event-feed-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.event-feed-item h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  font-family: var(--display);
}
.event-feed-item h2 a { text-decoration: none; }
.event-feed-item h2 a:hover { color: var(--accent); }
.rank-table .rank-n {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.rank-table tr.is-podium td:first-child { color: var(--accent); }

@media (max-width: 900px) {
  .event-feed-item { grid-template-columns: 1fr; }
  .nav a:not(.btn) { font-size: 0.78rem; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 5.25rem; }
  .cookie-banner { bottom: 4.6rem; }
}
