/* ===========================
   SANFRA CUP — Street / Sport
   =========================== */

@font-face {
  font-family: "Spacema";
  src: url("fonts/Spacema-Bold.woff2") format("woff2"),
       url("fonts/Spacema-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050506;
  --bg-2: #0d0d0e;
  --bg-3: #141416;
  --ink: #ffffff;
  --ink-dim: #a3a3a6;
  --ink-mute: #6b6b70;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --lime: #ffd21f;
  --lime-bright: #ffe14d;
  --lime-deep: #d9a800;
  --coral: #ffd21f;
  --black-deep: #000000;

  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
  --font-brand: "Spacema", "Space Mono", monospace;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 20px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,11,12,0.55);
}
.nav.is-scrolled {
  background: rgba(11,11,12,0.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
}
.nav__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,210,31,0.35));
}
.nav__wordmark {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 100px;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
}
.nav__links a.is-active {
  background: var(--lime);
  color: #000;
  font-weight: 700;
}

.nav__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__lang {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 8px 14px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 100px;
  transition: background .25s var(--ease);
}
.nav__lang:hover { background: rgba(255,255,255,0.06); }
.nav__admin {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav__admin:hover { transform: translateY(-1px); background: var(--lime); }

.nav__burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 16px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============ TICKER ============ */
.ticker {
  margin-top: 72px;
  background: var(--lime);
  color: #0b0b0c;
  padding: 10px 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.ticker__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker__track span { text-transform: uppercase; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: 2rem 0;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-logo {
  position: absolute;
  top: 50%; left: 50%;
  width: auto;
  height: 110%;
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  filter: drop-shadow(0 0 80px rgba(255,210,31,0.25));
  object-fit: contain;
}
.hero__blob,
.hero__grid { display: none; }

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.hero__title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(3.5rem, 13vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 60px rgba(0,0,0,0.9);
}
.hero__title-accent { color: var(--lime); }

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--ink);
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
  max-width: 40ch;
}

.hero__scroll {
  margin-top: 1.5rem;
  color: var(--ink-dim);
  display: inline-flex;
  animation: scrollBounce 2s var(--ease) infinite;
  transition: color .25s var(--ease);
}
.hero__scroll:hover { color: var(--lime); }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(6px); }
}

.hero-stats-wrap {
  background: var(--bg);
  padding: 3rem 0 0;
}
.hero__foot {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__blurb {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0;
}
.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Summer Cup hype badge */
.hero__summer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 20px;
  background: var(--lime);
  color: #000;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  box-shadow: 0 0 0 6px rgba(255,210,31,0.15), 0 12px 40px -10px rgba(255,210,31,0.55);
  animation: hypePulse 2.4s var(--ease) infinite;
}
.hero__summer-pulse {
  width: 10px; height: 10px;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.6);
  animation: dotPulse 1.6s var(--ease) infinite;
}
@keyframes hypePulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(255,210,31,0.15), 0 12px 40px -10px rgba(255,210,31,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(255,210,31,0.05), 0 12px 40px -10px rgba(255,210,31,0.75); }
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
}

/* Values rotator */
.values-rotator {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4em;
  margin: 3rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.values-rotator__pre {
  color: var(--ink-dim);
}
.values-rotator__words {
  position: relative;
  display: inline-block;
  height: 1.25em;
  min-width: 14ch;
  overflow: hidden;
  vertical-align: middle;
  padding-right: 0.15em;
}
.values-rotator__words span {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  color: var(--lime);
  opacity: 0;
  transform: translateY(100%);
  animation: rotateWord 9s var(--ease) infinite;
}
.values-rotator__words span:nth-child(1) { animation-delay: 0s; }
.values-rotator__words span:nth-child(2) { animation-delay: 3s; }
.values-rotator__words span:nth-child(3) { animation-delay: 6s; }
@keyframes rotateWord {
  0%   { opacity: 0; transform: translateY(100%); }
  6%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  34%  { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 0; transform: translateY(-100%); }
}

/* Organizers */
.organizers {
  padding: 6rem 0 8rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.organizers::before {
  content: "";
  position: absolute;
  top: -150px; left: -100px;
  width: 500px; height: 500px;
  background: var(--lime);
  opacity: 0.05;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.organizers__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.organizers__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
  aspect-ratio: 4 / 3;
}
.organizers__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.organizers__photo:hover img { transform: scale(1.04); }
.organizers__photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--lime);
  color: #000;
  border-radius: 100px;
}
.organizers__lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
}
.organizers__lede b { color: var(--lime); font-weight: 700; }
.organizers__cards {
  display: grid;
  gap: 1rem;
}
.organizer-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1.5rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.organizer-card::after {
  content: "→";
  position: absolute;
  top: 50%; right: 1.5rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lime);
  transition: transform .35s var(--ease);
}
.organizer-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  background: #0a0a0b;
}
.organizer-card:hover::after { transform: translate(6px, -50%); }
.organizer-card__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.organizer-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.organizer-card__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.organizer-card:hover .organizer-card__ig { color: var(--lime); }

@media (max-width: 900px) {
  .organizers__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__stats > div {
  background: var(--bg-2);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .3s var(--ease);
}
.hero__stats > div:hover { background: var(--bg-3); }
.hero__stats b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.hero__stats span {
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--lime {
  background: var(--lime);
  color: #0b0b0c;
}
.btn--lime:hover { background: var(--lime-bright); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover { background: rgba(255,255,255,0.06); border-color: var(--ink); }
.btn--big { padding: 20px 36px; font-size: 1.05rem; }

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.kicker__num {
  display: inline-block;
  padding: 3px 8px;
  background: var(--lime);
  color: #0b0b0c;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 800;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
}
.underline-lime {
  position: relative;
  display: inline-block;
  color: var(--bg);
  background: var(--lime);
  padding: 0 0.12em 0.02em;
  border-radius: 10px;
  transform: rotate(-1.5deg);
}
.lede {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 60ch;
  margin: 0 0 2rem;
}

/* ============ ABOUT ============ */
.about {
  padding: 8rem 0 6rem;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  margin: 2rem 0 4rem;
}
.about__lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.about__lede b { color: var(--lime); font-weight: 700; }
.about__text {
  color: var(--ink-dim);
  font-size: 1rem;
  margin: 0;
}

.values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.values__item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.values__item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.values__item--lime {
  background: var(--lime);
  color: #0b0b0c;
  border-color: var(--lime);
}
.values__item--lime .values__num { color: #0b0b0c; opacity: 0.6; }
.values__item--lime p { color: rgba(0,0,0,0.75); }
.values__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--lime);
  letter-spacing: 0.05em;
}
.values__item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
}
.values__item p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

/* ============ EVENTS ============ */
.events-section { padding: 6rem 0; }
.events__lede {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 60ch;
  margin: -1.5rem 0 3rem;
}
.events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.event-card__desc {
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin: 1rem 0 0;
  line-height: 1.5;
}
.event-card--lime .event-card__desc { color: rgba(0,0,0,0.72); }
.event-card--dark .event-card__desc { color: rgba(0,0,0,0.65); }
.event-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  cursor: pointer;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.event-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}
.event-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  color: var(--ink-dim);
}
.event-card__date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.event-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.event-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.event-card .arrow {
  font-family: var(--font-display);
  font-size: 1.25rem;
  transition: transform .3s var(--ease);
}
.event-card:hover .arrow { transform: translateX(4px); }

.event-card--lime {
  background: var(--lime);
  color: #0b0b0c;
  border-color: var(--lime);
}
.event-card--lime .event-card__tag {
  background: rgba(0,0,0,0.12);
  color: #0b0b0c;
}
.event-card--lime .event-card__meta {
  color: rgba(0,0,0,0.7);
  border-top-color: rgba(0,0,0,0.15);
}
.event-card--lime:hover { background: var(--lime-bright); }

.event-card--dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.event-card--dark .event-card__tag {
  background: rgba(0,0,0,0.08);
  color: var(--bg);
}
.event-card--dark .event-card__meta {
  color: rgba(0,0,0,0.55);
  border-top-color: rgba(0,0,0,0.12);
}

/* Event card with photo background */
.event-card--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 420px;
  border-color: transparent;
  overflow: hidden;
}
.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.88) 100%);
  z-index: 1;
  transition: background .4s var(--ease);
}
.event-card--photo:hover .event-card__overlay {
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0.82) 100%);
}
.event-card--photo > .event-card__top,
.event-card--photo > .event-card__body {
  position: relative;
  z-index: 2;
}
.event-card--photo .event-card__top { margin-bottom: auto; }
.event-card--photo .event-card__body {
  margin-top: auto;
}
.event-card--photo h3 {
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.event-card--photo .event-card__tag {
  background: var(--lime);
  color: #000;
}
.event-card--photo .event-card__date {
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.event-card--photo .event-card__desc {
  color: rgba(255,255,255,0.88);
}
.event-card--photo .event-card__meta {
  color: #fff;
  border-top-color: rgba(255,255,255,0.2);
}
.event-card--photo .arrow { color: var(--lime); }

.event-card--fsc {
  background-color: #000;
  background-size: 85% auto;
  background-position: center 40%;
}
.event-card--fsc .event-card__overlay {
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.88) 100%);
}

/* ============ EVENT DETAIL PAGE ============ */
.event-hero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10rem 0 5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.event-hero--fsc {
  background-color: #000;
  background-size: contain;
  background-position: center;
}
.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.75) 85%,
    rgba(0,0,0,0.95) 100%);
  z-index: 1;
}
.event-hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 820px;
}
.event-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.55rem 0.9rem;
  border-radius: 100px;
  transition: all .25s var(--ease);
  margin-bottom: 1.5rem;
}
.event-hero__back:hover {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}
.event-hero__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  background: var(--lime);
  color: #000;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.event-hero__title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.event-hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  line-height: 1.5;
  margin: 0;
}

.event-details {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.event-details__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.event-details__info h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--text);
}
.event-details__info > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 2.5rem;
  max-width: 620px;
}
.event-details__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.event-meta__item {
  padding: 1.1rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.event-meta__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.event-meta__value {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.event-details__side {
  position: sticky;
  top: 6rem;
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.event-details__side h3 {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.event-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--text);
  line-height: 1.4;
  font-size: 0.98rem;
}
.event-steps li span {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media (max-width: 900px) {
  .event-details__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .event-details__side { position: static; }
  .event-details__meta { grid-template-columns: 1fr; }
  .event-hero { min-height: 55vh; padding: 8rem 0 3rem; }
}

/* ============ EVENT INFO (like sanfracup.it) ============ */
.event-info {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.event-info__title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text);
  margin: 0 0 3.5rem;
  text-transform: uppercase;
}
.event-info__title-accent { color: var(--lime); }
.event-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.event-info__card {
  padding: 1.8rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.event-info__card:hover {
  border-color: rgba(255,210,31,0.35);
  transform: translateY(-2px);
}
.event-info__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.event-info__value {
  font-weight: 700;
  color: var(--text);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.event-info__venue {
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-info__address {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
.event-info__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 0.5rem;
}
.event-info__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
}
@media (max-width: 720px) {
  .event-info__grid { grid-template-columns: 1fr; }
  .event-info { padding: 4rem 0; }
}

/* ============ CARD SECTION ============ */
.card-section {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.card-section::before {
  content: "";
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: var(--lime);
  opacity: 0.06;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.card-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.card-section__body .kicker { margin-bottom: 1.5rem; }
.card-section__body .section-title { margin-bottom: 1.5rem; }
.card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.card-benefits li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
}
.card-benefits li:last-child { border-bottom: 1px solid var(--line); }
.card-benefits li::before {
  content: "✓";
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--lime);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Membership card */
.membership {
  position: relative;
  aspect-ratio: 1.586 / 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1510 0%, #0d0b08 50%, #1a1510 100%);
  border: 1px solid rgba(204,255,51,0.25);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.8),
    0 0 0 1px rgba(204,255,51,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .5s var(--ease);
}
.membership:hover { transform: rotate(0) scale(1.02); }
.membership::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(204,255,51,0.18), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(255,90,31,0.12), transparent 50%);
  pointer-events: none;
}
.membership__shine {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(204,255,51,0.1) 50%, transparent 60%);
  animation: shine 5s var(--ease) infinite;
  pointer-events: none;
}
@keyframes shine {
  0%,100% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
}
.membership__top, .membership__mid, .membership__bot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.membership__brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--lime);
  font-size: 0.95rem;
}
.membership__chip {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-deep));
  border-radius: 4px;
  position: relative;
}
.membership__chip::before,
.membership__chip::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px;
  height: 1px;
  background: rgba(0,0,0,0.35);
}
.membership__chip::before { top: 9px; }
.membership__chip::after { bottom: 9px; }
.membership__mid {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.membership__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.membership__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.membership__bot {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  font-weight: 500;
}
.membership__emblem {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--lime);
  letter-spacing: 0.05em;
}

/* ============ SPONSORS ============ */
.sponsors { padding: 6rem 0; }
.sponsors__marquee {
  margin-top: 3rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.sponsors__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.sponsors__track span { color: var(--ink-dim); transition: color .25s var(--ease); }
.sponsors__track span:hover { color: var(--lime); }

/* ============ CTA ============ */
.cta {
  padding: 6rem 0;
}
.cta__inner {
  background: var(--lime);
  color: #0b0b0c;
  border-radius: var(--radius);
  padding: clamp(3rem, 8vw, 6rem) 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.cta .btn--lime {
  background: #0b0b0c;
  color: var(--lime);
}
.cta .btn--lime:hover { background: #000; transform: translateY(-2px); }

/* ============ FOOTER ============ */
.footer {
  background: #050506;
  padding: 5rem 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.footer__brand p {
  color: var(--ink-mute);
  margin: 0;
  font-size: 0.92rem;
}
.footer__mark {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--lime);
  color: #0b0b0c;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
}
.footer__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(255,210,31,0.3));
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1.25rem;
  font-weight: 700;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.65rem;
}
.footer__col a, .footer__col li {
  color: var(--ink-dim);
  font-size: 0.95rem;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--ink); }

.footer__huge {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 18vw, 18rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  text-align: center;
  padding: 0 var(--pad);
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 2rem;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-mute);
}

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  padding: 8rem 0 4rem;
  background:
    radial-gradient(ellipse at top, rgba(255,210,31,0.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .kicker { margin-bottom: 1.5rem; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.page-hero__lede {
  font-size: 1.15rem;
  color: var(--ink-dim);
  max-width: 60ch;
  margin: 0;
}

/* ============ SPONSOR GRID (subpage) ============ */
.sponsors-grid-section { padding: 6rem 0; }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 5rem;
}
.sponsor-tile {
  background: var(--bg-2);
  padding: 3rem 1.5rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: background .3s var(--ease), color .3s var(--ease);
  min-height: 160px;
}
.sponsor-tile:hover {
  background: var(--bg-3);
  color: var(--lime);
}
.sponsor-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sponsor-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.sponsor-cta p {
  color: var(--ink-dim);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   SPONSOR PAGE — v3 (clean rebuild)
   ========================================================================== */

/* Hero */
.sp-hero {
  padding: 10rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,31,0.14), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.sp-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,210,31,0.55), transparent);
}
.sp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: rgba(255,210,31,0.08);
  border: 1px solid rgba(255,210,31,0.3);
  color: var(--lime);
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.sp-hero__pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: dotPulse 1.8s var(--ease) infinite;
}
.sp-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.sp-hero__title-accent { color: var(--lime); }
.sp-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--ink-dim);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}
.sp-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.sp-hero__brand img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,210,31,0.4));
}
.sp-hero__brand span {
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}

/* Stats strip */
.sp-stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sp-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sp-stats__cell {
  padding: 2rem var(--pad);
  text-align: center;
  border-right: 1px solid var(--line);
}
.sp-stats__cell:last-child { border-right: none; }
.sp-stats__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sp-stats__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Main list */
.sp-section { padding: 6rem 0; }
.sp-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.sp-section__lede {
  color: var(--ink-dim);
  font-size: 1rem;
  margin: 0 0 3rem;
}
.sp-list {
  display: grid;
  gap: 1.25rem;
}
.sp-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sp-item:hover {
  border-color: rgba(255,210,31,0.35);
  transform: translateY(-3px);
  box-shadow: 0 22px 60px -16px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,210,31,0.08);
}
.sp-item__num {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--ink-mute);
  background: var(--bg-3);
  border-right: 1px solid var(--line);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.sp-item:hover .sp-item__num {
  background: var(--lime);
  color: #0b0b0c;
}
.sp-item__logo-box {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.sp-item__logo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,210,31,0.18), transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.sp-item:hover .sp-item__logo-box::before { opacity: 1; }
.sp-item__logo {
  width: 160px;
  height: 130px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  animation: sp-float 3.8s ease-in-out infinite;
  will-change: transform;
}
.sp-item:hover .sp-item__logo { animation-play-state: paused; }

@keyframes sp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-7px) scale(1.04); }
}
.sp-list .sp-item:nth-child(2n) .sp-item__logo { animation-delay: -0.5s; }
.sp-list .sp-item:nth-child(3n) .sp-item__logo { animation-delay: -1s; }
.sp-list .sp-item:nth-child(4n) .sp-item__logo { animation-delay: -1.6s; }
.sp-list .sp-item:nth-child(5n) .sp-item__logo { animation-delay: -2.2s; }
.sp-list .sp-item:nth-child(7n) .sp-item__logo { animation-delay: -2.8s; }

.sp-item__body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.sp-item__cat {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 11px;
  background: rgba(255,210,31,0.08);
  color: var(--lime);
  border: 1px solid rgba(255,210,31,0.2);
  border-radius: 100px;
}
.sp-item__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.sp-item__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--lime);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.sp-item__desc {
  font-size: 0.94rem;
  color: var(--ink-dim);
  line-height: 1.65;
  margin: 0;
  max-width: 80ch;
}
.sp-item__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.sp-item__loc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.sp-item__loc:hover {
  color: var(--lime);
  border-color: rgba(255,210,31,0.4);
  background: rgba(255,210,31,0.05);
}
.sp-item__loc svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .sp-item { grid-template-columns: 200px 1fr; }
  .sp-item__logo-box { min-height: 180px; padding: 1.25rem; }
  .sp-item__logo { width: 130px; height: 100px; }
  .sp-item__body { padding: 1.5rem 1.75rem; }
}
@media (max-width: 720px) {
  .sp-item { grid-template-columns: 1fr; }
  .sp-item__logo-box {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    min-height: 160px;
  }
  .sp-item__body { padding: 1.5rem; }
}

/* Become sponsor CTA */
.sp-cta {
  padding: 5rem 0 6rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.sp-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.sp-cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
}
.sp-cta__sub {
  color: var(--ink-dim);
  margin: 0;
  font-size: 1.05rem;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__foot { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__actions { justify-content: flex-start; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values { grid-template-columns: 1fr; }
  .events { grid-template-columns: repeat(2, 1fr); }
  .card-section__grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__admin { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .events { grid-template-columns: 1fr; }
  .event-card { min-height: 280px; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .hero__actions .btn { flex: 1; min-width: 0; }
}
